Skip to content

Commit 3fec560

Browse files
actions-userpganssle
authored andcommitted
Update tzdata to version '2025c'
# Version 2025.3 Upstream version 2025c released 2025-12-10T22:42:37+00:00 ## Briefly: Several code changes for compatibility with FreeBSD. ## Changes to past timestamps Baja California agreed with California’s DST rules in 1953 and in 1961 through 1975, instead of observing standard time all year. (Thanks to Alois Treindl.) ## Changes to commentary The leapseconds file contains commentary about the IERS and NIST last-modified and expiration timestamps for leap second data. (Thanks to Judah Levine.) Commentary now also uses characters from the set –‘’“”•≤ as this can be useful and should work with current applications. This also affects data in iso3166.tab and zone1970.tab, which now contain strings like “Côte d’Ivoire” instead of “Côte d'Ivoire”.
1 parent 4045188 commit 3fec560

File tree

13 files changed

+131
-81
lines changed

13 files changed

+131
-81
lines changed

NEWS.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
# Version 2025.3
2+
Upstream version 2025c released 2025-12-10T22:42:37+00:00
3+
4+
## Briefly:
5+
6+
Several code changes for compatibility with FreeBSD.
7+
8+
## Changes to past timestamps
9+
10+
Baja California agreed with California’s DST rules in 1953 and in 1961 through
11+
1975, instead of observing standard time all year. (Thanks to Alois Treindl.)
12+
13+
## Changes to commentary
14+
15+
The leapseconds file contains commentary about the IERS and NIST last-modified
16+
and expiration timestamps for leap second data. (Thanks to Judah Levine.)
17+
18+
Commentary now also uses characters from the set –‘’“”•≤ as this can be useful
19+
and should work with current applications. This also affects data in
20+
iso3166.tab and zone1970.tab, which now contain strings like “Côte d’Ivoire”
21+
instead of “Côte d'Ivoire”.
22+
23+
---
24+
125
# Version 2025.2
226
Upstream version 2025b released 2025-03-22T20:40:46+00:00
327

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025.2
1+
2025.3

news.d/2025c.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Version 2025.3
2+
Upstream version 2025c released 2025-12-10T22:42:37+00:00
3+
4+
## Briefly:
5+
6+
Several code changes for compatibility with FreeBSD.
7+
8+
## Changes to past timestamps
9+
10+
Baja California agreed with California’s DST rules in 1953 and in 1961 through
11+
1975, instead of observing standard time all year. (Thanks to Alois Treindl.)
12+
13+
## Changes to commentary
14+
15+
The leapseconds file contains commentary about the IERS and NIST last-modified
16+
and expiration timestamps for leap second data. (Thanks to Judah Levine.)
17+
18+
Commentary now also uses characters from the set –‘’“”•≤ as this can be useful
19+
and should work with current applications. This also affects data in
20+
iso3166.tab and zone1970.tab, which now contain strings like “Côte d’Ivoire”
21+
instead of “Côte d'Ivoire”.

src/tzdata/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# IANA versions like 2020a are not valid PEP 440 identifiers; the recommended
22
# way to translate the version is to use YYYY.n where `n` is a 0-based index.
3-
__version__ = "2025.2"
3+
__version__ = "2025.3"
44

55
# This exposes the original IANA version number.
6-
IANA_VERSION = "2025b"
6+
IANA_VERSION = "2025c"
288 Bytes
Binary file not shown.
288 Bytes
Binary file not shown.
288 Bytes
Binary file not shown.
288 Bytes
Binary file not shown.

