File tree 4 files changed +43
-3
lines changed
4 files changed +43
-3
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ Babel is written and maintained by the Babel team and various contributors:
23
23
- Jun Omae
24
24
- Hugo
25
25
- Heungsub Lee
26
+ - Tomas R
26
27
- Jakob Schnitzer
27
28
- Sachin Paliwal
28
29
- Alex Willmer
@@ -49,6 +50,9 @@ Babel is written and maintained by the Babel team and various contributors:
49
50
- Arturas Moskvinas
50
51
- Leonardo Pistone
51
52
- Hyunjun Kim
53
+ - buhtz
54
+ - Bohdan Malomuzh
55
+ - Leonid
52
56
- Ronan Amicel
53
57
- Christian Clauss
54
58
- Best Olunusi
Original file line number Diff line number Diff line change 1
1
Babel Changelog
2
2
===============
3
3
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
+
4
40
Version 2.15.0
5
41
--------------
6
42
Original file line number Diff line number Diff line change 25
25
parse_locale ,
26
26
)
27
27
28
- __version__ = '2.15 .0'
28
+ __version__ = '2.16 .0'
29
29
30
30
__all__ = [
31
31
'Locale' ,
Original file line number Diff line number Diff line change 51
51
# built documents.
52
52
#
53
53
# The short X.Y version.
54
- version = '2.15 '
54
+ version = '2.16 '
55
55
# The full version, including alpha/beta/rc tags.
56
- release = '2.15 .0'
56
+ release = '2.16 .0'
57
57
58
58
# The language for content autogenerated by Sphinx. Refer to documentation
59
59
# for a list of supported languages.
You can’t perform that action at this time.
0 commit comments