diff --git a/cure/__version__.py b/cure/__version__.py index 04462cd..8338adf 100644 --- a/cure/__version__.py +++ b/cure/__version__.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 1, 1) +__version_info__ = (0, 1, 2) __version__ = "".join([".{}".format(str(n)) if type(n) is int else str(n) for n in __version_info__]).replace( ".", "", 1 if type(__version_info__[0]) is int else 0 ) diff --git a/pyproject.toml b/pyproject.toml index ffcb5d1..aec0acb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cure" -version = "0.1.1" +version = "0.1.2" description = "Decorator for fixing naming conventions to keys of keyword arguments - adds trailing underscores to keys using bad naming such as reserved keywords or Python built-ins" authors = ["Carl Oscar Aaro "] homepage = "https://github.com/kalaspuff/cure"