diff --git a/README.rst b/README.rst index 79b90e2..a5ec57e 100644 --- a/README.rst +++ b/README.rst @@ -270,6 +270,19 @@ put it directly into ``pip``. Version History =============== +1.0.3 + * Drop support for Pythom 3.8. + See https://github.com/peterbe/hashin/pull/192 — thanks @hartwork + + * Add support for Python 3.13. + See https://github.com/peterbe/hashin/pull/195 + and https://github.com/peterbe/hashin/pull/204 + — thanks @pib and @hartwork + + * Be robust towards invalid versions like ``0.3.2d`` when finding + the latest release. + See https://github.com/peterbe/hashin/pull/196 — thanks @hartwork + 1.0.2 * Fix command line argument ``-p PYTHON_VERSION`` (and API function ``expand_python_version``) for "3.10" and upwards diff --git a/setup.py b/setup.py index 5505029..df306fc 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name="hashin", - version="1.0.2", + version="1.0.3", description="Edits your requirements.txt by hashing them in", long_description=open(path.join(_here, "README.rst")).read(), author="Peter Bengtsson",