summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarmon <Harmon758@gmail.com>2021-03-25 06:29:35 -0500
committerHarmon <Harmon758@gmail.com>2021-03-25 06:29:35 -0500
commitaa7228e8dbdc2ee6b6bc385e8bee21245a10e98d (patch)
tree29c78769761c0994f50f68562f380bb25baf6078
parentc5feb3dc503dbaeb765101b09352124edf73068f (diff)
downloadgitdb-aa7228e8dbdc2ee6b6bc385e8bee21245a10e98d.tar.gz
v4.0.64.0.6
-rw-r--r--doc/source/changes.rst8
-rw-r--r--gitdb/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 10 insertions, 2 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index 05748a0..6217ffb 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -3,6 +3,14 @@ Changelog
#########
*****
+4.0.6
+*****
+
+* Bumped upper bound for smmap requirement
+ (`#67 <https://github.com/gitpython-developers/gitdb/issues/67>`_,
+ `#68 <https://github.com/gitpython-developers/gitdb/pull/68>`_)
+
+*****
4.0.5
*****
diff --git a/gitdb/__init__.py b/gitdb/__init__.py
index 2e127ca..ea7d1bc 100644
--- a/gitdb/__init__.py
+++ b/gitdb/__init__.py
@@ -30,7 +30,7 @@ _init_externals()
__author__ = "Sebastian Thiel"
__contact__ = "byronimo@gmail.com"
__homepage__ = "https://github.com/gitpython-developers/gitdb"
-version_info = (4, 0, 5)
+version_info = (4, 0, 6)
__version__ = '.'.join(str(i) for i in version_info)
diff --git a/setup.py b/setup.py
index facdf3d..071b8c6 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, 5)
+version_info = (4, 0, 6)
__version__ = '.'.join(str(i) for i in version_info)
setup(