From d5b6f2cc2d0ca53afe53bace714b11a3211958d9 Mon Sep 17 00:00:00 2001 From: Ted Timmons Date: Thu, 26 Jan 2023 11:46:45 -0800 Subject: [PATCH] actually release 1.2.1 --- HISTORY.md | 8 ++++++++ README.md | 2 +- requests_aws4auth/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index ae16b36..d7b40b8 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,11 @@ +1.2.1 (2023-01-25) +========= + +**Bugfixes** + +- Actually fix #34. Build 1.2.0 was not fully released. + + 1.2.0 (2023-01-20) ========= diff --git a/README.md b/README.md index 8a6a9e9..6f0c31f 100644 --- a/README.md +++ b/README.md @@ -259,7 +259,7 @@ build and release, creds in `~/.pypirc`: ``` rm -f dist/*; \ python3 setup.py sdist bdist_wheel && \ -python3 -m twine upload --repository testpypi dist/* && \ +python3 -m twine upload --repository testpypi_requests_aws4auth dist/* && \ python3 -m twine upload --repository pypi dist/* ``` diff --git a/requests_aws4auth/__init__.py b/requests_aws4auth/__init__.py index cfbe937..b39e336 100644 --- a/requests_aws4auth/__init__.py +++ b/requests_aws4auth/__init__.py @@ -199,4 +199,4 @@ del aws4signingkey del exceptions -__version__ = '1.2.0' +__version__ = '1.2.1'