summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2022-11-24 06:22:21 +0100
committerSebastian Thiel <sebastian.thiel@icloud.com>2022-11-24 06:22:21 +0100
commit38c68d95eaed9bf7415781ca0102441a349893ee (patch)
tree6c8ced76ce8246ce3865dcff824a760bc45c4f9a
parent43de98464486566bf1326cf791fd6192c0551c76 (diff)
downloadgitdb-38c68d95eaed9bf7415781ca0102441a349893ee.tar.gz
bump version to 4.0.104.0.10
-rw-r--r--doc/source/changes.rst6
-rw-r--r--gitdb/__init__.py2
m---------gitdb/ext/smmap0
-rwxr-xr-xsetup.py2
4 files changed, 8 insertions, 2 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index 5ef1326..7d85ea5 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -2,6 +2,12 @@
Changelog
#########
+******
+4.0.10
+******
+
+- improvements to the way external packages are imported.
+
*****
4.0.9
*****
diff --git a/gitdb/__init__.py b/gitdb/__init__.py
index 94b0831..b777632 100644
--- a/gitdb/__init__.py
+++ b/gitdb/__init__.py
@@ -28,7 +28,7 @@ _init_externals()
__author__ = "Sebastian Thiel"
__contact__ = "byronimo@gmail.com"
__homepage__ = "https://github.com/gitpython-developers/gitdb"
-version_info = (4, 0, 9)
+version_info = (4, 0, 10)
__version__ = '.'.join(str(i) for i in version_info)
diff --git a/gitdb/ext/smmap b/gitdb/ext/smmap
-Subproject db8810096503dd8a1f5a021ff39be907417f90a
+Subproject 334ef84a05c953ed5dbec7b9c6d4310879eeab5
diff --git a/setup.py b/setup.py
index d38b267..5214849 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, 9)
+version_info = (4, 0, 10)
__version__ = '.'.join(str(i) for i in version_info)
setup(