Skip to content

Commit

Permalink
v4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Feb 23, 2020
1 parent 74aef73 commit 253dfe7
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions doc/source/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
Changelog
#########

*****
4.0.1
*****

* Switched back to the gitdb package name on PyPI and fixed the gitdb2 mirror package
(`#59 <https://github.com/gitpython-developers/gitdb/issues/59>`_)
* Switched back to require smmap package and fixed version requirement to >= 3.0.1, < 4
(`#59 <https://github.com/gitpython-developers/gitdb/issues/59>`_)
* Updated smmap submodule

***********
3.0.3.post1
***********
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__ = "[email protected]"
__homepage__ = "https://github.com/gitpython-developers/gitdb"
version_info = (3, 0, 3, "post1")
version_info = (4, 0, 1)
__version__ = '.'.join(str(i) for i in version_info)


Expand Down
2 changes: 1 addition & 1 deletion gitdb/ext/smmap
Submodule smmap updated from a0060c to d076f6
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
smmap2>=2,<3
smmap>=3.0.1,<4
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
__author__ = "Sebastian Thiel"
__contact__ = "[email protected]"
__homepage__ = "https://github.com/gitpython-developers/gitdb"
version_info = (3, 0, 3, "post1")
version_info = (4, 0, 1)
__version__ = '.'.join(str(i) for i in version_info)

setup(
name="gitdb2",
name="gitdb",
version=__version__,
description="Git Object Database",
author=__author__,
Expand All @@ -20,7 +20,7 @@
packages=('gitdb', 'gitdb.db', 'gitdb.utils', 'gitdb.test'),
license="BSD License",
zip_safe=False,
install_requires=['smmap2>=2,<3'],
install_requires=['smmap>=3.0.1,<4'],
long_description="""GitDB is a pure-Python git object database""",
python_requires='>=3.4',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down

0 comments on commit 253dfe7

Please sign in to comment.