From 317cdfe8e131b5ac52b8422ec422d3a8c858d20f Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Wed, 27 Nov 2019 23:16:23 +0100 Subject: [PATCH] Bumped version --- pyproject.toml | 2 +- stockholm/__version__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e0b6d61..93735ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "stockholm" -version = "0.3.2" +version = "0.3.3" 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" diff --git a/stockholm/__version__.py b/stockholm/__version__.py index 4aa5cb2..305ed4d 100644 --- a/stockholm/__version__.py +++ b/stockholm/__version__.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 3, 2) +__version_info__ = (0, 3, 3) __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 )