Skip to content

Commit cf7d223

Browse files
authored
Prepare for 2.16.0 release (#1116)
1 parent d26a669 commit cf7d223

File tree

4 files changed

+43
-3
lines changed

4 files changed

+43
-3
lines changed

AUTHORS

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Babel is written and maintained by the Babel team and various contributors:
2323
- Jun Omae
2424
- Hugo
2525
- Heungsub Lee
26+
- Tomas R
2627
- Jakob Schnitzer
2728
- Sachin Paliwal
2829
- Alex Willmer
@@ -49,6 +50,9 @@ Babel is written and maintained by the Babel team and various contributors:
4950
- Arturas Moskvinas
5051
- Leonardo Pistone
5152
- Hyunjun Kim
53+
- buhtz
54+
- Bohdan Malomuzh
55+
- Leonid
5256
- Ronan Amicel
5357
- Christian Clauss
5458
- Best Olunusi

CHANGES.rst

+36
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,42 @@
11
Babel Changelog
22
===============
33

4+
Version 2.16.0
5+
--------------
6+
7+
Features
8+
~~~~~~~~
9+
10+
* CLDR: Upgrade to CLDR 45 by @tomasr8 in :gh:`1077`
11+
* Lists: Support list format fallbacks by @akx in :gh:`1099`
12+
* Messages: Initial support for reading mapping configuration as TOML by @akx in :gh:`1108`
13+
14+
Bugfixes
15+
~~~~~~~~
16+
17+
* CLDR: Do not allow substituting alternates or drafts in derived locales by @akx in :gh:`1113`
18+
* Core: Allow falling back to modifier-less locale data by @akx in :gh:`1104`
19+
* Core: Allow use of importlib.metadata for finding entrypoints by @akx in :gh:`1102`
20+
* Dates: Avoid crashing on importing localtime when TZ is malformed by @akx in :gh:`1100`
21+
* Messages: Allow parsing .po files that have an extant but empty Language header by @akx in :gh:`1101`
22+
* Messages: Fix ``--ignore-dirs`` being incorrectly read (#1094) by @john-psina and @Edwin18 in :gh:`1052` and :gh:`1095`
23+
* Messages: Make pgettext search plurals when translation is not found by @tomasr8 in :gh:`1085`
24+
25+
Infrastructure
26+
~~~~~~~~~~~~~~
27+
28+
* Replace deprecated `ast.Str` with `ast.Constant` by @tomasr8 in :gh:`1083`
29+
* CI fixes by @akx in :gh:`1080`, :gh:`1097`, :gh:`1103`, :gh:`1107`
30+
* Test on Python 3.13 beta releases by @akx in
31+
* Normalize package name to lower-case in setup.py by @akx in :gh:`1110`
32+
33+
Documentation
34+
~~~~~~~~~~~~~
35+
36+
* Add a mention to the docs that `format_skeleton(..., fuzzy=True)` may raise by @tomasr8 in :gh:`1106`
37+
* Two hyperlinks (to CLDR) and some typos by @buhtz in :gh:`1115`
38+
39+
440
Version 2.15.0
541
--------------
642

babel/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
parse_locale,
2626
)
2727

28-
__version__ = '2.15.0'
28+
__version__ = '2.16.0'
2929

3030
__all__ = [
3131
'Locale',

docs/conf.py

+2-2
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.15'
54+
version = '2.16'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '2.15.0'
56+
release = '2.16.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)