diff --git a/casefy/casefy.py b/casefy/casefy.py index f36fece..5b54eba 100644 --- a/casefy/casefy.py +++ b/casefy/casefy.py @@ -1,6 +1,6 @@ """Utilities for string case conversion.""" -__version__ = "0.1.0" +__version__ = "0.1.1" import re from typing import List diff --git a/docs/source/conf.py b/docs/source/conf.py index d11a6ac..677e337 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ author = 'Diego Miguel Lozano' # The full version, including alpha/beta/rc tags -release = '0.1.0' +release = '0.1.1' # -- General configuration --------------------------------------------------- diff --git a/setup.cfg b/setup.cfg index 0f5540d..32603ec 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = casefy -version = 0.1.0 +version = 0.1.1 author = Diego Miguel Lozano author_email = hello@diegomiguel.me description = Utilities for string case conversion. diff --git a/setup.py b/setup.py index c443641..1035a2c 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="casefy", - version="0.1.0", + version="0.1.1", author="Diego Miguel Lozano", author_email="hello@diegomiguel.me", description="Utilities for string case conversion.", diff --git a/tests/test_casefy.py b/tests/test_casefy.py index cb9c225..aba9909 100644 --- a/tests/test_casefy.py +++ b/tests/test_casefy.py @@ -1,6 +1,6 @@ """Tests for casefy.""" -__version__ = "0.1.0" +__version__ = "0.1.1" import sys