diff --git a/pyproject.toml b/pyproject.toml index 4cdd6a0..f92b926 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utcnow" -version = "0.3.0" +version = "0.3.1" 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 10071ed..f153c86 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, 0) +__version_info__: Tuple[Union[int, str], ...] = (0, 3, 1) __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 )