From f5ad93179a1a30f7664a84bd42683751449e7fbc Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Sat, 4 Jan 2020 02:05:05 +0100 Subject: [PATCH] Bumped version --- cure/__version__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"