Skip to content

Commit

Permalink
v3.0.3.post1
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Feb 23, 2020
1 parent 09aa35b commit 74aef73
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions doc/source/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
Changelog
#########

***********
3.0.3.post1
***********

* Fixed changelogs for v3.0.2 and v3.0.3

*****
3.0.3
*****

* Changed ``force_bytes`` to use UTF-8 encoding by default
(`#49 <https://github.com/gitpython-developers/gitdb/pull/49>`_)
* Restricted smmap2 version requirement to < 3
* Updated requirements.txt

*****
3.0.2
*****
Expand Down
2 changes: 1 addition & 1 deletion gitdb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def _init_externals():
__author__ = "Sebastian Thiel"
__contact__ = "byronimo@gmail.com"
__homepage__ = "https://github.com/gitpython-developers/gitdb"
version_info = (3, 0, 2)
version_info = (3, 0, 3, "post1")
__version__ = '.'.join(str(i) for i in version_info)


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
__author__ = "Sebastian Thiel"
__contact__ = "byronimo@gmail.com"
__homepage__ = "https://github.com/gitpython-developers/gitdb"
version_info = (3, 0, 2)
version_info = (3, 0, 3, "post1")
__version__ = '.'.join(str(i) for i in version_info)

setup(
Expand Down

0 comments on commit 74aef73

Please sign in to comment.