From aa3a2e59aeba4950a8e13f5997cb90bb0e4a3a32 Mon Sep 17 00:00:00 2001 From: Igor Kozyrenko Date: Thu, 23 Jun 2022 03:45:02 +0300 Subject: [PATCH] Version 0.5.220401 --- iso_4217/__init__.py | 2 +- tests/test_iso_4217.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/iso_4217/__init__.py b/iso_4217/__init__.py index 834e8a6..d692986 100644 --- a/iso_4217/__init__.py +++ b/iso_4217/__init__.py @@ -1,6 +1,6 @@ from .currency import Currency, __published_date__ from .pint import define_currency_units -__version_prefix__ = "0.4" +__version_prefix__ = "0.5" __version__ = "{}.{:%y%m%d}".format(__version_prefix__, __published_date__) __all__ = ("Currency", "define_currency_units") diff --git a/tests/test_iso_4217.py b/tests/test_iso_4217.py index 62cf49b..a21fb69 100644 --- a/tests/test_iso_4217.py +++ b/tests/test_iso_4217.py @@ -3,7 +3,7 @@ def test_version(): - assert __version__ == "0.4.220401" + assert __version__ == "0.5.220401" def test_currency_count():