]> git.ipfire.org Git - thirdparty/babel.git/commitdiff
Release 2.2 2.2.0
authorLasse Schuirmann <lasse.schuirmann@gmail.com>
Sat, 2 Jan 2016 13:54:14 +0000 (14:54 +0100)
committerLasse Schuirmann <lasse.schuirmann@gmail.com>
Sat, 2 Jan 2016 19:15:46 +0000 (20:15 +0100)
CHANGES
babel/__init__.py

diff --git a/CHANGES b/CHANGES
index 77c426c2c339d2bcfabbe33edf7aaa00dbed1fe5..dc0e8217942a6eead70777e7c006f50bf6c05958 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,17 +1,45 @@
 Babel Changelog
 ===============
 
-Version 2.2
+Version 2.3
 -----------
 
-(Feature release, release date to be decided)
+(Feature release, release data to be decided)
+
+Version 2.2
+-----------
 
-- Upgraded data to CLDR 26
-- Add official support for Python 3.4
-- Use the CLDR recommended amount of decimal digits when formatting
-  currencies (https://github.com/python-babel/babel/issues/139)
-- Properly load and use currency format types
-  (https://github.com/python-babel/babel/issues/201)
+(Feature release, released on January 2nd 2016)
+
+### Bugfixes
+
+* General: Add __hash__ to Locale. (#303) (2aa8074)
+* General: Allow files with BOM if they're UTF-8 (#189) (da87edd)
+* General: localedata directory is now locale-data (#109) (2d1882e)
+* General: odict: Fix pop method (0a9e97e)
+* General: Removed uses of datetime.date class from *.dat files (#174) (94f6830)
+* Messages: Fix plural selection for chinese (531f666)
+* Messages: Fix typo and add semicolon in plural_forms (5784501)
+* Messages: Flatten NullTranslations.files into a list (ad11101)
+* Times: FixedOffsetTimezone: fix display of negative offsets (d816803)
+
+### Features
+
+* CLDR: Update to CLDR 28 (#292) (9f7f4d0)
+* General: Add __copy__ and __deepcopy__ to LazyProxy. (a1cc3f1)
+* General: Add official support for Python 3.4 and 3.5
+* General: Improve odict performance by making key search O(1) (6822b7f)
+* Locale: Add an ordinal_form property to Locale (#270) (b3f3430)
+* Locale: Add support for list formatting (37ce4fa, be6e23d)
+* Locale: Check inheritance exceptions first (3ef0d6d)
+* Messages: Allow file locations without line numbers (#279) (79bc781)
+* Messages: Allow passing a callable to `extract()` (#289) (3f58516)
+* Messages: Support 'Language' header field of PO files (#76) (3ce842b)
+* Messages: Update catalog headers from templates (e0e7ef1)
+* Numbers: Properly load and expose currency format types (#201) (df676ab)
+* Numbers: Use cdecimal by default when available (b6169be)
+* Numbers: Use the CLDR's suggested number of decimals for format_currency (#139) (201ed50)
+* Times: Add format_timedelta(format='narrow') support (edc5eb5)
 
 Version 2.1
 -----------
index d2e52599cc9db222cdbae4ce2e1cbc52b857f546..c58e972fb61753958f5d9ab0ef8a83b1f34764a1 100644 (file)
@@ -21,4 +21,4 @@ from babel.core import UnknownLocaleError, Locale, default_locale, \
      negotiate_locale, parse_locale, get_locale_identifier
 
 
-__version__ = '2.2.0.dev0'
+__version__ = '2.2.0'