summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarmon <Harmon758@gmail.com>2020-02-23 08:32:24 -0600
committerHarmon <Harmon758@gmail.com>2020-02-23 08:37:14 -0600
commitd076f665dae16bd03eeb9df862860d54968eda84 (patch)
treecf36f8c5b7adce8e278b070eb5085a9ecf5ae003
parent72698cc333654430a2cc8bd103dc5994d95b3f1b (diff)
downloadsmmap-d076f665dae16bd03eeb9df862860d54968eda84.tar.gz
v3.0.1v3.0.1
-rw-r--r--doc/source/changes.rst8
-rw-r--r--smmap/__init__.py2
2 files changed, 9 insertions, 1 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index f99e85f..e9c2662 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -2,6 +2,14 @@
Changelog
#########
+******
+v3.0.1
+******
+- Switched back to the smmap package name on PyPI and fixed the smmap2 mirror package
+ (`#44 <https://github.com/gitpython-developers/smmap/issues/44>`_)
+- Fixed setup.py ``long_description`` rendering
+ (`#40 <https://github.com/gitpython-developers/smmap/pull/40>`_)
+
**********
v0.9.0
**********
diff --git a/smmap/__init__.py b/smmap/__init__.py
index 2bdf055..40861f5 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 = (3, 0, 0)
+version_info = (3, 0, 1)
__version__ = '.'.join(str(i) for i in version_info)
# make everything available in root package for convenience