diff --git a/estonian_e_invoice/__init__.py b/estonian_e_invoice/__init__.py index 6ea5375..f6ae7c2 100644 --- a/estonian_e_invoice/__init__.py +++ b/estonian_e_invoice/__init__.py @@ -2,7 +2,7 @@ __author__ = """Thorgate""" __email__ = "code@thorgate.eu" -__version__ = "1.0.0" +__version__ = '1.0.1' from estonian_e_invoice.estonian_e_invoice import XMLGenerator diff --git a/setup.cfg b/setup.cfg index cb41790..8bd0f7d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True tag = True @@ -18,9 +18,7 @@ universal = 1 exclude = docs [aliases] -# Define setup.py command aliases here test = pytest [tool:pytest] collect_ignore = ['setup.py'] - diff --git a/setup.py b/setup.py index 40c3cad..a14615d 100644 --- a/setup.py +++ b/setup.py @@ -54,6 +54,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/thorgate/estonian_e_invoice", - version="1.0.0", + version="1.0.1", zip_safe=False, )