Skip to content

Commit

Permalink
Bump to 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ushkarev committed Jan 13, 2023
1 parent 3451e8b commit d9eb911
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion 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.

Expand All @@ -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
---------
Expand Down
2 changes: 1 addition & 1 deletion 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'

Expand Down

0 comments on commit d9eb911

Please sign in to comment.