From 486b1f3b6cff81b2614c6e5764ad2d7b904015f1 Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Sat, 23 Nov 2019 19:53:22 +0100 Subject: [PATCH] Bumped version --- pyproject.toml | 4 ++-- stockholm/__version__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8a771cd..1678c10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "stockholm" -version = "0.0.4" +version = "0.0.5" description = "An up to date human friendly and flexible approach for development with any kind of monetary amounts" authors = ["Carl Oscar Aaro "] homepage = "https://github.com/kalaspuff/stockholm" @@ -8,7 +8,7 @@ keywords = ["money", "monetary amount", "monetary value", "currency", "formattin readme = "README.md" license = "MIT" classifiers = [ - "Development Status :: 1 - Planning", + "Development Status :: 2 - Pre-Alpha", "Topic :: Software Development :: Libraries", "Programming Language :: Python", "Programming Language :: Python :: 3", diff --git a/stockholm/__version__.py b/stockholm/__version__.py index 8bb09ca..fa0554f 100644 --- a/stockholm/__version__.py +++ b/stockholm/__version__.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 0, 4) +__version_info__ = (0, 0, 5) __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 )