Skip to content

Commit

Permalink
Prepare for 1.1.1rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
naufraghi committed Sep 13, 2024
1 parent 5f8f7e5 commit 0c9673c
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -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"
}
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
pytest
hypothesis
cython
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 0c9673c

Please sign in to comment.