Skip to content

Commit a5ecaa3

Browse files
committed
Become 2.6.0
1 parent ecdf2ae commit a5ecaa3

File tree

4 files changed

+49
-9
lines changed

4 files changed

+49
-9
lines changed

AUTHORS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
Babel is written and maintained by the Babel team and various contributors:
33

4+
- Aarni Koskela
45
- Christopher Lenz
56
- Armin Ronacher
6-
- Aarni Koskela
77
- Alex Morega
88
- Lasse Schuirmann
99
- Felix Schwarz
@@ -41,6 +41,7 @@ Babel is written and maintained by the Babel team and various contributors:
4141
- Leonardo Pistone
4242
- Jun Omae
4343
- Hyunjun Kim
44+
- PTrottier
4445
- xmo-odoo
4546
- StevenJ
4647
- Jungmo Ku

CHANGES

Lines changed: 44 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,45 @@
11
Babel Changelog
22
===============
33

4+
Version 2.6.0
5+
-------------
6+
7+
Possibly incompatible changes
8+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9+
10+
These may be backward incompatible in some cases, as some more-or-less internal APIs have changed.
11+
Please feel free to file issues if you bump into anything strange and we'll try to help!
12+
13+
* Numbers: Refactor decimal handling code and allow bypass of decimal quantization. (@kdeldycke) (PR #538)
14+
* Messages: allow processing files that are in locales unknown to Babel (@akx) (PR #557)
15+
* General: Drop support for EOL Python 2.6 and 3.3 (@hugovk) (PR #546)
16+
17+
Other changes
18+
~~~~~~~~~~~~~
19+
20+
* CLDR: Use CLDR 33 (@akx) (PR #581)
21+
* Lists: Add support for various list styles other than the default (@akx) (#552)
22+
* Messages: Add new PoFileError exception (@Bedrock02) (PR #532)
23+
* Times: Simplify Linux distro specific explicit timezone setting search (@scop) (PR #528)
24+
25+
Bugfixes
26+
~~~~~~~~
27+
28+
* CLDR: avoid importing alt=narrow currency symbols (@akx) (PR #558)
29+
* CLDR: ignore non-Latin numbering systems (@akx) (PR #579)
30+
* Docs: Fix improper example for date formatting (@PTrottier) (PR #574)
31+
* Tooling: Fix some deprecation warnings (@akx) (PR #580)
32+
33+
Tooling & docs
34+
~~~~~~~~~~~~~~
35+
36+
* Add explicit signatures to some date autofunctions (@xmo-odoo) (PR #554)
37+
* Include license file in the generated wheel package (@jdufresne) (PR #539)
38+
* Python 3.6 invalid escape sequence deprecation fixes (@scop) (PR #528)
39+
* Test and document all supported Python versions (@jdufresne) (PR #540)
40+
* Update copyright header years and authors file (@akx) (PR #559)
41+
42+
443
Version 2.5.3
544
-------------
645

@@ -210,15 +249,15 @@ Version 2.1
210249

211250
- Parse and honour the locale inheritance exceptions
212251
(https://github.com/python-babel/babel/issues/97)
213-
- Fix Locale.parse using ``global.dat`` incompatible types
252+
- Fix Locale.parse using ``global.dat`` incompatible types
214253
(https://github.com/python-babel/babel/issues/174)
215254
- Fix display of negative offsets in ``FixedOffsetTimezone``
216255
(https://github.com/python-babel/babel/issues/214)
217256
- Improved odict performance which is used during localization file
218257
build, should improve compilation time for large projects
219258
- Add support for "narrow" format for ``format_timedelta``
220259
- Add universal wheel support
221-
- Support 'Language' header field in .PO files
260+
- Support 'Language' header field in .PO files
222261
(fixes https://github.com/python-babel/babel/issues/76)
223262
- Test suite enhancements (coverage, broken tests fixed, etc)
224263
- Documentation updated
@@ -313,7 +352,7 @@ Version 1.0
313352
string does not contain any string formattings (:trac:`150`).
314353
- Fix Serbian plural forms (:trac:`213`).
315354
- Small speed improvement in format_date() (:trac:`216`).
316-
- Fix so frontend.CommandLineInterface.run does not accumulate logging
355+
- Fix so frontend.CommandLineInterface.run does not accumulate logging
317356
handlers (:trac:`227`, reported with initial patch by dfraser)
318357
- Fix exception if environment contains an invalid locale setting
319358
(:trac:`200`)
@@ -390,11 +429,11 @@ Version 0.9.6
390429
string does not contain any string formattings (:trac:`150`).
391430
- Fix Serbian plural forms (:trac:`213`).
392431
- Small speed improvement in format_date() (:trac:`216`).
393-
- Fix number formatting for locales where CLDR specifies alt or draft
432+
- Fix number formatting for locales where CLDR specifies alt or draft
394433
items (:trac:`217`)
395434
- Fix bad check in format_time (:trac:`257`, reported with patch and tests by
396435
jomae)
397-
- Fix so frontend.CommandLineInterface.run does not accumulate logging
436+
- Fix so frontend.CommandLineInterface.run does not accumulate logging
398437
handlers (:trac:`227`, reported with initial patch by dfraser)
399438
- Fix exception if environment contains an invalid locale setting
400439
(:trac:`200`)

babel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
negotiate_locale, parse_locale, get_locale_identifier
2222

2323

24-
__version__ = '2.5.3'
24+
__version__ = '2.6.0'

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '2.5'
54+
version = '2.6'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '2.5.3'
56+
release = '2.6.0'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

0 commit comments

Comments
 (0)