Skip to content

Commit 11d0113

Browse files
committed
Fix Cldr.Timezone.timezone_from_locale/1
1 parent 20e0c11 commit 11d0113

File tree

4 files changed

+126
-100
lines changed

4 files changed

+126
-100
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
**Note that `ex_cldr` version 2.39.0 and later are supported on Elixir 1.12 and later only.**
44

5+
## Cldr v2.43.1
6+
7+
This is the changelog for Cldr v2.43.1 released on August 26th, 2025. For older changelogs please consult the release tag on [GitHub](https://github.com/elixir-cldr/cldr/tags)
8+
9+
### Bug Fixes
10+
11+
* Fix `Cldr.Locale.timezone_from_locale/1` when the territory has one zone and the zone short code is not instantiated as part of the language tag.
12+
513
## Cldr v2.43.0
614

715
This is the changelog for Cldr v2.43.0 released on August 25th, 2025. For older changelogs please consult the release tag on [GitHub](https://github.com/elixir-cldr/cldr/tags)

dev/cldr_backend.ex

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ require MyApp.Gettext
55
defmodule MyApp.Cldr do
66
use Cldr,
77
gettext: MyApp.Gettext,
8-
locales: ["en", "en-001", "de", "ja", "en-AU", "th", "ar", "pl", "doi", "fr-CA", "nb", "no", "ca-ES-VALENCIA", "ca"],
8+
locales: [
9+
"en", "en-001", "de", "ja", "en-AU", "th", "ar", "pl", "doi", "fr-CA", "nb", "no", "ca-ES-VALENCIA", "ca",
10+
"zh-Hant-HK", "zh"],
911
generate_docs: true,
1012
providers: []
1113

0 commit comments

Comments
 (0)