diff --git a/pyproject.toml b/pyproject.toml index c51b0e4..ff2cfb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "utcnow" -version = "0.0.1" -description = "Just timestamps as RFC 3339 (Date and Time on the Internet) formatted strings" +version = "0.1.0" +description = "Timestamps as opinionated RFC 3339 (Date and Time on the Internet) formatted strings" authors = ["Carl Oscar Aaro "] homepage = "https://github.com/kalaspuff/izakaya" repository = "https://github.com/kalaspuff/izakaya" diff --git a/utcnow/__version_data__.py b/utcnow/__version_data__.py index dc71ea2..60a01d1 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, 0, 1) +__version_info__: Tuple[Union[int, str], ...] = (0, 1, 0) __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 )