diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 80fb20533..ebb06d22c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,4 +1,4 @@ -Version 12.2.0 +Version 13.0.0 -------------- - Added Croatian locale support (``Locale.HR``). Great appreciation to `@CerealKiller0807 `_ for this contribution. diff --git a/docs/conf.py b/docs/conf.py index ca5758dcc..1ba8db80c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -70,9 +70,9 @@ # built documents. # # The short X.Y version. -version = "12.2.0" +version = "13.0" # The full version, including alpha/beta/rc tags. -release = "12.2.0" +release = "13.0.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/mimesis/__init__.py b/mimesis/__init__.py index 45f892c77..10a8f96b9 100644 --- a/mimesis/__init__.py +++ b/mimesis/__init__.py @@ -146,7 +146,7 @@ "__license__", ] -__version__ = "12.2.0" +__version__ = "13.0.0" __title__ = "mimesis" __description__ = "Mimesis: Fake Data Generator." __url__ = "https://github.com/lk-geimfari/mimesis" diff --git a/pyproject.toml b/pyproject.toml index 60389d2c1..689d2bb2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mimesis" -version = "12.2.0" +version = "13.0.0" description = "Mimesis: Fake Data Generator." authors = ["Isaak Uchakaev "] license = "MIT"