diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 67bb921..37963b8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,9 @@ The format is based on `Keep a Changelog`_, and this project adheres to `Calenda `Unreleased`_ ------------- +`2023.06.16`_ +------------- + Added ^^^^^ * Add a .pyi file to contain type hints for countries and currencies @@ -92,7 +95,8 @@ Added * Added country ISO codes (ISO-3166) -.. _`unreleased`: https://github.com/spapanik/teritorio/compare/v2023.06.13...master +.. _`unreleased`: https://github.com/spapanik/teritorio/compare/v2023.06.16...master +.. _`2023.06.16`: https://github.com/spapanik/teritorio/compare/v2023.06.13...v2023.06.16 .. _`2023.06.13`: https://github.com/spapanik/teritorio/compare/v2023.04.28...v2023.06.13 .. _`2023.04.28`: https://github.com/spapanik/teritorio/compare/v2023.02.01...v2023.04.28 .. _`2023.02.01`: https://github.com/spapanik/teritorio/compare/v2023.10.10...v2023.02.01 diff --git a/pyproject.toml b/pyproject.toml index aeb54ce..e2fd872 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -105,7 +105,7 @@ skip_empty = true [tool.poetry] name = "teritorio" -version = "2023.06.13" +version = "2023.06.16" description = "A library for country and currency ISO codes" authors = [ "Stephanos Kuma ", diff --git a/src/teritorio/__init__.py b/src/teritorio/__init__.py index 93de3ee..a9dd212 100644 --- a/src/teritorio/__init__.py +++ b/src/teritorio/__init__.py @@ -1,4 +1,4 @@ from teritorio.main import Countries, Currencies __all__ = ["Countries", "Currencies"] -__version__ = "2023.06.13" +__version__ = "2023.06.16"