diff --git a/AUTHORS b/AUTHORS index 72ad591ad..da8eb3a3c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -49,6 +49,8 @@ Babel is written and maintained by the Babel team and various contributors: - Arturas Moskvinas - Leonardo Pistone - Hyunjun Kim +- Daniel +- Oleh Prypin - Petr Viktorin - Jean Abou-Samra - Joe Portela diff --git a/CHANGES.rst b/CHANGES.rst index 265f8eac2..41013bba3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,17 @@ Babel Changelog =============== +Version 2.13.1 +-------------- + +This is a patch release to fix a few bugs. + +Fixes +~~~~~ + +* Fix a typo in ``_locales_to_names`` by @Dl84 in :gh:`1038` (issue :gh:`1037`) +* Fix ``setuptools`` dependency for Python 3.12 by @opryprin in :gh:`1033` + Version 2.13.0 -------------- diff --git a/babel/__init__.py b/babel/__init__.py index a4e7de934..b3c50d297 100644 --- a/babel/__init__.py +++ b/babel/__init__.py @@ -25,7 +25,7 @@ parse_locale, ) -__version__ = '2.13.0' +__version__ = '2.13.1' __all__ = [ 'Locale', diff --git a/docs/conf.py b/docs/conf.py index 90c452553..df7382766 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,7 +53,7 @@ # The short X.Y version. version = '2.13' # The full version, including alpha/beta/rc tags. -release = '2.13.0' +release = '2.13.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.