From b67093db545c0ba38f90613e438518b738c66268 Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Wed, 27 Nov 2019 22:39:31 +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 b8bda0a..e0b6d61 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "stockholm" -version = "0.3.1" +version = "0.3.2" 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 9fcd187..4aa5cb2 100644 --- a/stockholm/__version__.py +++ b/stockholm/__version__.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 3, 1) +__version_info__ = (0, 3, 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 )