From 962f9e5081774a7dad8f42597b121f8401a86900 Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Thu, 28 Nov 2019 21:03:00 +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 e07fbbc..cf38b4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "stockholm" -version = "0.3.5" +version = "0.3.6" 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 4674a52..0dcd516 100644 --- a/stockholm/__version__.py +++ b/stockholm/__version__.py @@ -1,4 +1,4 @@ -__version_info__ = (0, 3, 5) +__version_info__ = (0, 3, 6) __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 )