Skip to content

Commit 253dfe7

Browse files
committed
v4.0.1
1 parent 74aef73 commit 253dfe7

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

Diff for: doc/source/changes.rst

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

5+
*****
6+
4.0.1
7+
*****
8+
9+
* Switched back to the gitdb package name on PyPI and fixed the gitdb2 mirror package
10+
(`#59 <https://github.com/gitpython-developers/gitdb/issues/59>`_)
11+
* Switched back to require smmap package and fixed version requirement to >= 3.0.1, < 4
12+
(`#59 <https://github.com/gitpython-developers/gitdb/issues/59>`_)
13+
* Updated smmap submodule
14+
515
***********
616
3.0.3.post1
717
***********

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

3535

Diff for: gitdb/ext/smmap

Submodule smmap updated from a0060cf to d076f66

Diff for: requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
smmap2>=2,<3
1+
smmap>=3.0.1,<4

Diff for: setup.py

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

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

0 commit comments

Comments
 (0)