diff --git a/cure/__version__.py b/cure/__version__.py index 45288cc..b85ee35 100644 --- a/cure/__version__.py +++ b/cure/__version__.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 2, 1) +__version_info__ = (0, 2, 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 66a45dd..68f5fc5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cure" -version = "0.2.1" +version = "0.2.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"