Skip to content

Commit

Permalink
chore(rename): gitdb2 v2.0
Browse files Browse the repository at this point in the history
v2 is chosen to better match the name.
  • Loading branch information
Byron committed Oct 16, 2016
1 parent d3f00ac commit 38866bc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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 = (0, 6, 4)
version_info = (2, 0, 0)
__version__ = '.'.join(str(i) for i in version_info)


Expand Down
2 changes: 1 addition & 1 deletion gitdb/ext/smmap
Submodule smmap updated from 18e4ae to ac5df7
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -7,11 +7,11 @@
__author__ = "Sebastian Thiel"
__contact__ = "byronimo@gmail.com"
__homepage__ = "https://github.com/gitpython-developers/gitdb"
version_info = (0, 6, 4)
version_info = (2, 0, 0)
__version__ = '.'.join(str(i) for i in version_info)

setup(
name="gitdb",
name="gitdb2",
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=['smmap >= 0.8.5'],
install_requires=['smmap2 >= 2.0.0'],
long_description="""GitDB is a pure-Python git object database""",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
Expand Down

0 comments on commit 38866bc

Please sign in to comment.