Skip to content

Commit

Permalink
Release 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sils committed Jan 2, 2016
1 parent 515d1c6 commit 327bcdf
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 9 deletions.
44 changes: 36 additions & 8 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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
-----------
Expand Down
2 changes: 1 addition & 1 deletion babel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
negotiate_locale, parse_locale, get_locale_identifier


__version__ = '2.2.0.dev0'
__version__ = '2.2.0'

1 comment on commit 327bcdf

@akx
Copy link
Member

@akx akx commented on 327bcdf Jan 2, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ack

Please sign in to comment.