Skip to content

Commit 74aef73

Browse files
committed
v3.0.3.post1
1 parent 09aa35b commit 74aef73

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

Diff for: doc/source/changes.rst

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

5+
***********
6+
3.0.3.post1
7+
***********
8+
9+
* Fixed changelogs for v3.0.2 and v3.0.3
10+
11+
*****
12+
3.0.3
13+
*****
14+
15+
* Changed ``force_bytes`` to use UTF-8 encoding by default
16+
(`#49 <https://github.com/gitpython-developers/gitdb/pull/49>`_)
17+
* Restricted smmap2 version requirement to < 3
18+
* Updated requirements.txt
19+
520
*****
621
3.0.2
722
*****

Diff for: 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__ = "byronimo@gmail.com"
3131
__homepage__ = "https://github.com/gitpython-developers/gitdb"
32-
version_info = (3, 0, 2)
32+
version_info = (3, 0, 3, "post1")
3333
__version__ = '.'.join(str(i) for i in version_info)
3434

3535

Diff for: 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 = (3, 0, 2)
10+
version_info = (3, 0, 3, "post1")
1111
__version__ = '.'.join(str(i) for i in version_info)
1212

1313
setup(

0 commit comments

Comments
 (0)