Skip to content

Commit 541472d

Browse files
committed
Change package name to 'smmap'; bump version to 3.0.0
#44
1 parent 8e69f21 commit 541472d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Issues can be filed on github:
8080

8181
A link to the pypi page related to this repository:
8282

83-
* https://pypi.org/project/smmap2/
83+
* https://pypi.org/project/smmap/
8484

8585

8686
## License Information

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
long_description = "See https://github.com/gitpython-developers/smmap"
1717

1818
setup(
19-
name="smmap2",
19+
name="smmap",
2020
version=smmap.__version__,
2121
description="A pure Python implementation of a sliding window memory map manager",
2222
author=smmap.__author__,

Diff for: smmap/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
__author__ = "Sebastian Thiel"
44
__contact__ = "[email protected]"
55
__homepage__ = "https://github.com/gitpython-developers/smmap"
6-
version_info = (2, 0, 5)
6+
version_info = (3, 0, 0)
77
__version__ = '.'.join(str(i) for i in version_info)
88

99
# make everything available in root package for convenience

0 commit comments

Comments
 (0)