diff --git a/doc/source/changes.rst b/doc/source/changes.rst index b77de79..947c71a 100644 --- a/doc/source/changes.rst +++ b/doc/source/changes.rst @@ -2,10 +2,18 @@ Changelog ######### +****** +v5.0.1 +****** + +- Added support for Python 3.12 + ****** v6.0.0 ****** +YANKED + - Dropped support 3.6 and 3.7 - Declared support for Python 3.11 and 3.12 diff --git a/smmap/__init__.py b/smmap/__init__.py index 5f37eda..429f47a 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 = (6, 0, 0) +version_info = (5, 0, 1) __version__ = '.'.join(str(i) for i in version_info) # make everything available in root package for convenience