From 01650f794f5a9b314bd375f688aaf500035f38fc Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Wed, 4 Oct 2023 13:28:17 +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 982d41a..17a6302 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utcnow" -version = "0.3.7" +version = "0.3.8" 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 c8a5c66..cbdb972 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, 7) +__version_info__: Tuple[Union[int, str], ...] = (0, 3, 8) __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 )