From 0c9673cf236ea185b6092e10809d6db8f1b035e8 Mon Sep 17 00:00:00 2001 From: Matteo Bertini Date: Fri, 13 Sep 2024 20:59:15 +0000 Subject: [PATCH] Prepare for 1.1.1rc1 --- .devcontainer/devcontainer.json | 22 ++++++++++++++++++++++ README.md | 8 ++++++++ requirements-dev.txt | 1 + setup.py | 2 +- 4 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..38f21b1 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,22 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/python +{ + "name": "Python 3", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye", + + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + + // Use 'postCreateCommand' to run commands after the container is created. + "postCreateCommand": "pip3 install --user -r requirements-dev.txt" + + // Configure tool-specific properties. + // "customizations": {}, + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +} diff --git a/README.md b/README.md index c4d864c..6208fec 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,14 @@ print(unpad(text)) # b'hello' decrypted, original text ## Release notes +- **1.1.1rc1** (Sept 13, 2024) (thanks to @adehad) + - Add Python 3.13 to the matrix + - Drop Python 2.7, 3.6 and 3.7 (keep Python 3.8+) + - Upgrade from windows-2019 to 2020 + - Upgrade from ubuntu-20.04 to 22.04 + - Upgrade from macos-11 to 13 and 14 + - Update actions to the latest version + - Remove x86_64 and arm64 and keep only universal2 for macos - **1.1.0** (Dec 5, 2023) - Final release with Python 3.12 - 1.1.0rc1 (Oct 2, 2023) diff --git a/requirements-dev.txt b/requirements-dev.txt index 9b9e5f9..a0d7ae7 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,2 +1,3 @@ pytest hypothesis +cython diff --git a/setup.py b/setup.py index 69657d6..82a0c1d 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ description="tiny-AES-c wrapper in Cython", long_description=long_description, long_description_content_type="text/markdown", - version="1.1.0", + version="1.1.1rc1", author="Matteo Bertini", author_email="naufraghi@develer.com", url="https://github.com/naufraghi/tinyaes-py",