summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-02-23 09:31:01 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-02-23 09:31:01 +0800
commit541472db1dcae538875f95216f1655652aa30181 (patch)
treeef869b0d032d25604f9a42fb5bebdbfaac75684a
parent8e69f21e2c6529d8a28662a94e16071454c410f3 (diff)
downloadsmmap-3.0.0.tar.gz
Change package name to 'smmap'; bump version to 3.0.0v3.0.0
https://github.com/gitpython-developers/smmap/issues/44
-rw-r--r--README.md2
-rwxr-xr-xsetup.py2
-rw-r--r--smmap/__init__.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index c7a3817..175bc34 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/setup.py b/setup.py
index 9136339..ea02f45 100755
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@ else:
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__,
diff --git a/smmap/__init__.py b/smmap/__init__.py
index 1728b83..2bdf055 100644
--- a/smmap/__init__.py
+++ b/smmap/__init__.py
@@ -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