From bcd1cfd127a7d5f5a6f060957ec87032c76956cc Mon Sep 17 00:00:00 2001 From: Matteo Bertini Date: Fri, 13 Sep 2024 21:27:29 +0000 Subject: [PATCH] Release 1.1.1 --- .github/workflows/build_and_upload.yml | 2 +- README.md | 4 +++- setup.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_and_upload.yml b/.github/workflows/build_and_upload.yml index 28a8e4b..ea778b5 100644 --- a/.github/workflows/build_and_upload.yml +++ b/.github/workflows/build_and_upload.yml @@ -62,7 +62,7 @@ jobs: - uses: pypa/gh-action-pypi-publish@v1.10.1 with: - skip_existing: true + skip-existing: true user: ${{ secrets.PYPI_USERNAME }} password: ${{ secrets.PYPI_PASSWORD }} # To test: repository_url: https://test.pypi.org/legacy/ diff --git a/README.md b/README.md index 6208fec..02acbef 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,9 @@ print(unpad(text)) # b'hello' decrypted, original text ## Release notes -- **1.1.1rc1** (Sept 13, 2024) (thanks to @adehad) +- **1.1.1** (Sept 13, 2024) + - Final release with Python 3.13 +- **1.1.1rc1** (Sept 13, 2024) - 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 diff --git a/setup.py b/setup.py index 82a0c1d..7a6c96c 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.1rc1", + version="1.1.1", author="Matteo Bertini", author_email="naufraghi@develer.com", url="https://github.com/naufraghi/tinyaes-py",