diff --git a/README.rst b/README.rst index ef5c076..7da3214 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ mt940-writer ============ -Python library to create bank statements in the MT940 format +Python library to create bank statements in the MT940 format. Only Python 3.7+ is supported. @@ -25,6 +25,20 @@ Use ``python setup.py test`` or ``tox`` to run all tests. Distribute a new version by updating the ``VERSION`` tuple in ``mt940_writer.py`` and publishing a release in GitHub (this triggers a GitHub Actions workflow to automatically upload it). Alternatively, run ``python setup.py sdist bdist_wheel upload`` locally. +Remember to update `History`_. + + +History +------- + +0.6 + Maintenance release, no library changes. + +0.2 - 0.5 + No significant library changes, other than support for newer versions of python. + +0.1 + Original release. Copyright --------- diff --git a/mt940_writer.py b/mt940_writer.py index fce471d..e8aa0e5 100644 --- a/mt940_writer.py +++ b/mt940_writer.py @@ -1,6 +1,6 @@ from enum import Enum -VERSION = (0, 5) +VERSION = (0, 6) __version__ = '.'.join(map(str, VERSION)) __author__ = 'Ministry of Justice Digital & Technology'