diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6140297..c810133 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.2 +current_version = 1.0.3 commit = True tag = True message = Release {new_version} diff --git a/HISTORY.rst b/HISTORY.rst index 9ec27e2..c639fb6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,12 @@ Changelog --------- +1.0.3 (2023-03-30) +~~~~~~~~~~~~~~~~~~~ + +- Fixes up packaging of ``py.typed`` marker + [Daverball] + 1.0.2 (2022-08-10) ~~~~~~~~~~~~~~~~~~~ diff --git a/sedate/__init__.py b/sedate/__init__.py index 3163cd1..d4530d8 100644 --- a/sedate/__init__.py +++ b/sedate/__init__.py @@ -36,7 +36,7 @@ from .types import TzInfo from .types import TzInfoOrName -__version__ = '1.0.2.post1' +__version__ = '1.0.3.post1' mindatetime = pytz.utc.localize(datetime.min) maxdatetime = pytz.utc.localize(datetime.max)