Skip to content

Commit

Permalink
Updated TZ database
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuri6037 committed Sep 21, 2023
1 parent 6f214a6 commit 023ca64
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022, Yuri6037
// Copyright (c) 2023, Yuri6037
//
// All rights reserved.
//
Expand Down Expand Up @@ -77,6 +77,9 @@ fn parse_win_cldr_db() -> phf_codegen::Map<String> {
let mut str = String::new();
let mut split = zone_name_statics.split(' ').peekable();
while let Some(item) = split.next() {
if item.trim().is_empty() {
continue;
}
str += "&internal_tz_new(&";
str += item;
str.push(')');
Expand Down
2 changes: 1 addition & 1 deletion tz
Submodule tz updated 46 files
+1 −1 CONTRIBUTING
+206 −99 Makefile
+482 −18 NEWS
+100 −223 africa
+4 −30 antarctica
+32 −23 asctime.c
+361 −96 asia
+46 −119 australasia
+239 −57 backward
+698 −7 backzone
+23 −1 checklinks.awk
+3 −2 checktab.awk
+6 −5 date.1
+28 −40 date.c
+12 −11 etcetera
+168 −533 europe
+12 −7 iso3166.tab
+4 −4 leap-seconds.list
+31 −19 leapseconds.awk
+190 −131 localtime.c
+24 −9 newctime.3
+3 −3 newstrftime.3
+6 −5 newtzset.3
+189 −265 northamerica
+361 −153 private.h
+59 −26 southamerica
+27 −26 strftime.c
+67 −39 theory.html
+9 −9 time2posix.3
+33 −19 tz-art.html
+3 −3 tz-how-to.html
+111 −71 tz-link.html
+6 −6 tzfile.5
+12 −8 tzfile.h
+19 −7 tzselect.8
+215 −75 tzselect.ksh
+13 −5 workman.sh
+6 −6 zdump.8
+141 −100 zdump.c
+82 −28 zic.8
+742 −390 zic.c
+284 −31 ziguard.awk
+49 −11 zishrink.awk
+27 −33 zone.tab
+73 −73 zone1970.tab
+0 −53 zoneinfo2tdf.pl
10 changes: 5 additions & 5 deletions win_cldr_data/windowsZones.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ For terms of use, see http://www.unicode.org/copyright.html
<mapZone other="US Mountain Standard Time" territory="ZZ" type="Etc/GMT+7"/>

<!-- (UTC-07:00) Chihuahua, La Paz, Mazatlan -->
<mapZone other="Mountain Standard Time (Mexico)" territory="001" type="America/Chihuahua"/>
<mapZone other="Mountain Standard Time (Mexico)" territory="MX" type="America/Chihuahua America/Mazatlan"/>
<mapZone other="Mountain Standard Time (Mexico)" territory="001" type="America/Mazatlan"/>
<mapZone other="Mountain Standard Time (Mexico)" territory="MX" type="America/Mazatlan"/>

<!-- (UTC-07:00) Mountain Time (US & Canada) -->
<mapZone other="Mountain Standard Time" territory="001" type="America/Denver"/>
<mapZone other="Mountain Standard Time" territory="CA" type="America/Edmonton America/Cambridge_Bay America/Inuvik America/Yellowknife"/>
<mapZone other="Mountain Standard Time" territory="MX" type="America/Ojinaga"/>
<mapZone other="Mountain Standard Time" territory="MX" type="America/Ciudad_Juarez"/>
<mapZone other="Mountain Standard Time" territory="US" type="America/Denver America/Boise"/>
<mapZone other="Mountain Standard Time" territory="ZZ" type="MST7MDT"/>

Expand All @@ -98,7 +98,7 @@ For terms of use, see http://www.unicode.org/copyright.html
<!-- (UTC-06:00) Central Time (US & Canada) -->
<mapZone other="Central Standard Time" territory="001" type="America/Chicago"/>
<mapZone other="Central Standard Time" territory="CA" type="America/Winnipeg America/Rainy_River America/Rankin_Inlet America/Resolute"/>
<mapZone other="Central Standard Time" territory="MX" type="America/Matamoros"/>
<mapZone other="Central Standard Time" territory="MX" type="America/Matamoros America/Ojinaga"/>
<mapZone other="Central Standard Time" territory="US" type="America/Chicago America/Indiana/Knox America/Indiana/Tell_City America/Menominee America/North_Dakota/Beulah America/North_Dakota/Center America/North_Dakota/New_Salem"/>
<mapZone other="Central Standard Time" territory="ZZ" type="CST6CDT"/>

Expand All @@ -108,7 +108,7 @@ For terms of use, see http://www.unicode.org/copyright.html

<!-- (UTC-06:00) Guadalajara, Mexico City, Monterrey -->
<mapZone other="Central Standard Time (Mexico)" territory="001" type="America/Mexico_City"/>
<mapZone other="Central Standard Time (Mexico)" territory="MX" type="America/Mexico_City America/Bahia_Banderas America/Merida America/Monterrey"/>
<mapZone other="Central Standard Time (Mexico)" territory="MX" type="America/Mexico_City America/Bahia_Banderas America/Merida America/Monterrey America/Chihuahua "/>

<!-- (UTC-06:00) Saskatchewan -->
<mapZone other="Canada Central Standard Time" territory="001" type="America/Regina"/>
Expand Down

0 comments on commit 023ca64

Please sign in to comment.