Skip to content

Commit aa7228e

Browse files
committed
v4.0.6
1 parent c5feb3d commit aa7228e

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

doc/source/changes.rst

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
Changelog
33
#########
44

5+
*****
6+
4.0.6
7+
*****
8+
9+
* Bumped upper bound for smmap requirement
10+
(`#67 <https://github.com/gitpython-developers/gitdb/issues/67>`_,
11+
`#68 <https://github.com/gitpython-developers/gitdb/pull/68>`_)
12+
513
*****
614
4.0.5
715
*****

gitdb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def _init_externals():
3030
__author__ = "Sebastian Thiel"
3131
__contact__ = "byronimo@gmail.com"
3232
__homepage__ = "https://github.com/gitpython-developers/gitdb"
33-
version_info = (4, 0, 5)
33+
version_info = (4, 0, 6)
3434
__version__ = '.'.join(str(i) for i in version_info)
3535

3636

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
__author__ = "Sebastian Thiel"
88
__contact__ = "byronimo@gmail.com"
99
__homepage__ = "https://github.com/gitpython-developers/gitdb"
10-
version_info = (4, 0, 5)
10+
version_info = (4, 0, 6)
1111
__version__ = '.'.join(str(i) for i in version_info)
1212

1313
setup(

0 commit comments

Comments
 (0)