summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLasse Schuirmann <lasse.schuirmann@gmail.com>2016-01-02 14:54:14 +0100
committerLasse Schuirmann <lasse.schuirmann@gmail.com>2016-01-02 14:54:14 +0100
commitd1f50e11915fe3182a1df7e524abd58aec35efab (patch)
tree37fd380eb190b878862d9eeb12de4f6b17078600
parent515d1c66da64282e5fab917438bf3190a09b15a6 (diff)
downloadbabel-sils/changes.tar.gz
Release 2.2sils/changes
-rw-r--r--CHANGES16
-rw-r--r--babel/__init__.py2
2 files changed, 14 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 77c426c..00119c6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,17 +1,27 @@
Babel Changelog
===============
+Version 2.3
+-----------
+
+(Feature release, release data to be decided)
+
Version 2.2
-----------
-(Feature release, release date to be decided)
+(Feature release, released on January 2nd 2016)
-- Upgraded data to CLDR 26
-- Add official support for Python 3.4
+- Upgraded data to CLDR 28 (https://github.com/python-babel/babel/pull/292)
+- Add official support for Python 3.4 and 3.5
- 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)
+- Add list formatting
+- Allow file locations without line numbers (https://github.com/python-babel/babel/pull/279)
+- Allow passing a callable to `extract()` (https://github.com/python-babel/babel/pull/289)
+- Add an ordinal_form property to Locale (https://github.com/python-babel/babel/pull/270)
+- Add `__hash__` to Locale (https://github.com/python-babel/babel/pull/303)
Version 2.1
-----------
diff --git a/babel/__init__.py b/babel/__init__.py
index d2e5259..c58e972 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.2.0.dev0'
+__version__ = '2.2.0'