File tree Expand file tree Collapse file tree 4 files changed +52
-3
lines changed
Expand file tree Collapse file tree 4 files changed +52
-3
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,13 @@ Babel is written and maintained by the Babel team and various contributors:
4747- Arturas Moskvinas
4848- Leonardo Pistone
4949- Hyunjun Kim
50+ - Eric L
51+ - Jonah Lawrence
52+ - Przemyslaw Wegrzyn
53+ - Lukas Kahwe Smith
54+ - Lukas Juhrich
55+ - Nikita Sobolev
56+ - Raphael Nestler
5057- Frank Harrison
5158- Nehal J Wani
5259- Mohamed Morsy
Original file line number Diff line number Diff line change 11Babel Changelog
22===============
33
4+ Version 2.11.0
5+ --------------
6+
7+ Upcoming deprecation
8+ ~~~~~~~~~~~~~~~~~~~~
9+
10+ * This version, Babel 2.11, is the last version of Babel to support Python 3.6.
11+ Babel 2.12 will require Python 3.7 or newer.
12+
13+ Improvements
14+ ~~~~~~~~~~~~
15+
16+ * Support for hex escapes in JavaScript string literals :gh: `#877 ` - Przemyslaw Wegrzyn
17+ * Add support for formatting decimals in compact form :gh: `#909 ` - Jonah Lawrence
18+ * Adapt parse_date to handle ISO dates in ASCII format :gh: `#842 ` - Eric L.
19+ * Use `ast ` instead of `eval ` for Python string extraction :gh: `#915 ` - Aarni Koskela
20+ * This also enables extraction from static f-strings.
21+ F-strings with expressions are silently ignored (but won't raise an error as they used to).
22+
23+ Infrastructure
24+ ~~~~~~~~~~~~~~
25+
26+ * Tests: Use regular asserts and ``pytest.raises() `` :gh: `#875 ` – Aarni Koskela
27+ * Wheels are now built in GitHub Actions :gh: `#888 ` – Aarni Koskela
28+ * Small improvements to the CLDR downloader script :gh: `#894 ` – Aarni Koskela
29+ * Remove antiquated `__nonzero__ ` methods :gh: `#896 ` - Nikita Sobolev
30+ * Remove superfluous `__unicode__ ` declarations :gh: `#905 ` - Lukas Juhrich
31+ * Mark package compatible with Python 3.11 :gh: `#913 ` - Aarni Koskela
32+ * Quiesce pytest warnings :gh: `#916 ` - Aarni Koskela
33+
34+ Bugfixes
35+ ~~~~~~~~
36+
37+ * Use email.Message for pofile header parsing instead of the deprecated ``cgi.parse_header `` function. :gh: `#876 ` – Aarni Koskela
38+ * Remove determining time zone via systemsetup on macOS :gh: `#914 ` - Aarni Koskela
39+
40+ Documentation
41+ ~~~~~~~~~~~~~
42+
43+ * Update Python versions in documentation :gh: `#898 ` - Raphael Nestler
44+ * Align BSD-3 license with OSI template :gh: `#912 ` - Lukas Kahwe Smith
45+
446Version 2.10.3
547--------------
648
Original file line number Diff line number Diff line change 2020 negotiate_locale , parse_locale , get_locale_identifier
2121
2222
23- __version__ = '2.10.3 '
23+ __version__ = '2.11.0 '
Original file line number Diff line number Diff line change 5050# built documents.
5151#
5252# The short X.Y version.
53- version = '2.10 '
53+ version = '2.11 '
5454# The full version, including alpha/beta/rc tags.
55- release = '2.10.2 '
55+ release = '2.11.0 '
5656
5757# The language for content autogenerated by Sphinx. Refer to documentation
5858# for a list of supported languages.
You can’t perform that action at this time.
0 commit comments