From cb0c362c3873744caf0a124ecb8271e369edbd98 Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Sat, 4 Jan 2020 03:05:51 +0100 Subject: [PATCH] Bumped version --- cure/__version__.py | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cure/__version__.py b/cure/__version__.py index d418dec..a662d94 100644 --- a/cure/__version__.py +++ b/cure/__version__.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 1, 3) +__version_info__ = (0, 2, 0) __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 32b6bf2..b17a7a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cure" -version = "0.1.3" +version = "0.2.0" 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" @@ -9,7 +9,7 @@ keywords = ["cure", "trailing underscore", "single trailing underscore", "single readme = "README.md" license = "MIT" classifiers = [ - "Development Status :: 2 - Pre-Alpha", + "Development Status :: 3 - Alpha", "Topic :: Software Development", "Topic :: Software Development :: Libraries", "Programming Language :: Python",