summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarmon <Harmon758@gmail.com>2020-02-24 10:45:10 -0600
committerHarmon <Harmon758@gmail.com>2020-02-24 10:45:10 -0600
commit9b0309553be36cd188b3fd7d2ab95e7497a5e80d (patch)
tree4993ae2a98007c6336bae1a2b49b5b8657253669
parent0016daea8268bdcc8b956d1effd240ad06cd9423 (diff)
downloadgitdb-9b0309553be36cd188b3fd7d2ab95e7497a5e80d.tar.gz
v4.0.24.0.2
-rw-r--r--doc/source/changes.rst7
-rw-r--r--gitdb/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 9 insertions, 2 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index 236b954..1e91121 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -3,6 +3,13 @@ Changelog
#########
*****
+4.0.2
+*****
+
+* Updated to release as Pure Python Wheel rather than Universal Wheel
+ (`#62 <https://github.com/gitpython-developers/gitdb/pull/62>`_)
+
+*****
4.0.1
*****
diff --git a/gitdb/__init__.py b/gitdb/__init__.py
index 5d68ccb..df1f242 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 = (4, 0, 1)
+version_info = (4, 0, 2)
__version__ = '.'.join(str(i) for i in version_info)
diff --git a/setup.py b/setup.py
index 7617583..d110099 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, 1)
+version_info = (4, 0, 2)
__version__ = '.'.join(str(i) for i in version_info)
setup(