diff --git a/setup.cfg b/setup.cfg index 65a5f17..d5703fc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.2.2 commit = True tag = True diff --git a/setup.py b/setup.py index d37e402..f84f15a 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/hXtreme/tasks3", - version="0.2.1", + version="0.2.2", zip_safe=False, ) diff --git a/tasks3/__init__.py b/tasks3/__init__.py index 437736a..d4fd97f 100644 --- a/tasks3/__init__.py +++ b/tasks3/__init__.py @@ -2,6 +2,6 @@ __author__ = """Harsh Parekh""" __email__ = "harsh_parekh@outlook.com" -__version__ = "0.2.1" +__version__ = "0.2.2" from tasks3.tasks3 import add, edit, remove # noqa: F401