diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 12971cb..954c938 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0-dev +current_version = 0.1.0 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/iguala/__init__.py b/iguala/__init__.py index 9c476df..c372dab 100644 --- a/iguala/__init__.py +++ b/iguala/__init__.py @@ -3,4 +3,4 @@ from .paths import as_path __ALL__ = ["match", "as_matcher", "as_path", "is_not"] -__version__ = "0.1.0-dev" +__version__ = "0.1.0" diff --git a/setup.py b/setup.py index f0e6d9c..26822b1 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name='iguala', - version='0.1.0-dev', + version='0.1.0', description=("Non-linear pattern matching for Python's objects, or rexep-like for objects"), long_description=open('README.md').read(), long_description_content_type='text/markdown',