diff --git a/pyproject.toml b/pyproject.toml index 44d7040..d9bc5ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "remagic" -version = "0.1.0" +version = "0.1.1" description = "Work with RegEx with relative ease" authors = ["ificiana "] license = "MIT License" diff --git a/remagic/__init__.py b/remagic/__init__.py index 6e25c15..6c74397 100644 --- a/remagic/__init__.py +++ b/remagic/__init__.py @@ -2,7 +2,7 @@ Implements RegEx abstraction logic, for easy working with RegEx in Python. """ __title__ = "remagic" -__version__ = "0.1.0" +__version__ = "0.1.1" __author__ = "ificiana" __license__ = "MIT License" __copyright__ = "Copyright 2022 ificiana" diff --git a/setup.cfg b/setup.cfg index e9bc22e..95a208a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.1.0 +current_version = 0.1.1 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch} diff --git a/setup.py b/setup.py index ead18cc..a3148f3 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setuptools.setup( name="remagic", - version="0.1.0", + version="0.1.1", author="Ificiana", author_email="ificiana@gmail.com", packages=["remagic"],