From d1f6a802a44ad2b9534159a726549191a6d4e6f1 Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Wed, 6 Apr 2022 10:01:28 +0200 Subject: [PATCH] Bumped version --- pyproject.toml | 2 +- utcnow/__version_data__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f92b926..fd0761d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utcnow" -version = "0.3.1" +version = "0.3.2" description = "Timestamps as opinionated RFC 3339 (Date and Time on the Internet) formatted strings" authors = ["Carl Oscar Aaro "] homepage = "https://github.com/kalaspuff/utcnow" diff --git a/utcnow/__version_data__.py b/utcnow/__version_data__.py index f153c86..d18f590 100644 --- a/utcnow/__version_data__.py +++ b/utcnow/__version_data__.py @@ -1,6 +1,6 @@ from typing import Tuple, Union -__version_info__: Tuple[Union[int, str], ...] = (0, 3, 1) +__version_info__: Tuple[Union[int, str], ...] = (0, 3, 2) __version__: str = "".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 )