Skip to content

Commit

Permalink
Change package name to 'smmap'; bump version to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Feb 23, 2020
1 parent 8e69f21 commit 541472d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Issues can be filed on github:

A link to the pypi page related to this repository:

* https://pypi.org/project/smmap2/
* https://pypi.org/project/smmap/


## License Information
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
long_description = "See https://github.com/gitpython-developers/smmap"

setup(
name="smmap2",
name="smmap",
version=smmap.__version__,
description="A pure Python implementation of a sliding window memory map manager",
author=smmap.__author__,
Expand Down
2 changes: 1 addition & 1 deletion smmap/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__author__ = "Sebastian Thiel"
__contact__ = "byronimo@gmail.com"
__homepage__ = "https://github.com/gitpython-developers/smmap"
version_info = (2, 0, 5)
version_info = (3, 0, 0)
__version__ = '.'.join(str(i) for i in version_info)

# make everything available in root package for convenience
Expand Down

0 comments on commit 541472d

Please sign in to comment.