summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarmon <Harmon758@gmail.com>2021-03-26 07:43:45 -0500
committerHarmon <Harmon758@gmail.com>2021-03-26 07:43:45 -0500
commit6b997cd5fd01dd91ecb08d39e5e9736bc1dc9ba5 (patch)
tree7ceeda2f7ccf84c3bd1e675c1c916f34d9926fd9
parentfc11a03b6d94cdf9d5841595caf104c2982934bb (diff)
downloadgitdb-6b997cd5fd01dd91ecb08d39e5e9736bc1dc9ba5.tar.gz
v4.0.74.0.7
-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 6217ffb..1a41d53 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -3,6 +3,13 @@ Changelog
#########
*****
+4.0.7
+*****
+
+* Updated upper bound for smmap requirement in setup.py
+ (`#69 <https://github.com/gitpython-developers/gitdb/issues/69>`_)
+
+*****
4.0.6
*****
diff --git a/gitdb/__init__.py b/gitdb/__init__.py
index ea7d1bc..bef9696 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, 6)
+version_info = (4, 0, 7)
__version__ = '.'.join(str(i) for i in version_info)
diff --git a/setup.py b/setup.py
index edbeeff..59817d8 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, 6)
+version_info = (4, 0, 7)
__version__ = '.'.join(str(i) for i in version_info)
setup(