diff options
| -rw-r--r-- | doc/source/changes.rst | 6 | ||||
| -rw-r--r-- | gitdb/__init__.py | 2 | ||||
| -rwxr-xr-x | setup.py | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst index 22deb6d..9d3b2dc 100644 --- a/doc/source/changes.rst +++ b/doc/source/changes.rst @@ -3,6 +3,12 @@ Changelog ######### ***** +3.0.1 +***** + +* removed all python2 compatibility shims, GitDB now is a Python 3 program. + +***** 0.6.1 ***** diff --git a/gitdb/__init__.py b/gitdb/__init__.py index c9c8279..6fa31e4 100644 --- a/gitdb/__init__.py +++ b/gitdb/__init__.py @@ -29,7 +29,7 @@ _init_externals() __author__ = "Sebastian Thiel" __contact__ = "byronimo@gmail.com" __homepage__ = "https://github.com/gitpython-developers/gitdb" -version_info = (3, 0, 0) +version_info = (3, 0, 1) __version__ = '.'.join(str(i) for i in version_info) @@ -7,7 +7,7 @@ from setuptools import setup __author__ = "Sebastian Thiel" __contact__ = "byronimo@gmail.com" __homepage__ = "https://github.com/gitpython-developers/gitdb" -version_info = (3, 0, 0) +version_info = (3, 0, 1) __version__ = '.'.join(str(i) for i in version_info) setup( |
