Skip to content

Commit

Permalink
v4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Feb 24, 2020
1 parent 0016dae commit 9b03095
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions doc/source/changes.rst
Expand Up @@ -2,6 +2,13 @@
Changelog
#########

*****
4.0.2
*****

* Updated to release as Pure Python Wheel rather than Universal Wheel
(`#62 <https://github.com/gitpython-developers/gitdb/pull/62>`_)

*****
4.0.1
*****
Expand Down
2 changes: 1 addition & 1 deletion gitdb/__init__.py
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 = (4, 0, 1)
version_info = (4, 0, 2)
__version__ = '.'.join(str(i) for i in version_info)


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

setup(
Expand Down

0 comments on commit 9b03095

Please sign in to comment.