src/tzdata/zoneinfo/iso3166.tab

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@
33
# This file is in the public domain, so clarified as of
44
# 2009-05-17 by Arthur David Olson.
55
#
6-
# From Paul Eggert (2023-09-06):
6+
# From Paul Eggert (2025-07-01):
77
# This file contains a table of two-letter country codes. Columns are
8-
# separated by a single tab. Lines beginning with '#' are comments.
8+
# separated by a single tab. Lines beginning with ‘#’ are comments.
99
# All text uses UTF-8 encoding. The columns of the table are as follows:
1010
#
1111
# 1. ISO 3166-1 alpha-2 country code, current as of
12-
# ISO/TC 46 N1108 (2023-04-05). See: ISO/TC 46 Documents
12+
# ISO/TC 46 N1127 (2024-02-29). See: ISO/TC 46 Documents
1313
# https://www.iso.org/committee/48750.html?view=documents
1414
# 2. The usual English name for the coded region. This sometimes
1515
# departs from ISO-listed names, sometimes so that sorted subsets
16-
# of names are useful (e.g., "Samoa (American)" and "Samoa
17-
# (western)" rather than "American Samoa" and "Samoa"),
16+
# of names are useful (e.g., Samoa (American) and Samoa
17+
# (western) rather than American Samoa and Samoa),
1818
# sometimes to avoid confusion among non-experts (e.g.,
19-
# "Czech Republic" and "Turkey" rather than "Czechia" and "Türkiye"),
20-
# and sometimes to omit needless detail or churn (e.g., "Netherlands"
21-
# rather than "Netherlands (the)" or "Netherlands (Kingdom of the)").
19+
# Czech Republic and Turkey rather than Czechia and Türkiye),
20+
# and sometimes to omit needless detail or churn (e.g., Netherlands
21+
# rather than Netherlands (the) or Netherlands (Kingdom of the)).
2222
#
2323
# The table is sorted by country code.
2424
#
@@ -71,7 +71,7 @@ CD Congo (Dem. Rep.)
7171
CF Central African Rep.
7272
CG Congo (Rep.)
7373
CH Switzerland
74-
CI Côte d'Ivoire
74+
CI Côte dIvoire
7575
CK Cook Islands
7676
CL Chile
7777
CM Cameroon

src/tzdata/zoneinfo/leapseconds

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
# This file is generated automatically from the data in the public-domain
66
# NIST/IERS format leap-seconds.list file, which can be copied from
77
# <https://hpiers.obspm.fr/iers/bul/bulc/ntp/leap-seconds.list>
8-
# or, in a variant with different comments, from
8+
# or via a less-secure protocol and with different comments and
9+
# less volatile last-modified and expiration timestamps, from
910
# <ftp://ftp.boulder.nist.gov/pub/time/leap-seconds.list>.
1011
# For more about leap-seconds.list, please see
1112
# The NTP Timescale and Leap Seconds
@@ -69,11 +70,17 @@ Leap 2016 Dec 31 23:59:60 + S
6970
# Any additional leap seconds will come after this.
7071
# This Expires line is commented out for now,
7172
# so that pre-2020a zic implementations do not reject this file.
72-
#Expires 2025 Dec 28 00:00:00
73+
#Expires 2026 Jun 28 00:00:00
7374

74-
# POSIX timestamps for the data in this file:
75-
#updated 1736208000 (2025-01-07 00:00:00 UTC)
76-
#expires 1766880000 (2025-12-28 00:00:00 UTC)
75+
# Here are POSIX timestamps for the data in this file.
76+
# "#updated" gives the last time the leap seconds data changed
77+
# or, if this file was derived from the IERS leap-seconds.list,
78+
# the last time that file changed in any way.
79+
# "#expires" gives the first time this file might be wrong;
80+
# if this file was derived from the IERS leap-seconds.list,
81+
# this is typically a bit less than one year after "updated".
82+
#updated 1751846400 (2025-07-07 00:00:00 UTC)
83+
#expires 1782604800 (2026-06-28 00:00:00 UTC)
7784

7885
# Updated through IERS Bulletin C (https://hpiers.obspm.fr/iers/bul/bulc/bulletinc.dat)
79-
# File expires on 28 December 2025
86+
# File expires on 28 June 2026

0 commit comments

Comments
 (0)