From f29eccd6b6edd031e43ccd1bcf92513221b66df6 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Thu, 14 Sep 2017 13:04:32 +0300 Subject: Become 2.5.1 (#527) --- CHANGES | 13 +++++++++++++ babel/__init__.py | 2 +- docs/conf.py | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 99f8db0..0efd204 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,19 @@ Babel Changelog =============== +Version 2.5.1 +------------- + +Minor Improvements and bugfixes +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +* Use a fixed datetime to avoid test failures (#520) (@narendravardi) +* Parse multi-line __future__ imports better (#519) (@akx) +* Fix validate_currency docstring (#522) +* Allow normalize_locale and exists to handle various unexpected inputs (#523) (@suhojm) +* Make PyInstaller support more robust (#525, #526) (@thijstriemstra, @akx) + + Version 2.5.0 ------------- diff --git a/babel/__init__.py b/babel/__init__.py index 1b367c0..ba972b5 100644 --- a/babel/__init__.py +++ b/babel/__init__.py @@ -21,4 +21,4 @@ from babel.core import UnknownLocaleError, Locale, default_locale, \ negotiate_locale, parse_locale, get_locale_identifier -__version__ = '2.5.0' +__version__ = '2.5.1' diff --git a/docs/conf.py b/docs/conf.py index e548429..a022016 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,7 +53,7 @@ copyright = u'2017, The Babel Team' # The short X.Y version. version = '2.5' # The full version, including alpha/beta/rc tags. -release = '2.5.0' +release = '2.5.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -- cgit v1.2.1