summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-02-17 09:15:48 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-02-17 09:15:48 +0800
commit5dd0f302f101e66d9d70a3b17ce0f379b4db214b (patch)
tree3d3a156b98f7ee797d2fb75f36c1826ed51e498c
parente6ee8bf864c726a5461600de28d64c1f06f4e163 (diff)
downloadgitdb-5dd0f302f101e66d9d70a3b17ce0f379b4db214b.tar.gz
bump version to 3.0.13.0.1
-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 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)
diff --git a/setup.py b/setup.py
index a66267e..12cebcd 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 = (3, 0, 0)
+version_info = (3, 0, 1)
__version__ = '.'.join(str(i) for i in version_info)
setup(