From 9a454bac98d65c305497001548b8db6ade80c54f Mon Sep 17 00:00:00 2001 From: Enric Tomas Grau Luque Date: Wed, 5 Jul 2023 23:25:26 +0200 Subject: [PATCH] version 0.2.0 tags --- pudu/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pudu/__init__.py b/pudu/__init__.py index 94a1ade..7f60ae5 100644 --- a/pudu/__init__.py +++ b/pudu/__init__.py @@ -2,4 +2,4 @@ __author__ = """Enric Tomas Grau-Luque""" __email__ = 'patenric@gmail.com' -__version__ = '0.1.0' +__version__ = '0.2.0' diff --git a/setup.cfg b/setup.cfg index a956f65..d0b5ad9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 commit = True tag = True diff --git a/setup.py b/setup.py index c14946a..3c09cd1 100644 --- a/setup.py +++ b/setup.py @@ -53,6 +53,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/pudu-py/pudu', - version='0.1.0', + version='0.2.0', zip_safe=False, )