summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-02-17 11:16:43 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-02-17 11:16:43 +0800
commitf356e12766480852d0e30ae7b786cdf5f24d8cea (patch)
treec2b3dbb9c5dc4b24b8a6f3b76321047c61a04a3d
parentb27e72f4873788dcc419a06da06465d4722780b7 (diff)
downloadgitdb-f356e12766480852d0e30ae7b786cdf5f24d8cea.tar.gz
Now with PR: 3.0.23.0.2
-rw-r--r--doc/source/changes.rst2
-rw-r--r--gitdb/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index 9d3b2dc..aa7a890 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -3,7 +3,7 @@ Changelog
#########
*****
-3.0.1
+3.0.2
*****
* removed all python2 compatibility shims, GitDB now is a Python 3 program.
diff --git a/gitdb/__init__.py b/gitdb/__init__.py
index 6fa31e4..5a52cf2 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, 1)
+version_info = (3, 0, 2)
__version__ = '.'.join(str(i) for i in version_info)
diff --git a/setup.py b/setup.py
index 12cebcd..a66b229 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, 1)
+version_info = (3, 0, 2)
__version__ = '.'.join(str(i) for i in version_info)
setup(