]> git.ipfire.org Git - thirdparty/babel.git/commitdiff
Become 2.6.0 v2.6.0
authorAarni Koskela <akx@iki.fi>
Mon, 28 May 2018 14:08:31 +0000 (17:08 +0300)
committerAarni Koskela <akx@iki.fi>
Mon, 28 May 2018 14:27:58 +0000 (17:27 +0300)
AUTHORS
CHANGES
babel/__init__.py
docs/conf.py

diff --git a/AUTHORS b/AUTHORS
index 58a9bee280e1a049ea964179fe6149f6ac6ca12d..69e110eccb3c8d30c7b2d6318a91784f443eed33 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,9 +1,9 @@
 
 Babel is written and maintained by the Babel team and various contributors:
 
+- Aarni Koskela
 - Christopher Lenz
 - Armin Ronacher
-- Aarni Koskela
 - Alex Morega
 - Lasse Schuirmann
 - Felix Schwarz
@@ -41,6 +41,7 @@ Babel is written and maintained by the Babel team and various contributors:
 - Leonardo Pistone
 - Jun Omae
 - Hyunjun Kim
+- PTrottier
 - xmo-odoo
 - StevenJ
 - Jungmo Ku
diff --git a/CHANGES b/CHANGES
index eff75e070a8c7fb2176c354330f594c52190bfaf..6d9b0e5fa5381859f9fe87c84fc35ffcd2a9cc32 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,45 @@
 Babel Changelog
 ===============
 
+Version 2.6.0
+-------------
+
+Possibly incompatible changes
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+These may be backward incompatible in some cases, as some more-or-less internal APIs have changed.
+Please feel free to file issues if you bump into anything strange and we'll try to help!
+
+* Numbers: Refactor decimal handling code and allow bypass of decimal quantization. (@kdeldycke) (PR #538)
+* Messages: allow processing files that are in locales unknown to Babel (@akx) (PR #557)
+* General: Drop support for EOL Python 2.6 and 3.3 (@hugovk) (PR #546)
+
+Other changes
+~~~~~~~~~~~~~
+
+* CLDR: Use CLDR 33 (@akx) (PR #581)
+* Lists: Add support for various list styles other than the default (@akx) (#552)
+* Messages: Add new PoFileError exception (@Bedrock02) (PR #532)
+* Times: Simplify Linux distro specific explicit timezone setting search (@scop) (PR #528)
+
+Bugfixes
+~~~~~~~~
+
+* CLDR: avoid importing alt=narrow currency symbols (@akx) (PR #558)
+* CLDR: ignore non-Latin numbering systems (@akx) (PR #579)
+* Docs: Fix improper example for date formatting (@PTrottier) (PR #574)
+* Tooling: Fix some deprecation warnings (@akx) (PR #580)
+
+Tooling & docs
+~~~~~~~~~~~~~~
+
+* Add explicit signatures to some date autofunctions (@xmo-odoo) (PR #554)
+* Include license file in the generated wheel package (@jdufresne) (PR #539)
+* Python 3.6 invalid escape sequence deprecation fixes (@scop) (PR #528)
+* Test and document all supported Python versions (@jdufresne) (PR #540)
+* Update copyright header years and authors file (@akx) (PR #559)
+
+
 Version 2.5.3
 -------------
 
@@ -210,7 +249,7 @@ Version 2.1
 
 - Parse and honour the locale inheritance exceptions
   (https://github.com/python-babel/babel/issues/97)
-- Fix Locale.parse using ``global.dat`` incompatible types 
+- Fix Locale.parse using ``global.dat`` incompatible types
   (https://github.com/python-babel/babel/issues/174)
 - Fix display of negative offsets in ``FixedOffsetTimezone``
   (https://github.com/python-babel/babel/issues/214)
@@ -218,7 +257,7 @@ Version 2.1
   build, should improve compilation time for large projects
 - Add support for "narrow" format for ``format_timedelta``
 - Add universal wheel support
-- Support 'Language' header field in .PO files 
+- Support 'Language' header field in .PO files
   (fixes https://github.com/python-babel/babel/issues/76)
 - Test suite enhancements (coverage, broken tests fixed, etc)
 - Documentation updated
@@ -313,7 +352,7 @@ Version 1.0
   string does not contain any string formattings (:trac:`150`).
 - Fix Serbian plural forms (:trac:`213`).
 - Small speed improvement in format_date() (:trac:`216`).
-- Fix so frontend.CommandLineInterface.run does not accumulate logging 
+- Fix so frontend.CommandLineInterface.run does not accumulate logging
   handlers (:trac:`227`, reported with initial patch by dfraser)
 - Fix exception if environment contains an invalid locale setting
   (:trac:`200`)
@@ -390,11 +429,11 @@ Version 0.9.6
   string does not contain any string formattings (:trac:`150`).
 - Fix Serbian plural forms (:trac:`213`).
 - Small speed improvement in format_date() (:trac:`216`).
-- Fix number formatting for locales where CLDR specifies alt or draft 
+- Fix number formatting for locales where CLDR specifies alt or draft
   items (:trac:`217`)
 - Fix bad check in format_time (:trac:`257`, reported with patch and tests by
   jomae)
-- Fix so frontend.CommandLineInterface.run does not accumulate logging 
+- Fix so frontend.CommandLineInterface.run does not accumulate logging
   handlers (:trac:`227`, reported with initial patch by dfraser)
 - Fix exception if environment contains an invalid locale setting
   (:trac:`200`)
index c4e4d20ac250768cddf8006afadc748af9ea8bcd..de44ce6c11349520dd34c3e3e5969247f09380ea 100644 (file)
@@ -21,4 +21,4 @@ from babel.core import UnknownLocaleError, Locale, default_locale, \
     negotiate_locale, parse_locale, get_locale_identifier
 
 
-__version__ = '2.5.3'
+__version__ = '2.6.0'
index 5aebe94d9476a5fe0fe662fad4311a80d09d2bf1..47196622a6a59956a35f93cd736d5e18038112e7 100644 (file)
@@ -51,9 +51,9 @@ copyright = u'2018, The Babel Team'
 # built documents.
 #
 # The short X.Y version.
-version = '2.5'
+version = '2.6'
 # The full version, including alpha/beta/rc tags.
-release = '2.5.3'
+release = '2.6.0'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.