summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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(