Skip to content

Commit 169dbcf

Browse files
committed
Bump version to v3.0.3; update changelog
#59
1 parent 139811a commit 169dbcf

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

doc/source/changes.rst

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

5+
*****
6+
3.0.3
7+
*****
8+
9+
* restrict smmap to versions < 3. See https://github.com/gitpython-developers/gitdb/issues/59 for details.
10+
511
*****
612
3.0.2
713
*****

gitdb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def _init_externals():
2929
__author__ = "Sebastian Thiel"
3030
__contact__ = "[email protected]"
3131
__homepage__ = "https://github.com/gitpython-developers/gitdb"
32-
version_info = (3, 0, 2)
32+
version_info = (3, 0, 3)
3333
__version__ = '.'.join(str(i) for i in version_info)
3434

3535

setup.py

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

1313
setup(

0 commit comments

Comments
 (0)