summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2021-10-24 21:38:51 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2022-02-21 10:44:59 +0800
commit7c67010acf541b4269825cb2c13e226fe2d65ea9 (patch)
tree38fa9610da30cc26605bc0edaaa1ffd39b7cf18b
parente3a4cfe0ef2bc7b9c785c4fec650f5045cdd1e50 (diff)
downloadgitdb-7c67010acf541b4269825cb2c13e226fe2d65ea9.tar.gz
bump patch level in the hopes for a valid sig on release4.0.9
https://github.com/gitpython-developers/gitdb/issues/77
-rw-r--r--doc/source/changes.rst6
-rw-r--r--gitdb/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 8 insertions, 2 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index de448dd..5ef1326 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -3,6 +3,12 @@ Changelog
#########
*****
+4.0.9
+*****
+
+- re-release of 4.0.8 to get a valid signature.
+
+*****
4.0.8
*****
diff --git a/gitdb/__init__.py b/gitdb/__init__.py
index b5d1939..2460145 100644
--- a/gitdb/__init__.py
+++ b/gitdb/__init__.py
@@ -30,7 +30,7 @@ _init_externals()
__author__ = "Sebastian Thiel"
__contact__ = "byronimo@gmail.com"
__homepage__ = "https://github.com/gitpython-developers/gitdb"
-version_info = (4, 0, 8)
+version_info = (4, 0, 9)
__version__ = '.'.join(str(i) for i in version_info)
diff --git a/setup.py b/setup.py
index 251ea93..31dc62f 100755
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ from setuptools import setup
__author__ = "Sebastian Thiel"
__contact__ = "byronimo@gmail.com"
__homepage__ = "https://github.com/gitpython-developers/gitdb"
-version_info = (4, 0, 8)
+version_info = (4, 0, 9)
__version__ = '.'.join(str(i) for i in version_info)
setup(