From 119cc417541f400b3533c02d53d3d5f236e87023 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sat, 23 Jan 2021 09:59:05 +0800 Subject: [PATCH] bump patch level --- Makefile | 2 +- doc/source/changes.rst | 2 ++ smmap/__init__.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b867ad7..593a758 100644 --- a/Makefile +++ b/Makefile @@ -46,4 +46,4 @@ release: clean force_release:: clean git push --tags python3 setup.py sdist bdist_wheel - twine upload -s -i 2CF6E0B51AAF73F09B1C21174D1DA68C88710E60 dist/* + twine upload -s -i 27C50E7F590947D7273A741E85194C08421980C9 dist/* diff --git a/doc/source/changes.rst b/doc/source/changes.rst index c9665b6..041711b 100644 --- a/doc/source/changes.rst +++ b/doc/source/changes.rst @@ -7,6 +7,8 @@ v3.0.5 ****** - Restored Python 2 support removed in v3.0.2 +- changed release signature key to 27C50E7F590947D7273A741E85194C08421980C9. See + https://keybase.io/byronbates for proof of ownership. ****** v3.0.4 diff --git a/smmap/__init__.py b/smmap/__init__.py index a6671e1..abc09d9 100644 --- a/smmap/__init__.py +++ b/smmap/__init__.py @@ -3,7 +3,7 @@ __author__ = "Sebastian Thiel" __contact__ = "byronimo@gmail.com" __homepage__ = "https://github.com/gitpython-developers/smmap" -version_info = (3, 0, 4) +version_info = (3, 0, 5) __version__ = '.'.join(str(i) for i in version_info) # make everything available in root package for convenience