xref: /freebsd/contrib/tzcode/NEWS (revision bc42155199b5b0b479311e05b07aee7f6f9c5172)
1*bc421551SDag-Erling SmørgravNews for the tz database
2*bc421551SDag-Erling Smørgrav
3*bc421551SDag-Erling SmørgravRelease 2022g - 2022-11-29 08:58:31 -0800
4*bc421551SDag-Erling Smørgrav
5*bc421551SDag-Erling Smørgrav  Briefly:
6*bc421551SDag-Erling Smørgrav    The northern edge of Chihuahua changes to US timekeeping.
7*bc421551SDag-Erling Smørgrav    Much of Greenland stops changing clocks after March 2023.
8*bc421551SDag-Erling Smørgrav    Fix some pre-1996 timestamps in northern Canada.
9*bc421551SDag-Erling Smørgrav    C89 is now deprecated; please use C99 or later.
10*bc421551SDag-Erling Smørgrav    Portability fixes for AIX, libintl, MS-Windows, musl, z/OS
11*bc421551SDag-Erling Smørgrav    In C code, use more C23 features if available.
12*bc421551SDag-Erling Smørgrav    C23 timegm now supported by default
13*bc421551SDag-Erling Smørgrav    Fixes for unlikely integer overflows
14*bc421551SDag-Erling Smørgrav
15*bc421551SDag-Erling Smørgrav  Changes to future timestamps
16*bc421551SDag-Erling Smørgrav
17*bc421551SDag-Erling Smørgrav    In the Mexican state of Chihuahua, the border strip near the US
18*bc421551SDag-Erling Smørgrav    will change to agree with nearby US locations on 2022-11-30.
19*bc421551SDag-Erling Smørgrav    The strip's western part, represented by Ciudad Juárez, switches
20*bc421551SDag-Erling Smørgrav    from -06 all year to -07/-06 with US DST rules, like El Paso, TX.
21*bc421551SDag-Erling Smørgrav    The eastern part, represented by Ojinaga, will observe US DST next
22*bc421551SDag-Erling Smørgrav    year, like Presidio, TX.  (Thanks to Heitor David Pinto.)
23*bc421551SDag-Erling Smørgrav    A new Zone America/Ciudad_Juarez splits from America/Ojinaga.
24*bc421551SDag-Erling Smørgrav
25*bc421551SDag-Erling Smørgrav    Much of Greenland, represented by America/Nuuk, stops observing
26*bc421551SDag-Erling Smørgrav    winter time after March 2023, so its daylight saving time becomes
27*bc421551SDag-Erling Smørgrav    standard time.  (Thanks to Jonas Nyrup and Jürgen Appel.)
28*bc421551SDag-Erling Smørgrav
29*bc421551SDag-Erling Smørgrav  Changes to past timestamps
30*bc421551SDag-Erling Smørgrav
31*bc421551SDag-Erling Smørgrav    Changes for pre-1996 northern Canada (thanks to Chris Walton):
32*bc421551SDag-Erling Smørgrav
33*bc421551SDag-Erling Smørgrav      Merge America/Iqaluit and America/Pangnirtung into the former,
34*bc421551SDag-Erling Smørgrav      with a backward compatibility link for the latter name.
35*bc421551SDag-Erling Smørgrav      There is no good evidence the two locations differ since 1970.
36*bc421551SDag-Erling Smørgrav      This change affects pre-1996 America/Pangnirtung timestamps.
37*bc421551SDag-Erling Smørgrav
38*bc421551SDag-Erling Smørgrav      Cambridge Bay, Inuvik, Iqaluit, Rankin Inlet, Resolute and
39*bc421551SDag-Erling Smørgrav      Yellowknife did not observe DST in 1965, and did observe DST
40*bc421551SDag-Erling Smørgrav      from 1972 through 1979.
41*bc421551SDag-Erling Smørgrav
42*bc421551SDag-Erling Smørgrav      Whitehorse moved from -09 to -08 on 1966-02-27, not 1967-05-28.
43*bc421551SDag-Erling Smørgrav
44*bc421551SDag-Erling Smørgrav    Colombia's 1993 fallback was 02-06 24:00, not 04-04 00:00.
45*bc421551SDag-Erling Smørgrav    (Thanks to Alois Treindl.)
46*bc421551SDag-Erling Smørgrav
47*bc421551SDag-Erling Smørgrav    Singapore's 1981-12-31 change was at 16:00 UTC (23:30 local time),
48*bc421551SDag-Erling Smørgrav    not 24:00 local time.  (Thanks to Geoff Clare via Robert Elz.)
49*bc421551SDag-Erling Smørgrav
50*bc421551SDag-Erling Smørgrav  Changes to code
51*bc421551SDag-Erling Smørgrav
52*bc421551SDag-Erling Smørgrav    Although tzcode still works with C89, bugs found in recent routine
53*bc421551SDag-Erling Smørgrav    maintenance indicate that bitrot has set in and that in practice
54*bc421551SDag-Erling Smørgrav    C89 is no longer used to build tzcode.  As it is a maintenance
55*bc421551SDag-Erling Smørgrav    burden, support for C89 is planned to be removed soon.  Instead,
56*bc421551SDag-Erling Smørgrav    please use compilers compatible with C99, C11, C17, or C23.
57*bc421551SDag-Erling Smørgrav
58*bc421551SDag-Erling Smørgrav    timegm, which tzcode implemented in 1989, will finally be
59*bc421551SDag-Erling Smørgrav    standardized 34 years later as part of C23, so timegm is now
60*bc421551SDag-Erling Smørgrav    supported even if STD_INSPIRED is not defined.
61*bc421551SDag-Erling Smørgrav
62*bc421551SDag-Erling Smørgrav    Fix bug in zdump's tzalloc emulation on hosts that lack tm_zone.
63*bc421551SDag-Erling Smørgrav    (Problem reported by Đoàn Trần Công Danh.)
64*bc421551SDag-Erling Smørgrav
65*bc421551SDag-Erling Smørgrav    Fix bug in zic on hosts where malloc(0) yields NULL on success.
66*bc421551SDag-Erling Smørgrav    (Problem reported by Tim McBrayer for AIX 6.1.)
67*bc421551SDag-Erling Smørgrav
68*bc421551SDag-Erling Smørgrav    Fix zic configuration to avoid linkage failures on some platforms.
69*bc421551SDag-Erling Smørgrav    (Problems reported by Gilmore Davidson and Igor Ivanov.)
70*bc421551SDag-Erling Smørgrav
71*bc421551SDag-Erling Smørgrav    Work around MS-Windows nmake incompatibility with POSIX.
72*bc421551SDag-Erling Smørgrav    (Problem reported by Manuela Friedrich.)
73*bc421551SDag-Erling Smørgrav
74*bc421551SDag-Erling Smørgrav    Port mktime and strftime to debugging platforms where accessing
75*bc421551SDag-Erling Smørgrav    uninitialized data has undefined behavior (strftime problem
76*bc421551SDag-Erling Smørgrav    reported by Robert Elz).
77*bc421551SDag-Erling Smørgrav
78*bc421551SDag-Erling Smørgrav    Check more carefully for unlikely integer overflows, preferring
79*bc421551SDag-Erling Smørgrav    C23 <stdckdint.h> to overflow checking by hand, as the latter has
80*bc421551SDag-Erling Smørgrav    had obscure bugs.
81*bc421551SDag-Erling Smørgrav
82*bc421551SDag-Erling Smørgrav  Changes to build procedure
83*bc421551SDag-Erling Smørgrav
84*bc421551SDag-Erling Smørgrav    New Makefile rule check_mild that skips checking whether Link
85*bc421551SDag-Erling Smørgrav    lines are in the file 'backward'.  (Inspired by a suggestion from
86*bc421551SDag-Erling Smørgrav    Stephen Colebourne.)
87*bc421551SDag-Erling Smørgrav
88*bc421551SDag-Erling Smørgrav
89*bc421551SDag-Erling SmørgravRelease 2022f - 2022-10-28 18:04:57 -0700
90*bc421551SDag-Erling Smørgrav
91*bc421551SDag-Erling Smørgrav  Briefly:
92*bc421551SDag-Erling Smørgrav    Mexico will no longer observe DST except near the US border.
93*bc421551SDag-Erling Smørgrav    Chihuahua moves to year-round -06 on 2022-10-30.
94*bc421551SDag-Erling Smørgrav    Fiji no longer observes DST.
95*bc421551SDag-Erling Smørgrav    Move links to 'backward'.
96*bc421551SDag-Erling Smørgrav    In vanguard form, GMT is now a Zone and Etc/GMT a link.
97*bc421551SDag-Erling Smørgrav    zic now supports links to links, and vanguard form uses this.
98*bc421551SDag-Erling Smørgrav    Simplify four Ontario zones.
99*bc421551SDag-Erling Smørgrav    Fix a Y2438 bug when reading TZif data.
100*bc421551SDag-Erling Smørgrav    Enable 64-bit time_t on 32-bit glibc platforms.
101*bc421551SDag-Erling Smørgrav    Omit large-file support when no longer needed.
102*bc421551SDag-Erling Smørgrav    In C code, use some C23 features if available.
103*bc421551SDag-Erling Smørgrav    Remove no-longer-needed workaround for Qt bug 53071.
104*bc421551SDag-Erling Smørgrav
105*bc421551SDag-Erling Smørgrav  Changes to future timestamps
106*bc421551SDag-Erling Smørgrav
107*bc421551SDag-Erling Smørgrav    Mexico will no longer observe DST after 2022, except for areas
108*bc421551SDag-Erling Smørgrav    near the US border that continue to observe US DST rules.
109*bc421551SDag-Erling Smørgrav    On 2022-10-30 at 02:00 the Mexican state of Chihuahua moves
110*bc421551SDag-Erling Smørgrav    from -07 (-06 with DST) to year-round -06, thus not changing
111*bc421551SDag-Erling Smørgrav    its clocks that day.  The new law states that Chihuahua
112*bc421551SDag-Erling Smørgrav    near the US border no longer observes US DST.
113*bc421551SDag-Erling Smørgrav    (Thanks to gera for the heads-up about Chihuahua.)
114*bc421551SDag-Erling Smørgrav
115*bc421551SDag-Erling Smørgrav    Fiji will not observe DST in 2022/3.  (Thanks to Shalvin Narayan.)
116*bc421551SDag-Erling Smørgrav    For now, assume DST is suspended indefinitely.
117*bc421551SDag-Erling Smørgrav
118*bc421551SDag-Erling Smørgrav  Changes to data
119*bc421551SDag-Erling Smørgrav
120*bc421551SDag-Erling Smørgrav    Move links to 'backward' to ease and simplify link maintenance.
121*bc421551SDag-Erling Smørgrav    This affects generated data only if you use 'make BACKWARD='.
122*bc421551SDag-Erling Smørgrav
123*bc421551SDag-Erling Smørgrav    GMT is now a Zone and Etc/GMT a link instead of vice versa,
124*bc421551SDag-Erling Smørgrav    as GMT is needed for leap second support whereas Etc/GMT is not.
125*bc421551SDag-Erling Smørgrav    However, this change exposes a bug in TZUpdater 2.3.2 so it is
126*bc421551SDag-Erling Smørgrav    present only in vanguard form for now.
127*bc421551SDag-Erling Smørgrav
128*bc421551SDag-Erling Smørgrav    Vanguard form now uses links to links, as zic now supports this.
129*bc421551SDag-Erling Smørgrav
130*bc421551SDag-Erling Smørgrav  Changes to past timestamps
131*bc421551SDag-Erling Smørgrav
132*bc421551SDag-Erling Smørgrav    Simplify four Ontario zones, as most of the post-1970 differences
133*bc421551SDag-Erling Smørgrav    seem to have been imaginary.  (Problem reported by Chris Walton.)
134*bc421551SDag-Erling Smørgrav    Move America/Nipigon, America/Rainy_River, and America/Thunder_Bay
135*bc421551SDag-Erling Smørgrav    to 'backzone'; backward-compatibility links still work, albeit
136*bc421551SDag-Erling Smørgrav    with some different timestamps before November 2005.
137*bc421551SDag-Erling Smørgrav
138*bc421551SDag-Erling Smørgrav  Changes to code
139*bc421551SDag-Erling Smørgrav
140*bc421551SDag-Erling Smørgrav    zic now supports links to links regardless of input line order.
141*bc421551SDag-Erling Smørgrav    For example, if Australia/Sydney is a Zone, the lines
142*bc421551SDag-Erling Smørgrav      Link Australia/Canberra Australia/ACT
143*bc421551SDag-Erling Smørgrav      Link Australia/Sydney Australia/Canberra
144*bc421551SDag-Erling Smørgrav    now work correctly, even though the shell commands
145*bc421551SDag-Erling Smørgrav      ln Australia/Canberra Australia/ACT
146*bc421551SDag-Erling Smørgrav      ln Australia/Sydney Australia/Canberra
147*bc421551SDag-Erling Smørgrav    would fail because the first command attempts to use a link
148*bc421551SDag-Erling Smørgrav    Australia/Canberra that does not exist until after the second
149*bc421551SDag-Erling Smørgrav    command is executed.  Previously, zic had unspecified behavior if
150*bc421551SDag-Erling Smørgrav    a Link line's target was another link, and zic often misbehaved if
151*bc421551SDag-Erling Smørgrav    a Link line's target was a later Link line.
152*bc421551SDag-Erling Smørgrav
153*bc421551SDag-Erling Smørgrav    Fix line number in zic's diagnostic for a link to a link.
154*bc421551SDag-Erling Smørgrav
155*bc421551SDag-Erling Smørgrav    Fix a bug that caused localtime to mishandle timestamps starting
156*bc421551SDag-Erling Smørgrav    in the year 2438 when reading data generated by 'zic -b fat' when
157*bc421551SDag-Erling Smørgrav    distant-future DST transitions occur at times given in standard
158*bc421551SDag-Erling Smørgrav    time or in UT, not the usual case of local time.  This occurs when
159*bc421551SDag-Erling Smørgrav    the corresponding .zi Rule lines specify DST transitions with TO
160*bc421551SDag-Erling Smørgrav    columns of 'max' and AT columns that end in 's' or 'u'.  The
161*bc421551SDag-Erling Smørgrav    number 2438 comes from the 32-bit limit in the year 2038, plus the
162*bc421551SDag-Erling Smørgrav    400-year Gregorian cycle.  (Problem reported by Bradley White.)
163*bc421551SDag-Erling Smørgrav
164*bc421551SDag-Erling Smørgrav    On glibc 2.34 and later, which optionally supports 64-bit time_t
165*bc421551SDag-Erling Smørgrav    on platforms like x86 where time_t was traditionally 32 bits,
166*bc421551SDag-Erling Smørgrav    default time_t to 64 instead of 32 bits.  This lets functions like
167*bc421551SDag-Erling Smørgrav    localtime support timestamps after the year 2038, and fixes
168*bc421551SDag-Erling Smørgrav    year-2038 problems in zic when accessing files dated after 2038.
169*bc421551SDag-Erling Smørgrav    To continue to limit time_t to 32 bits on these platforms, use
170*bc421551SDag-Erling Smørgrav    "make CFLAGS='-D_TIME_BITS=32'".
171*bc421551SDag-Erling Smørgrav
172*bc421551SDag-Erling Smørgrav    In C code, do not enable large-file support on platforms like AIX
173*bc421551SDag-Erling Smørgrav    and macOS that no longer need it now that tzcode does not use
174*bc421551SDag-Erling Smørgrav    off_t or related functions like 'stat'.  Large-file support is
175*bc421551SDag-Erling Smørgrav    still enabled by default on GNU/Linux, as it is needed for 64-bit
176*bc421551SDag-Erling Smørgrav    time_t support.
177*bc421551SDag-Erling Smørgrav
178*bc421551SDag-Erling Smørgrav    In C code, prefer C23 keywords to pre-C23 macros for alignof,
179*bc421551SDag-Erling Smørgrav    bool, false, and true.  Also, use the following C23 features if
180*bc421551SDag-Erling Smørgrav    available: __has_include, unreachable.
181*bc421551SDag-Erling Smørgrav
182*bc421551SDag-Erling Smørgrav    zic no longer works around Qt bug 53071, as the relevant Qt
183*bc421551SDag-Erling Smørgrav    releases have been out of support since 2019.  This change affects
184*bc421551SDag-Erling Smørgrav    only fat TZif files, as thin files never had the workaround.
185*bc421551SDag-Erling Smørgrav
186*bc421551SDag-Erling Smørgrav    zdump no longer modifies the environ vector when compiled on
187*bc421551SDag-Erling Smørgrav    platforms lacking tm_zone or when compiled with -DUSE_LTZ=0.
188*bc421551SDag-Erling Smørgrav    This avoid undefined behavior on POSIX platforms.
189*bc421551SDag-Erling Smørgrav
190*bc421551SDag-Erling Smørgrav
191*bc421551SDag-Erling SmørgravRelease 2022e - 2022-10-11 11:13:02 -0700
192*bc421551SDag-Erling Smørgrav
193*bc421551SDag-Erling Smørgrav  Briefly:
194*bc421551SDag-Erling Smørgrav    Jordan and Syria switch from +02/+03 with DST to year-round +03.
195*bc421551SDag-Erling Smørgrav
196*bc421551SDag-Erling Smørgrav  Changes to future timestamps
197*bc421551SDag-Erling Smørgrav
198*bc421551SDag-Erling Smørgrav    Jordan and Syria are abandoning the DST regime and are changing to
199*bc421551SDag-Erling Smørgrav    permanent +03, so they will not fall back from +03 to +02 on
200*bc421551SDag-Erling Smørgrav    2022-10-28.  (Thanks to Steffen Thorsen and Issam Al-Zuwairi.)
201*bc421551SDag-Erling Smørgrav
202*bc421551SDag-Erling Smørgrav  Changes to past timestamps
203*bc421551SDag-Erling Smørgrav
204*bc421551SDag-Erling Smørgrav    On 1922-01-01 Tijuana adopted standard time at 00:00, not 01:00.
205*bc421551SDag-Erling Smørgrav
206*bc421551SDag-Erling Smørgrav  Changes to past time zone abbreviations and DST flags
207*bc421551SDag-Erling Smørgrav
208*bc421551SDag-Erling Smørgrav    The temporary advancement of clocks in central Mexico in summer
209*bc421551SDag-Erling Smørgrav    1931 is now treated as daylight saving time, instead of as two
210*bc421551SDag-Erling Smørgrav    changes to standard time.
211*bc421551SDag-Erling Smørgrav
212*bc421551SDag-Erling Smørgrav
213*bc421551SDag-Erling SmørgravRelease 2022d - 2022-09-23 12:02:57 -0700
214*bc421551SDag-Erling Smørgrav
215*bc421551SDag-Erling Smørgrav  Briefly:
216*bc421551SDag-Erling Smørgrav    Palestine transitions are now Saturdays at 02:00.
217*bc421551SDag-Erling Smørgrav    Simplify three Ukraine zones into one.
218*bc421551SDag-Erling Smørgrav
219*bc421551SDag-Erling Smørgrav  Changes to future timestamps
220*bc421551SDag-Erling Smørgrav
221*bc421551SDag-Erling Smørgrav    Palestine now springs forward and falls back at 02:00 on the
222*bc421551SDag-Erling Smørgrav    first Saturday on or after March 24 and October 24, respectively.
223*bc421551SDag-Erling Smørgrav    This means 2022 falls back 10-29 at 02:00, not 10-28 at 01:00.
224*bc421551SDag-Erling Smørgrav    (Thanks to Heba Hamad.)
225*bc421551SDag-Erling Smørgrav
226*bc421551SDag-Erling Smørgrav  Changes to past timestamps
227*bc421551SDag-Erling Smørgrav
228*bc421551SDag-Erling Smørgrav    Simplify three Ukraine zones to one, since the post-1970
229*bc421551SDag-Erling Smørgrav    differences seem to have been imaginary.  Move Europe/Uzhgorod and
230*bc421551SDag-Erling Smørgrav    Europe/Zaporozhye to 'backzone'; backward-compatibility links
231*bc421551SDag-Erling Smørgrav    still work, albeit with different timestamps before October 1991.
232*bc421551SDag-Erling Smørgrav
233*bc421551SDag-Erling Smørgrav
234*bc421551SDag-Erling SmørgravRelease 2022c - 2022-08-15 17:47:18 -0700
235*bc421551SDag-Erling Smørgrav
236*bc421551SDag-Erling Smørgrav  Briefly:
237*bc421551SDag-Erling Smørgrav    Work around awk bug in FreeBSD, macOS, etc.
238*bc421551SDag-Erling Smørgrav    Improve tzselect on intercontinental Zones.
239*bc421551SDag-Erling Smørgrav
240*bc421551SDag-Erling Smørgrav  Changes to code
241*bc421551SDag-Erling Smørgrav
242*bc421551SDag-Erling Smørgrav    Work around a bug in onetrueawk that broke commands like
243*bc421551SDag-Erling Smørgrav    'make traditional_tarballs' on FreeBSD, macOS, etc.
244*bc421551SDag-Erling Smørgrav    (Problem reported by Deborah Goldsmith.)
245*bc421551SDag-Erling Smørgrav
246*bc421551SDag-Erling Smørgrav    Add code to tzselect that uses experimental structured comments in
247*bc421551SDag-Erling Smørgrav    zone1970.tab to clarify whether Zones like Africa/Abidjan and
248*bc421551SDag-Erling Smørgrav    Europe/Istanbul cross continent or ocean boundaries.
249*bc421551SDag-Erling Smørgrav    (Inspired by a problem reported by Peter Krefting.)
250*bc421551SDag-Erling Smørgrav
251*bc421551SDag-Erling Smørgrav    Fix bug with 'zic -d /a/b/c' when /a is unwritable but the
252*bc421551SDag-Erling Smørgrav    directory /a/b already exists.
253*bc421551SDag-Erling Smørgrav
254*bc421551SDag-Erling Smørgrav    Remove zoneinfo2tdf.pl, as it was unused and triggered false
255*bc421551SDag-Erling Smørgrav    malware alarms on some email servers.
256*bc421551SDag-Erling Smørgrav
257*bc421551SDag-Erling Smørgrav
258*bc421551SDag-Erling SmørgravRelease 2022b - 2022-08-10 15:38:32 -0700
259*bc421551SDag-Erling Smørgrav
260*bc421551SDag-Erling Smørgrav  Briefly:
261*bc421551SDag-Erling Smørgrav    Chile's DST is delayed by a week in September 2022.
262*bc421551SDag-Erling Smørgrav    Iran no longer observes DST after 2022.
263*bc421551SDag-Erling Smørgrav    Rename Europe/Kiev to Europe/Kyiv.
264*bc421551SDag-Erling Smørgrav    New zic -R option
265*bc421551SDag-Erling Smørgrav    Vanguard form now uses %z.
266*bc421551SDag-Erling Smørgrav    Finish moving duplicate-since-1970 zones to 'backzone'.
267*bc421551SDag-Erling Smørgrav    New build option PACKRATLIST
268*bc421551SDag-Erling Smørgrav    New tailored_tarballs target, replacing rearguard_tarballs
269*bc421551SDag-Erling Smørgrav
270*bc421551SDag-Erling Smørgrav  Changes to future timestamps
271*bc421551SDag-Erling Smørgrav
272*bc421551SDag-Erling Smørgrav    Chile's 2022 DST start is delayed from September 4 to September 11.
273*bc421551SDag-Erling Smørgrav    (Thanks to Juan Correa.)
274*bc421551SDag-Erling Smørgrav
275*bc421551SDag-Erling Smørgrav    Iran plans to stop observing DST permanently, after it falls back
276*bc421551SDag-Erling Smørgrav    on 2022-09-21.  (Thanks to Ali Mirjamali.)
277*bc421551SDag-Erling Smørgrav
278*bc421551SDag-Erling Smørgrav  Changes to past timestamps
279*bc421551SDag-Erling Smørgrav
280*bc421551SDag-Erling Smørgrav    Finish moving to 'backzone' the location-based zones whose
281*bc421551SDag-Erling Smørgrav    timestamps since 1970 are duplicates; adjust links accordingly.
282*bc421551SDag-Erling Smørgrav    This change ordinarily affects only pre-1970 timestamps, and with
283*bc421551SDag-Erling Smørgrav    the new PACKRATLIST option it does not affect any timestamps.
284*bc421551SDag-Erling Smørgrav    In this round the affected zones are Antarctica/Vostok,
285*bc421551SDag-Erling Smørgrav    Asia/Brunei, Asia/Kuala_Lumpur, Atlantic/Reykjavik,
286*bc421551SDag-Erling Smørgrav    Europe/Amsterdam, Europe/Copenhagen, Europe/Luxembourg,
287*bc421551SDag-Erling Smørgrav    Europe/Monaco, Europe/Oslo, Europe/Stockholm, Indian/Christmas,
288*bc421551SDag-Erling Smørgrav    Indian/Cocos, Indian/Kerguelen, Indian/Mahe, Indian/Reunion,
289*bc421551SDag-Erling Smørgrav    Pacific/Chuuk, Pacific/Funafuti, Pacific/Majuro, Pacific/Pohnpei,
290*bc421551SDag-Erling Smørgrav    Pacific/Wake and Pacific/Wallis, and the affected links are
291*bc421551SDag-Erling Smørgrav    Arctic/Longyearbyen, Atlantic/Jan_Mayen, Iceland, Pacific/Ponape,
292*bc421551SDag-Erling Smørgrav    Pacific/Truk, and Pacific/Yap.
293*bc421551SDag-Erling Smørgrav
294*bc421551SDag-Erling Smørgrav    From fall 1994 through fall 1995, Shanks wrote that Crimea's
295*bc421551SDag-Erling Smørgrav    DST transitions were at 02:00 standard time, not at 00:00.
296*bc421551SDag-Erling Smørgrav    (Thanks to Michael Deckers.)
297*bc421551SDag-Erling Smørgrav
298*bc421551SDag-Erling Smørgrav    Iran adopted standard time in 1935, not 1946.  In 1977 it observed
299*bc421551SDag-Erling Smørgrav    DST from 03-21 23:00 to 10-20 24:00; its 1978 transitions were on
300*bc421551SDag-Erling Smørgrav    03-24 and 08-05, not 03-20 and 10-20; and its spring 1979
301*bc421551SDag-Erling Smørgrav    transition was on 05-27, not 03-21.
302*bc421551SDag-Erling Smørgrav    (Thanks to Roozbeh Pournader and Francis Santoni.)
303*bc421551SDag-Erling Smørgrav
304*bc421551SDag-Erling Smørgrav    Chile's observance of -04 from 1946-08-29 through 1947-03-31 was
305*bc421551SDag-Erling Smørgrav    considered DST, not standard time.  Santiago and environs had moved
306*bc421551SDag-Erling Smørgrav    their clocks back to rejoin the rest of mainland Chile; put this
307*bc421551SDag-Erling Smørgrav    change at the end of 1946-08-28.  (Thanks to Michael Deckers.)
308*bc421551SDag-Erling Smørgrav
309*bc421551SDag-Erling Smørgrav    Some old, small clock transitions have been removed, as people at
310*bc421551SDag-Erling Smørgrav    the time did not change their clocks.  This affects Asia/Hong_Kong
311*bc421551SDag-Erling Smørgrav    in 1904, Asia/Ho_Chi_Minh in 1906, and Europe/Dublin in 1880.
312*bc421551SDag-Erling Smørgrav
313*bc421551SDag-Erling Smørgrav  Changes to zone name
314*bc421551SDag-Erling Smørgrav
315*bc421551SDag-Erling Smørgrav    Rename Europe/Kiev to Europe/Kyiv, as "Kyiv" is more common in
316*bc421551SDag-Erling Smørgrav    English now.  Spelling of other names in Ukraine has not yet
317*bc421551SDag-Erling Smørgrav    demonstrably changed in common English practice so for now these
318*bc421551SDag-Erling Smørgrav    names retain old spellings, as in other countries (e.g.,
319*bc421551SDag-Erling Smørgrav    Europe/Prague not "Praha", and Europe/Sofia not "Sofiya").
320*bc421551SDag-Erling Smørgrav
321*bc421551SDag-Erling Smørgrav  Changes to code
322*bc421551SDag-Erling Smørgrav
323*bc421551SDag-Erling Smørgrav    zic has a new option '-R @N' to output explicit transitions < N.
324*bc421551SDag-Erling Smørgrav    (Need suggested by Almaz Mingaleev.)
325*bc421551SDag-Erling Smørgrav
326*bc421551SDag-Erling Smørgrav    'zic -r @N' no longer outputs bad data when N < first transition.
327*bc421551SDag-Erling Smørgrav    (Problem introduced in 2021d and reported by Peter Krefting.)
328*bc421551SDag-Erling Smørgrav
329*bc421551SDag-Erling Smørgrav    zic now checks its input for NUL bytes and unterminated lines, and
330*bc421551SDag-Erling Smørgrav    now supports input line lengths up to 2048 (not 512) bytes.
331*bc421551SDag-Erling Smørgrav
332*bc421551SDag-Erling Smørgrav    gmtime and related code now use the abbreviation "UTC" not "GMT".
333*bc421551SDag-Erling Smørgrav    POSIX is being revised to require this.
334*bc421551SDag-Erling Smørgrav
335*bc421551SDag-Erling Smørgrav    When tzset and related functions set vestigial static variables
336*bc421551SDag-Erling Smørgrav    like tzname, they now prefer specified timestamps to unspecified ones.
337*bc421551SDag-Erling Smørgrav    (Problem reported by Almaz Mingaleev.)
338*bc421551SDag-Erling Smørgrav
339*bc421551SDag-Erling Smørgrav    zic no longer complains "can't determine time zone abbreviation to
340*bc421551SDag-Erling Smørgrav    use just after until time" when a transition to a new standard
341*bc421551SDag-Erling Smørgrav    time occurs simultaneously with the first DST fallback transition.
342*bc421551SDag-Erling Smørgrav
343*bc421551SDag-Erling Smørgrav  Changes to build procedure
344*bc421551SDag-Erling Smørgrav
345*bc421551SDag-Erling Smørgrav    Source data in vanguard form now uses the %z notation, introduced
346*bc421551SDag-Erling Smørgrav    in release 2015f.  For example, for America/Sao_Paulo vanguard
347*bc421551SDag-Erling Smørgrav    form contains the zone continuation line "-3:00 Brazil %z", which
348*bc421551SDag-Erling Smørgrav    is simpler and more reliable than the line "-3:00 Brazil -03/-02"
349*bc421551SDag-Erling Smørgrav    used in main and rearguard forms.  The plan is for the main form
350*bc421551SDag-Erling Smørgrav    to use %z eventually; in the meantime maintainers of zi parsers
351*bc421551SDag-Erling Smørgrav    are encouraged to test the parsers on vanguard.zi.
352*bc421551SDag-Erling Smørgrav
353*bc421551SDag-Erling Smørgrav    The Makefile has a new PACKRATLIST option to select a subset of
354*bc421551SDag-Erling Smørgrav    'backzone'.  For example, 'make PACKRATDATA=backzone
355*bc421551SDag-Erling Smørgrav    PACKRATLIST=zone.tab' now generates TZif files identical to those
356*bc421551SDag-Erling Smørgrav    of the global-tz project.
357*bc421551SDag-Erling Smørgrav
358*bc421551SDag-Erling Smørgrav    The Makefile has a new tailored_tarballs target for generating
359*bc421551SDag-Erling Smørgrav    special-purpose tarballs.  It generalizes and replaces the
360*bc421551SDag-Erling Smørgrav    rearguard_tarballs target and related targets and macros, which
361*bc421551SDag-Erling Smørgrav    are now obsolescent.
362*bc421551SDag-Erling Smørgrav
363*bc421551SDag-Erling Smørgrav    'make install' now defaults LOCALTIME to Factory not GMT,
364*bc421551SDag-Erling Smørgrav    which means the default abbreviation is now "-00" not "GMT".
365*bc421551SDag-Erling Smørgrav
366*bc421551SDag-Erling Smørgrav    Remove the posix_packrat target, marked obsolescent in 2016a.
367*bc421551SDag-Erling Smørgrav
368*bc421551SDag-Erling Smørgrav
369*bc421551SDag-Erling SmørgravRelease 2022a - 2022-03-15 23:02:01 -0700
370*bc421551SDag-Erling Smørgrav
371*bc421551SDag-Erling Smørgrav  Briefly:
372*bc421551SDag-Erling Smørgrav    Palestine will spring forward on 2022-03-27, not -03-26.
373*bc421551SDag-Erling Smørgrav    zdump -v now outputs better failure indications.
374*bc421551SDag-Erling Smørgrav    Bug fixes for code that reads corrupted TZif data.
375*bc421551SDag-Erling Smørgrav
376*bc421551SDag-Erling Smørgrav  Changes to future timestamps
377*bc421551SDag-Erling Smørgrav
378*bc421551SDag-Erling Smørgrav    Palestine will spring forward on 2022-03-27, not 2022-03-26.
379*bc421551SDag-Erling Smørgrav    (Thanks to Heba Hamad.)  Predict future transitions for first
380*bc421551SDag-Erling Smørgrav    Sunday >= March 25.  Additionally, predict fallbacks to be the first
381*bc421551SDag-Erling Smørgrav    Friday on or after October 23, not October's last Friday, to be more
382*bc421551SDag-Erling Smørgrav    consistent with recent practice.  The first differing fallback
383*bc421551SDag-Erling Smørgrav    prediction is on 2025-10-24, not 2025-10-31.
384*bc421551SDag-Erling Smørgrav
385*bc421551SDag-Erling Smørgrav  Changes to past timestamps
386*bc421551SDag-Erling Smørgrav
387*bc421551SDag-Erling Smørgrav    From 1992 through spring 1996, Ukraine's DST transitions were at
388*bc421551SDag-Erling Smørgrav    02:00 standard time, not at 01:00 UTC.  (Thanks to Alois Treindl.)
389*bc421551SDag-Erling Smørgrav
390*bc421551SDag-Erling Smørgrav    Chile's Santiago Mean Time and its LMT precursor have been adjusted
391*bc421551SDag-Erling Smørgrav    eastward by 1 second to align with past and present law.
392*bc421551SDag-Erling Smørgrav
393*bc421551SDag-Erling Smørgrav  Changes to commentary
394*bc421551SDag-Erling Smørgrav
395*bc421551SDag-Erling Smørgrav    Add several references for Chile's 1946/1947 transitions, some of
396*bc421551SDag-Erling Smørgrav    which only affected portions of the country.
397*bc421551SDag-Erling Smørgrav
398*bc421551SDag-Erling Smørgrav  Changes to code
399*bc421551SDag-Erling Smørgrav
400*bc421551SDag-Erling Smørgrav    Fix bug when mktime gets confused by truncated TZif files with
401*bc421551SDag-Erling Smørgrav    unspecified local time.  (Problem reported by Almaz Mingaleev.)
402*bc421551SDag-Erling Smørgrav
403*bc421551SDag-Erling Smørgrav    Fix bug when 32-bit time_t code reads malformed 64-bit TZif data.
404*bc421551SDag-Erling Smørgrav    (Problem reported by Christos Zoulas.)
405*bc421551SDag-Erling Smørgrav
406*bc421551SDag-Erling Smørgrav    When reading a version 2 or later TZif file, the TZif reader now
407*bc421551SDag-Erling Smørgrav    validates the version 1 header and data block only enough to skip
408*bc421551SDag-Erling Smørgrav    over them, as recommended by RFC 8536 section 4.  Also, the TZif
409*bc421551SDag-Erling Smørgrav    reader no longer mistakenly attempts to parse a version 1 TZIf
410*bc421551SDag-Erling Smørgrav    file header as a TZ string.
411*bc421551SDag-Erling Smørgrav
412*bc421551SDag-Erling Smørgrav    zdump -v now outputs "(localtime failed)" and "(gmtime failed)"
413*bc421551SDag-Erling Smørgrav    when local time and UT cannot be determined for a timestamp.
414*bc421551SDag-Erling Smørgrav
415*bc421551SDag-Erling Smørgrav  Changes to build procedure
416*bc421551SDag-Erling Smørgrav
417*bc421551SDag-Erling Smørgrav    Distribution tarballs now use standard POSIX.1-1988 ustar format
418*bc421551SDag-Erling Smørgrav    instead of GNU format.  Although the formats are almost identical
419*bc421551SDag-Erling Smørgrav    for these tarballs, ustar headers' magic fields contain "ustar"
420*bc421551SDag-Erling Smørgrav    instead of "ustar ", and their version fields contain "00" instead
421*bc421551SDag-Erling Smørgrav    of " ".  The two formats are planned to diverge more significantly
422*bc421551SDag-Erling Smørgrav    for tzdb releases after 2242-03-16 12:56:31 UTC, when the ustar
423*bc421551SDag-Erling Smørgrav    format becomes obsolete and the tarballs switch to pax format, an
424*bc421551SDag-Erling Smørgrav    extension of ustar.  For details about these formats, please see
425*bc421551SDag-Erling Smørgrav    "pax - portable archive interchange", IEEE Std 1003.1-2017,
426*bc421551SDag-Erling Smørgrav    <https://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13>.
427*bc421551SDag-Erling Smørgrav
428*bc421551SDag-Erling Smørgrav
429*bc421551SDag-Erling SmørgravRelease 2021e - 2021-10-21 18:41:00 -0700
430*bc421551SDag-Erling Smørgrav
431*bc421551SDag-Erling Smørgrav  Changes to future timestamps
432*bc421551SDag-Erling Smørgrav
433*bc421551SDag-Erling Smørgrav    Palestine will fall back 10-29 (not 10-30) at 01:00.
434*bc421551SDag-Erling Smørgrav    (Thanks to P Chan and Heba Hemad.)
435*bc421551SDag-Erling Smørgrav
436*bc421551SDag-Erling Smørgrav
437*bc421551SDag-Erling SmørgravRelease 2021d - 2021-10-15 13:48:18 -0700
438*bc421551SDag-Erling Smørgrav
439*bc421551SDag-Erling Smørgrav  Briefly:
440*bc421551SDag-Erling Smørgrav    Fiji suspends DST for the 2021/2022 season.
441*bc421551SDag-Erling Smørgrav    'zic -r' marks unspecified timestamps with "-00".
442*bc421551SDag-Erling Smørgrav
443*bc421551SDag-Erling Smørgrav  Changes to future timestamps
444*bc421551SDag-Erling Smørgrav
445*bc421551SDag-Erling Smørgrav    Fiji will suspend observance of DST for the 2021/2022 season.
446*bc421551SDag-Erling Smørgrav    Assume for now that it will return next year.  (Thanks to Jashneel
447*bc421551SDag-Erling Smørgrav    Kumar and P Chan.)
448*bc421551SDag-Erling Smørgrav
449*bc421551SDag-Erling Smørgrav  Changes to code
450*bc421551SDag-Erling Smørgrav
451*bc421551SDag-Erling Smørgrav    'zic -r' now uses "-00" time zone abbreviations for intervals
452*bc421551SDag-Erling Smørgrav    with UT offsets that are unspecified due to -r truncation.
453*bc421551SDag-Erling Smørgrav    This implements a change in draft Internet RFC 8536bis.
454*bc421551SDag-Erling Smørgrav
455*bc421551SDag-Erling Smørgrav
456*bc421551SDag-Erling SmørgravRelease 2021c - 2021-10-01 14:21:49 -0700
457*bc421551SDag-Erling Smørgrav
458*bc421551SDag-Erling Smørgrav  Briefly:
459*bc421551SDag-Erling Smørgrav    Revert most 2021b changes to 'backward'.
460*bc421551SDag-Erling Smørgrav    Fix 'zic -b fat' bug in pre-1970 32-bit data.
461*bc421551SDag-Erling Smørgrav    Fix two Link line typos.
462*bc421551SDag-Erling Smørgrav    Distribute SECURITY file.
463*bc421551SDag-Erling Smørgrav
464*bc421551SDag-Erling Smørgrav    This release is intended as a bugfix release, to fix compatibility
465*bc421551SDag-Erling Smørgrav    problems and typos reported since 2021b was released.
466*bc421551SDag-Erling Smørgrav
467*bc421551SDag-Erling Smørgrav  Changes to Link directives
468*bc421551SDag-Erling Smørgrav
469*bc421551SDag-Erling Smørgrav    Revert almost all of 2021b's changes to the 'backward' file,
470*bc421551SDag-Erling Smørgrav    by moving Link directives back to where they were in 2021a.
471*bc421551SDag-Erling Smørgrav    Although 'zic' doesn't care which source file contains a Link
472*bc421551SDag-Erling Smørgrav    directive, some downstream uses ran into trouble with the move.
473*bc421551SDag-Erling Smørgrav    (Problem reported by Stephen Colebourne for Joda-Time.)
474*bc421551SDag-Erling Smørgrav
475*bc421551SDag-Erling Smørgrav    Fix typo that linked Atlantic/Jan_Mayen to the wrong location
476*bc421551SDag-Erling Smørgrav    (problem reported by Chris Walton).
477*bc421551SDag-Erling Smørgrav
478*bc421551SDag-Erling Smørgrav    Fix 'backzone' typo that linked America/Virgin to the wrong
479*bc421551SDag-Erling Smørgrav    location (problem reported by Michael Deckers).
480*bc421551SDag-Erling Smørgrav
481*bc421551SDag-Erling Smørgrav  Changes to code
482*bc421551SDag-Erling Smørgrav
483*bc421551SDag-Erling Smørgrav    Fix a bug in 'zic -b fat' that caused old timestamps to be
484*bc421551SDag-Erling Smørgrav    mishandled in 32-bit-only readers (problem reported by Daniel
485*bc421551SDag-Erling Smørgrav    Fischer).
486*bc421551SDag-Erling Smørgrav
487*bc421551SDag-Erling Smørgrav  Changes to documentation
488*bc421551SDag-Erling Smørgrav
489*bc421551SDag-Erling Smørgrav    Distribute the SECURITY file (problem reported by Andreas Radke).
490*bc421551SDag-Erling Smørgrav
491*bc421551SDag-Erling Smørgrav
492*bc421551SDag-Erling SmørgravRelease 2021b - 2021-09-24 16:23:00 -0700
493*bc421551SDag-Erling Smørgrav
494*bc421551SDag-Erling Smørgrav  Briefly:
495*bc421551SDag-Erling Smørgrav    Jordan now starts DST on February's last Thursday.
496*bc421551SDag-Erling Smørgrav    Samoa no longer observes DST.
497*bc421551SDag-Erling Smørgrav    Merge more location-based Zones whose timestamps agree since 1970.
498*bc421551SDag-Erling Smørgrav    Move some backward-compatibility links to 'backward'.
499*bc421551SDag-Erling Smørgrav    Rename Pacific/Enderbury to Pacific/Kanton.
500*bc421551SDag-Erling Smørgrav    Correct many pre-1993 transitions in Malawi, Portugal, etc.
501*bc421551SDag-Erling Smørgrav    zic now creates each output file or link atomically.
502*bc421551SDag-Erling Smørgrav    zic -L no longer omits the POSIX TZ string in its output.
503*bc421551SDag-Erling Smørgrav    zic fixes for truncation and leap second table expiration.
504*bc421551SDag-Erling Smørgrav    zic now follows POSIX for TZ strings using all-year DST.
505*bc421551SDag-Erling Smørgrav    Fix some localtime crashes and bugs in obscure cases.
506*bc421551SDag-Erling Smørgrav    zdump -v now outputs more-useful boundary cases.
507*bc421551SDag-Erling Smørgrav    tzfile.5 better matches a draft successor to RFC 8536.
508*bc421551SDag-Erling Smørgrav    A new file SECURITY.
509*bc421551SDag-Erling Smørgrav
510*bc421551SDag-Erling Smørgrav    This release is prompted by recent announcements by Jordan and Samoa.
511*bc421551SDag-Erling Smørgrav    It incorporates many other changes that had accumulated since 2021a.
512*bc421551SDag-Erling Smørgrav    However, it omits most proposed changes that merged all Zones
513*bc421551SDag-Erling Smørgrav    agreeing since 1970, as concerns were raised about doing too many of
514*bc421551SDag-Erling Smørgrav    these changes at once.  It does keeps some of these changes in the
515*bc421551SDag-Erling Smørgrav    interest of making tzdb more equitable one step at a time; see
516*bc421551SDag-Erling Smørgrav    "Merge more location-based Zones" below.
517*bc421551SDag-Erling Smørgrav
518*bc421551SDag-Erling Smørgrav  Changes to future timestamps
519*bc421551SDag-Erling Smørgrav
520*bc421551SDag-Erling Smørgrav    Jordan now starts DST on February's last Thursday.
521*bc421551SDag-Erling Smørgrav    (Thanks to Steffen Thorsen.)
522*bc421551SDag-Erling Smørgrav
523*bc421551SDag-Erling Smørgrav    Samoa no longer observes DST.  (Thanks to Geoffrey D. Bennett.)
524*bc421551SDag-Erling Smørgrav
525*bc421551SDag-Erling Smørgrav  Changes to zone name
526*bc421551SDag-Erling Smørgrav
527*bc421551SDag-Erling Smørgrav    Rename Pacific/Enderbury to Pacific/Kanton.  When we added
528*bc421551SDag-Erling Smørgrav    Enderbury in 1993, we did not know that it is uninhabited and that
529*bc421551SDag-Erling Smørgrav    Kanton (population two dozen) is the only inhabited location in
530*bc421551SDag-Erling Smørgrav    that timezone.  The old name is now a backward-compatibility link.
531*bc421551SDag-Erling Smørgrav
532*bc421551SDag-Erling Smørgrav  Changes to past timestamps
533*bc421551SDag-Erling Smørgrav
534*bc421551SDag-Erling Smørgrav    Correct many pre-1993 transitions, fixing entries originally
535*bc421551SDag-Erling Smørgrav    derived from Shanks, Whitman, and Mundell.  The fixes include:
536*bc421551SDag-Erling Smørgrav      - Barbados: standard time was introduced in 1911, not 1932; and
537*bc421551SDag-Erling Smørgrav	DST was observed in 1942-1944
538*bc421551SDag-Erling Smørgrav      - Cook Islands: In 1899 they switched from east to west of GMT,
539*bc421551SDag-Erling Smørgrav	celebrating Christmas for two days.  They (and Niue) switched
540*bc421551SDag-Erling Smørgrav	to standard time in 1952, not 1901.
541*bc421551SDag-Erling Smørgrav      - Guyana: corrected LMT for Georgetown; the introduction of
542*bc421551SDag-Erling Smørgrav	standard time in 1911, not 1915; and corrections to 1975 and
543*bc421551SDag-Erling Smørgrav	1992 transitions
544*bc421551SDag-Erling Smørgrav      - Kanton: uninhabited before 1937-08-31
545*bc421551SDag-Erling Smørgrav      - Niue: only observed -11:20 from 1952 through 1964, then went to
546*bc421551SDag-Erling Smørgrav        -11 instead of -11:30
547*bc421551SDag-Erling Smørgrav      - Portugal: DST was observed in 1950
548*bc421551SDag-Erling Smørgrav      - Tonga: corrected LMT; the introduction of standard time in 1945,
549*bc421551SDag-Erling Smørgrav        not 1901; and corrections to the transition from +12:20 to +13
550*bc421551SDag-Erling Smørgrav        in 1961, not 1941
551*bc421551SDag-Erling Smørgrav    Additional fixes to entries in the 'backzone' file include:
552*bc421551SDag-Erling Smørgrav      - Enderbury: inhabited only 1860/1885 and 1938-03-06/1942-02-09
553*bc421551SDag-Erling Smørgrav      - The Gambia: 1933 and 1942 transitions
554*bc421551SDag-Erling Smørgrav      - Malawi: several 1911 through 1925 transitions
555*bc421551SDag-Erling Smørgrav      - Sierra Leone: several 1913 through 1941 transitions, and DST
556*bc421551SDag-Erling Smørgrav	was NOT observed in 1957 through 1962
557*bc421551SDag-Erling Smørgrav    (Thanks to P Chan, Michael Deckers, Alexander Krivenyshev and
558*bc421551SDag-Erling Smørgrav    Alois Treindl.)
559*bc421551SDag-Erling Smørgrav
560*bc421551SDag-Erling Smørgrav    Merge more location-based Zones whose timestamps agree since 1970,
561*bc421551SDag-Erling Smørgrav    as pre-1970 timestamps are out of scope.  This is part of a
562*bc421551SDag-Erling Smørgrav    process that has been ongoing since 2013.  This does not affect
563*bc421551SDag-Erling Smørgrav    post-1970 timestamps, and timezone historians who build with 'make
564*bc421551SDag-Erling Smørgrav    PACKRATDATA=backzone' should see no changes to pre-1970 timestamps.
565*bc421551SDag-Erling Smørgrav    When merging, keep the most-populous location's data, and move
566*bc421551SDag-Erling Smørgrav    data for other locations to 'backzone' with a backward
567*bc421551SDag-Erling Smørgrav    link in 'backward'.  For example, move America/Creston data to
568*bc421551SDag-Erling Smørgrav    'backzone' with a link in 'backward' from America/Phoenix because
569*bc421551SDag-Erling Smørgrav    the two timezones' timestamps agree since 1970; this change
570*bc421551SDag-Erling Smørgrav    affects some pre-1968 timestamps in America/Creston because
571*bc421551SDag-Erling Smørgrav    Creston and Phoenix disagreed before 1968.  The affected Zones
572*bc421551SDag-Erling Smørgrav    are Africa/Accra, America/Atikokan, America/Blanc-Sablon,
573*bc421551SDag-Erling Smørgrav    America/Creston, America/Curacao, America/Nassau,
574*bc421551SDag-Erling Smørgrav    America/Port_of_Spain, Antarctica/DumontDUrville, and
575*bc421551SDag-Erling Smørgrav    Antarctica/Syowa.
576*bc421551SDag-Erling Smørgrav
577*bc421551SDag-Erling Smørgrav  Changes to maintenance procedure
578*bc421551SDag-Erling Smørgrav
579*bc421551SDag-Erling Smørgrav    The new file SECURITY covers how to report security-related bugs.
580*bc421551SDag-Erling Smørgrav
581*bc421551SDag-Erling Smørgrav    Several backward-compatibility links have been moved to the
582*bc421551SDag-Erling Smørgrav    'backward' file.  These links, which range from Africa/Addis_Ababa
583*bc421551SDag-Erling Smørgrav    to Pacific/Saipan, are only for compatibility with now-obsolete
584*bc421551SDag-Erling Smørgrav    guidelines suggesting an entry for every ISO 3166 code.
585*bc421551SDag-Erling Smørgrav    The intercontinental convenience links Asia/Istanbul and
586*bc421551SDag-Erling Smørgrav    Europe/Nicosia have also been moved to 'backward'.
587*bc421551SDag-Erling Smørgrav
588*bc421551SDag-Erling Smørgrav  Changes to code
589*bc421551SDag-Erling Smørgrav
590*bc421551SDag-Erling Smørgrav    zic now creates each output file or link atomically,
591*bc421551SDag-Erling Smørgrav    possibly by creating a temporary file and then renaming it.
592*bc421551SDag-Erling Smørgrav    This avoids races where a TZ setting would temporarily stop
593*bc421551SDag-Erling Smørgrav    working while zic was installing a replacement file or link.
594*bc421551SDag-Erling Smørgrav
595*bc421551SDag-Erling Smørgrav    zic -L no longer omits the POSIX TZ string in its output.
596*bc421551SDag-Erling Smørgrav    Starting with 2020a, zic -L truncated its output according to the
597*bc421551SDag-Erling Smørgrav    "Expires" directive or "#expires" comment in the leapseconds file.
598*bc421551SDag-Erling Smørgrav    The resulting TZif files omitted daylight saving transitions after
599*bc421551SDag-Erling Smørgrav    the leap second table expired, which led to far less-accurate
600*bc421551SDag-Erling Smørgrav    predictions of times after the expiry.  Although future timestamps
601*bc421551SDag-Erling Smørgrav    cannot be converted accurately in the presence of leap seconds, it
602*bc421551SDag-Erling Smørgrav    is more accurate to convert near-future timestamps with a few
603*bc421551SDag-Erling Smørgrav    seconds error than with an hour error, so zic -L no longer
604*bc421551SDag-Erling Smørgrav    truncates output in this way.
605*bc421551SDag-Erling Smørgrav
606*bc421551SDag-Erling Smørgrav    Instead, when zic -L is given the "Expires" directive, it now
607*bc421551SDag-Erling Smørgrav    outputs the expiration by appending a no-change entry to the leap
608*bc421551SDag-Erling Smørgrav    second table.  Although this should work well with most TZif
609*bc421551SDag-Erling Smørgrav    readers, it does not conform to Internet RFC 8536 and some pickier
610*bc421551SDag-Erling Smørgrav    clients (including tzdb 2017c through 2021a) reject it, so
611*bc421551SDag-Erling Smørgrav    "Expires" directives are currently disabled by default.  To enable
612*bc421551SDag-Erling Smørgrav    them, set the EXPIRES_LINE Makefile variable.  If a TZif file uses
613*bc421551SDag-Erling Smørgrav    this new feature it is marked with a new TZif version number 4,
614*bc421551SDag-Erling Smørgrav    a format intended to be documented in a successor to RFC 8536.
615*bc421551SDag-Erling Smørgrav
616*bc421551SDag-Erling Smørgrav    zic -L LEAPFILE -r @LO no longer generates an invalid TZif file
617*bc421551SDag-Erling Smørgrav    that omits leap second information for the range LO..B when LO
618*bc421551SDag-Erling Smørgrav    falls between two leap seconds A and B.  Instead, it generates a
619*bc421551SDag-Erling Smørgrav    TZif version 4 file that represents the previously-missing
620*bc421551SDag-Erling Smørgrav    information.
621*bc421551SDag-Erling Smørgrav
622*bc421551SDag-Erling Smørgrav    The TZif reader now allows the leap second table to begin with a
623*bc421551SDag-Erling Smørgrav    correction other than -1 or +1, and to contain adjacent
624*bc421551SDag-Erling Smørgrav    transitions with equal corrections.  This supports TZif version 4.
625*bc421551SDag-Erling Smørgrav
626*bc421551SDag-Erling Smørgrav    The TZif reader now lets leap seconds occur less than 28 days
627*bc421551SDag-Erling Smørgrav    apart.  This supports possible future TZif extensions.
628*bc421551SDag-Erling Smørgrav
629*bc421551SDag-Erling Smørgrav    Fix bug that caused 'localtime' etc. to crash when TZ was
630*bc421551SDag-Erling Smørgrav    set to a all-year DST string like "EST5EDT4,0/0,J365/25" that does
631*bc421551SDag-Erling Smørgrav    not conform to POSIX but does conform to Internet RFC 8536.
632*bc421551SDag-Erling Smørgrav
633*bc421551SDag-Erling Smørgrav    Fix another bug that caused 'localtime' etc. to crash when TZ was
634*bc421551SDag-Erling Smørgrav    set to a POSIX-conforming but unusual TZ string like
635*bc421551SDag-Erling Smørgrav    "EST5EDT4,0/0,J365/0", where almost all the year is DST.
636*bc421551SDag-Erling Smørgrav
637*bc421551SDag-Erling Smørgrav    Fix yet another bug that caused 'localtime' etc. to mishandle slim
638*bc421551SDag-Erling Smørgrav    TZif files containing leap seconds after the last explicit
639*bc421551SDag-Erling Smørgrav    transition in the table, or when handling far-future timestamps
640*bc421551SDag-Erling Smørgrav    in slim TZif files lacking leap seconds.
641*bc421551SDag-Erling Smørgrav
642*bc421551SDag-Erling Smørgrav    Fix localtime misbehavior involving positive leap seconds.
643*bc421551SDag-Erling Smørgrav    This change affects only behavior for "right" system time,
644*bc421551SDag-Erling Smørgrav    which contains leap seconds, and only if the UT offset is
645*bc421551SDag-Erling Smørgrav    not a multiple of 60 seconds when a positive leap second occurs.
646*bc421551SDag-Erling Smørgrav    (No such timezone exists in tzdb, luckily.)  Without the fix,
647*bc421551SDag-Erling Smørgrav    the timestamp was ambiguous during a positive leap second.
648*bc421551SDag-Erling Smørgrav    With the fix, any seconds occurring after a positive leap second
649*bc421551SDag-Erling Smørgrav    and within the same localtime minute are counted through 60, not
650*bc421551SDag-Erling Smørgrav    through 59; their UT offset (tm_gmtoff) is the same as before.
651*bc421551SDag-Erling Smørgrav    Here is how the fix affects timestamps in a timezone with UT
652*bc421551SDag-Erling Smørgrav    offset +01:23:45 (5025 seconds) and with a positive leap second at
653*bc421551SDag-Erling Smørgrav    1972-06-30 23:59:60 UTC (78796800):
654*bc421551SDag-Erling Smørgrav
655*bc421551SDag-Erling Smørgrav	time_t    without the fix      with the fix
656*bc421551SDag-Erling Smørgrav	78796800  1972-07-01 01:23:45  1972-07-01 01:23:45 (leap second)
657*bc421551SDag-Erling Smørgrav	78796801  1972-07-01 01:23:45  1972-07-01 01:23:46
658*bc421551SDag-Erling Smørgrav	...
659*bc421551SDag-Erling Smørgrav	78796815  1972-07-01 01:23:59  1972-07-01 01:23:60
660*bc421551SDag-Erling Smørgrav	78796816  1972-07-01 01:24:00  1972-07-01 01:24:00
661*bc421551SDag-Erling Smørgrav
662*bc421551SDag-Erling Smørgrav    Fix an unlikely bug that caused 'localtime' etc. to misbehave if
663*bc421551SDag-Erling Smørgrav    civil time changes a few seconds before time_t wraps around, when
664*bc421551SDag-Erling Smørgrav    leap seconds are enabled.
665*bc421551SDag-Erling Smørgrav
666*bc421551SDag-Erling Smørgrav    Fix bug in zic -r; in some cases, the dummy time type after the
667*bc421551SDag-Erling Smørgrav    last time transition disagreed with the TZ string, contrary to
668*bc421551SDag-Erling Smørgrav    Internet RFC 8563 section 3.3.
669*bc421551SDag-Erling Smørgrav
670*bc421551SDag-Erling Smørgrav    Fix a bug with 'zic -r @X' when X is a negative leap second that
671*bc421551SDag-Erling Smørgrav    has a nonnegative correction.  Without the fix, the output file
672*bc421551SDag-Erling Smørgrav    was truncated so that X appeared to be a positive leap second.
673*bc421551SDag-Erling Smørgrav    Fix a similar, even-less-likely bug when truncating at a positive
674*bc421551SDag-Erling Smørgrav    leap second that has a nonpositive correction.
675*bc421551SDag-Erling Smørgrav
676*bc421551SDag-Erling Smørgrav    zic -r now reports an error if given rolling leap seconds, as this
677*bc421551SDag-Erling Smørgrav    usage has never generally worked and is evidently unused.
678*bc421551SDag-Erling Smørgrav
679*bc421551SDag-Erling Smørgrav    zic now generates a POSIX-conforming TZ string for TZif files
680*bc421551SDag-Erling Smørgrav    where all-year DST is predicted for the indefinite future.
681*bc421551SDag-Erling Smørgrav    For example, for all-year Eastern Daylight Time, zic now generates
682*bc421551SDag-Erling Smørgrav    "XXX3EDT4,0/0,J365/23" where it previously generated
683*bc421551SDag-Erling Smørgrav    "EST5EDT,0/0,J365/25" or "".  (Thanks to Michael Deckers for
684*bc421551SDag-Erling Smørgrav    noting the possibility of POSIX conformance.)
685*bc421551SDag-Erling Smørgrav
686*bc421551SDag-Erling Smørgrav    zic.c no longer requires sys/wait.h (thanks to spazmodius for
687*bc421551SDag-Erling Smørgrav    noting it wasn't needed).
688*bc421551SDag-Erling Smørgrav
689*bc421551SDag-Erling Smørgrav    When reading slim TZif files, zdump no longer mishandles leap
690*bc421551SDag-Erling Smørgrav    seconds on the rare platforms where time_t counts leap seconds,
691*bc421551SDag-Erling Smørgrav    fixing a bug introduced in 2014g.
692*bc421551SDag-Erling Smørgrav
693*bc421551SDag-Erling Smørgrav    zdump -v now outputs timestamps at boundaries of what localtime
694*bc421551SDag-Erling Smørgrav    and gmtime can represent, instead of the less-useful timestamps
695*bc421551SDag-Erling Smørgrav    one day after the minimum and one day before the maximum.
696*bc421551SDag-Erling Smørgrav    (Thanks to Arthur David Olson for prototype code, and to Manuela
697*bc421551SDag-Erling Smørgrav    Friedrich for debugging help.)
698*bc421551SDag-Erling Smørgrav
699*bc421551SDag-Erling Smørgrav    zdump's -c and -t options are now consistently inclusive for the
700*bc421551SDag-Erling Smørgrav    lower time bound and exclusive for the upper.  Formerly they were
701*bc421551SDag-Erling Smørgrav    inconsistent.  (Confusion noted by Martin Burnicki.)
702*bc421551SDag-Erling Smørgrav
703*bc421551SDag-Erling Smørgrav  Changes to build procedure
704*bc421551SDag-Erling Smørgrav
705*bc421551SDag-Erling Smørgrav    You can now compile with -DHAVE_MALLOC_ERRNO=0 to port to
706*bc421551SDag-Erling Smørgrav    non-POSIX hosts where malloc doesn't set errno.
707*bc421551SDag-Erling Smørgrav    (Problem reported by Jan Engelhardt.)
708*bc421551SDag-Erling Smørgrav
709*bc421551SDag-Erling Smørgrav  Changes to documentation
710*bc421551SDag-Erling Smørgrav
711*bc421551SDag-Erling Smørgrav    tzfile.5 better matches a draft successor to RFC 8536
712*bc421551SDag-Erling Smørgrav    <https://datatracker.ietf.org/doc/draft-murchison-rfc8536bis/01/>.
713*bc421551SDag-Erling Smørgrav
714*bc421551SDag-Erling Smørgrav
715*bc421551SDag-Erling SmørgravRelease 2021a - 2021-01-24 10:54:57 -0800
716*bc421551SDag-Erling Smørgrav
717*bc421551SDag-Erling Smørgrav  Changes to future timestamps
718*bc421551SDag-Erling Smørgrav
719*bc421551SDag-Erling Smørgrav    South Sudan changes from +03 to +02 on 2021-02-01 at 00:00.
720*bc421551SDag-Erling Smørgrav    (Thanks to Steffen Thorsen.)
721*bc421551SDag-Erling Smørgrav
722*bc421551SDag-Erling Smørgrav
723*bc421551SDag-Erling SmørgravRelease 2020f - 2020-12-29 00:17:46 -0800
724*bc421551SDag-Erling Smørgrav
725*bc421551SDag-Erling Smørgrav  Change to build procedure
726*bc421551SDag-Erling Smørgrav
727*bc421551SDag-Erling Smørgrav    'make rearguard_tarballs' no longer generates a bad rearguard.zi,
728*bc421551SDag-Erling Smørgrav    fixing a 2020e bug.  (Problem reported by Deborah Goldsmith.)
729*bc421551SDag-Erling Smørgrav
730*bc421551SDag-Erling Smørgrav
731*bc421551SDag-Erling SmørgravRelease 2020e - 2020-12-22 15:14:34 -0800
732*bc421551SDag-Erling Smørgrav
733*bc421551SDag-Erling Smørgrav  Briefly:
734*bc421551SDag-Erling Smørgrav    Volgograd switches to Moscow time on 2020-12-27 at 02:00.
735*bc421551SDag-Erling Smørgrav
736*bc421551SDag-Erling Smørgrav  Changes to future timestamps
737*bc421551SDag-Erling Smørgrav
738*bc421551SDag-Erling Smørgrav    Volgograd changes time zone from +04 to +03 on 2020-12-27 at 02:00.
739*bc421551SDag-Erling Smørgrav    (Thanks to Alexander Krivenyshev and Stepan Golosunov.)
740*bc421551SDag-Erling Smørgrav
741*bc421551SDag-Erling Smørgrav  Changes to past timestamps
742*bc421551SDag-Erling Smørgrav
743*bc421551SDag-Erling Smørgrav    Correct many pre-1986 transitions, fixing entries originally
744*bc421551SDag-Erling Smørgrav    derived from Shanks.  The fixes include:
745*bc421551SDag-Erling Smørgrav      - Australia: several 1917 through 1971 transitions
746*bc421551SDag-Erling Smørgrav      - The Bahamas: several 1941 through 1945 transitions
747*bc421551SDag-Erling Smørgrav      - Bermuda: several 1917 through 1956 transitions
748*bc421551SDag-Erling Smørgrav      - Belize: several 1942 through 1968 transitions
749*bc421551SDag-Erling Smørgrav      - Ghana: several 1915 through 1956 transitions
750*bc421551SDag-Erling Smørgrav      - Israel and Palestine: several 1940 through 1985 transitions
751*bc421551SDag-Erling Smørgrav      - Kenya and adjacent: several 1908 through 1960 transitions
752*bc421551SDag-Erling Smørgrav      - Nigeria and adjacent: correcting LMT in Lagos, and several 1905
753*bc421551SDag-Erling Smørgrav        through 1919 transitions
754*bc421551SDag-Erling Smørgrav      - Seychelles: the introduction of standard time in 1907, not 1906
755*bc421551SDag-Erling Smørgrav      - Vanuatu: DST in 1973-1974, and a corrected 1984 transition
756*bc421551SDag-Erling Smørgrav    (Thanks to P Chan.)
757*bc421551SDag-Erling Smørgrav
758*bc421551SDag-Erling Smørgrav    Because of the Australia change, Australia/Currie (King Island) is
759*bc421551SDag-Erling Smørgrav    no longer needed, as it is identical to Australia/Hobart for all
760*bc421551SDag-Erling Smørgrav    timestamps since 1970 and was therefore created by mistake.
761*bc421551SDag-Erling Smørgrav    Australia/Currie has been moved to the 'backward' file and its
762*bc421551SDag-Erling Smørgrav    corrected data moved to the 'backzone' file.
763*bc421551SDag-Erling Smørgrav
764*bc421551SDag-Erling Smørgrav  Changes to past time zone abbreviations and DST flags
765*bc421551SDag-Erling Smørgrav
766*bc421551SDag-Erling Smørgrav    To better match legislation in Turks and Caicos, the 2015 shift to
767*bc421551SDag-Erling Smørgrav    year-round observance of -04 is now modeled as AST throughout before
768*bc421551SDag-Erling Smørgrav    returning to Eastern Time with US DST in 2018, rather than as
769*bc421551SDag-Erling Smørgrav    maintaining EDT until 2015-11-01.  (Thanks to P Chan.)
770*bc421551SDag-Erling Smørgrav
771*bc421551SDag-Erling Smørgrav  Changes to documentation
772*bc421551SDag-Erling Smørgrav
773*bc421551SDag-Erling Smørgrav    The zic man page now documents zic's coalescing of transitions
774*bc421551SDag-Erling Smørgrav    when a zone falls back just before DST springs forward.
775*bc421551SDag-Erling Smørgrav
776*bc421551SDag-Erling Smørgrav
777*bc421551SDag-Erling SmørgravRelease 2020d - 2020-10-21 11:24:13 -0700
778*bc421551SDag-Erling Smørgrav
779*bc421551SDag-Erling Smørgrav  Briefly:
780*bc421551SDag-Erling Smørgrav    Palestine ends DST earlier than predicted, on 2020-10-24.
781*bc421551SDag-Erling Smørgrav
782*bc421551SDag-Erling Smørgrav  Changes to past and future timestamps
783*bc421551SDag-Erling Smørgrav
784*bc421551SDag-Erling Smørgrav    Palestine ends DST on 2020-10-24 at 01:00, instead of 2020-10-31
785*bc421551SDag-Erling Smørgrav    as previously predicted (thanks to Sharef Mustafa.)  Its
786*bc421551SDag-Erling Smørgrav    2019-10-26 fall-back was at 00:00, not 01:00 (thanks to Steffen
787*bc421551SDag-Erling Smørgrav    Thorsen.)  Its 2015-10-23 transition was at 01:00 not 00:00, and
788*bc421551SDag-Erling Smørgrav    its spring 2020 transition was on March 28 at 00:00, not March 27
789*bc421551SDag-Erling Smørgrav    (thanks to Pierre Cashon.)  This affects Asia/Gaza and
790*bc421551SDag-Erling Smørgrav    Asia/Hebron.  Assume future spring and fall transitions will be on
791*bc421551SDag-Erling Smørgrav    the Saturday preceding the last Sunday of March and October,
792*bc421551SDag-Erling Smørgrav    respectively.
793*bc421551SDag-Erling Smørgrav
794*bc421551SDag-Erling Smørgrav
795*bc421551SDag-Erling SmørgravRelease 2020c - 2020-10-16 11:15:53 -0700
796*bc421551SDag-Erling Smørgrav
797*bc421551SDag-Erling Smørgrav  Briefly:
798*bc421551SDag-Erling Smørgrav    Fiji starts DST later than usual, on 2020-12-20.
799*bc421551SDag-Erling Smørgrav
800*bc421551SDag-Erling Smørgrav  Changes to future timestamps
801*bc421551SDag-Erling Smørgrav
802*bc421551SDag-Erling Smørgrav    Fiji will start DST on 2020-12-20, instead of 2020-11-08 as
803*bc421551SDag-Erling Smørgrav    previously predicted.  DST will still end on 2021-01-17.
804*bc421551SDag-Erling Smørgrav    (Thanks to Raymond Kumar and Alan Mintz.)  Assume for now that
805*bc421551SDag-Erling Smørgrav    the later-than-usual start date is a one-time departure from the
806*bc421551SDag-Erling Smørgrav    recent pattern.
807*bc421551SDag-Erling Smørgrav
808*bc421551SDag-Erling Smørgrav  Changes to build procedure
809*bc421551SDag-Erling Smørgrav
810*bc421551SDag-Erling Smørgrav    Rearguard tarballs now contain an empty file pacificnew.
811*bc421551SDag-Erling Smørgrav    Some older downstream software expects this file to exist.
812*bc421551SDag-Erling Smørgrav    (Problem reported by Mike Cullinan.)
813*bc421551SDag-Erling Smørgrav
814*bc421551SDag-Erling Smørgrav
815*bc421551SDag-Erling SmørgravRelease 2020b - 2020-10-06 18:35:04 -0700
816*bc421551SDag-Erling Smørgrav
817*bc421551SDag-Erling Smørgrav  Briefly:
818*bc421551SDag-Erling Smørgrav    Revised predictions for Morocco's changes starting in 2023.
819*bc421551SDag-Erling Smørgrav    Canada's Yukon changes to -07 on 2020-11-01, not 2020-03-08.
820*bc421551SDag-Erling Smørgrav    Macquarie Island has stayed in sync with Tasmania since 2011.
821*bc421551SDag-Erling Smørgrav    Casey, Antarctica is at +08 in winter and +11 in summer.
822*bc421551SDag-Erling Smørgrav    zic no longer supports -y, nor the TYPE field of Rules.
823*bc421551SDag-Erling Smørgrav
824*bc421551SDag-Erling Smørgrav  Changes to future timestamps
825*bc421551SDag-Erling Smørgrav
826*bc421551SDag-Erling Smørgrav    Morocco's spring-forward after Ramadan is now predicted to occur
827*bc421551SDag-Erling Smørgrav    no sooner than two days after Ramadan, instead of one day.
828*bc421551SDag-Erling Smørgrav    (Thanks to Milamber.)  The first altered prediction is for 2023,
829*bc421551SDag-Erling Smørgrav    now predicted to spring-forward on April 30 instead of April 23.
830*bc421551SDag-Erling Smørgrav
831*bc421551SDag-Erling Smørgrav  Changes to past and future timestamps
832*bc421551SDag-Erling Smørgrav
833*bc421551SDag-Erling Smørgrav   Casey Station, Antarctica has been using +08 in winter and +11 in
834*bc421551SDag-Erling Smørgrav   summer since 2018.  The most recent transition from +08 to +11 was
835*bc421551SDag-Erling Smørgrav   2020-10-04 00:01.  Also, Macquarie Island has been staying in
836*bc421551SDag-Erling Smørgrav   sync with Tasmania since 2011.  (Thanks to Steffen Thorsen.)
837*bc421551SDag-Erling Smørgrav
838*bc421551SDag-Erling Smørgrav  Changes to past and future time zone abbreviations and DST flags
839*bc421551SDag-Erling Smørgrav
840*bc421551SDag-Erling Smørgrav    Canada's Yukon, represented by America/Whitehorse and
841*bc421551SDag-Erling Smørgrav    America/Dawson, changes its time zone rules from -08/-07 to
842*bc421551SDag-Erling Smørgrav    permanent -07 on 2020-11-01, not on 2020-03-08 as 2020a had it.
843*bc421551SDag-Erling Smørgrav    This change affects only the time zone abbreviation (MST vs PDT)
844*bc421551SDag-Erling Smørgrav    and daylight saving flag for the period between the two dates.
845*bc421551SDag-Erling Smørgrav    (Thanks to Andrew G. Smith.)
846*bc421551SDag-Erling Smørgrav
847*bc421551SDag-Erling Smørgrav  Changes to past timestamps
848*bc421551SDag-Erling Smørgrav
849*bc421551SDag-Erling Smørgrav    Correct several transitions for Hungary for 1918/1983.
850*bc421551SDag-Erling Smørgrav    For example, the 1983-09-25 fall-back was at 01:00, not 03:00.
851*bc421551SDag-Erling Smørgrav    (Thanks to Géza Nyáry.)  Also, the 1890 transition to standard
852*bc421551SDag-Erling Smørgrav    time was on 11-01, not 10-01 (thanks to Michael Deckers).
853*bc421551SDag-Erling Smørgrav
854*bc421551SDag-Erling Smørgrav    The 1891 French transition was on March 16, not March 15.  The
855*bc421551SDag-Erling Smørgrav    1911-03-11 French transition was at midnight, not a minute later.
856*bc421551SDag-Erling Smørgrav    Monaco's transitions were on 1892-06-01 and 1911-03-29, not
857*bc421551SDag-Erling Smørgrav    1891-03-15 and 1911-03-11.  (Thanks to Michael Deckers.)
858*bc421551SDag-Erling Smørgrav
859*bc421551SDag-Erling Smørgrav  Changes to code
860*bc421551SDag-Erling Smørgrav
861*bc421551SDag-Erling Smørgrav    Support for zic's long-obsolete '-y YEARISTYPE' option has been
862*bc421551SDag-Erling Smørgrav    removed and, with it, so has support for the TYPE field in Rule
863*bc421551SDag-Erling Smørgrav    lines, which is now reserved for compatibility with earlier zic.
864*bc421551SDag-Erling Smørgrav    These features were previously deprecated in release 2015f.
865*bc421551SDag-Erling Smørgrav    (Thanks to Tim Parenti.)
866*bc421551SDag-Erling Smørgrav
867*bc421551SDag-Erling Smørgrav    zic now defaults to '-b slim' instead of to '-b fat'.
868*bc421551SDag-Erling Smørgrav
869*bc421551SDag-Erling Smørgrav    zic's new '-l -' and '-p -' options uninstall any existing
870*bc421551SDag-Erling Smørgrav    localtime and posixrules files, respectively.
871*bc421551SDag-Erling Smørgrav
872*bc421551SDag-Erling Smørgrav    The undocumented and ineffective tzsetwall function has been
873*bc421551SDag-Erling Smørgrav    removed.
874*bc421551SDag-Erling Smørgrav
875*bc421551SDag-Erling Smørgrav  Changes to build procedure
876*bc421551SDag-Erling Smørgrav
877*bc421551SDag-Erling Smørgrav    The Makefile now defaults POSIXRULES to '-', so the posixrules
878*bc421551SDag-Erling Smørgrav    feature (obsolete as of 2019b) is no longer installed by default.
879*bc421551SDag-Erling Smørgrav
880*bc421551SDag-Erling Smørgrav  Changes to documentation and commentary
881*bc421551SDag-Erling Smørgrav
882*bc421551SDag-Erling Smørgrav    The long-obsolete files pacificnew, systemv, and yearistype.sh have
883*bc421551SDag-Erling Smørgrav    been removed from the distribution.  (Thanks to Tim Parenti.)
884*bc421551SDag-Erling Smørgrav
885*bc421551SDag-Erling Smørgrav
886*bc421551SDag-Erling SmørgravRelease 2020a - 2020-04-23 16:03:47 -0700
887*bc421551SDag-Erling Smørgrav
888*bc421551SDag-Erling Smørgrav  Briefly:
889*bc421551SDag-Erling Smørgrav    Morocco springs forward on 2020-05-31, not 2020-05-24.
890*bc421551SDag-Erling Smørgrav    Canada's Yukon advanced to -07 year-round on 2020-03-08.
891*bc421551SDag-Erling Smørgrav    America/Nuuk renamed from America/Godthab.
892*bc421551SDag-Erling Smørgrav    zic now supports expiration dates for leap second lists.
893*bc421551SDag-Erling Smørgrav
894*bc421551SDag-Erling Smørgrav  Changes to future timestamps
895*bc421551SDag-Erling Smørgrav
896*bc421551SDag-Erling Smørgrav    Morocco's second spring-forward transition in 2020 will be May 31,
897*bc421551SDag-Erling Smørgrav    not May 24 as predicted earlier.  (Thanks to Semlali Naoufal.)
898*bc421551SDag-Erling Smørgrav    Adjust future-year predictions to use the first Sunday after the
899*bc421551SDag-Erling Smørgrav    day after Ramadan, not the first Sunday after Ramadan.
900*bc421551SDag-Erling Smørgrav
901*bc421551SDag-Erling Smørgrav    Canada's Yukon, represented by America/Whitehorse and
902*bc421551SDag-Erling Smørgrav    America/Dawson, advanced to -07 year-round, beginning with its
903*bc421551SDag-Erling Smørgrav    spring-forward transition on 2020-03-08, and will not fall back on
904*bc421551SDag-Erling Smørgrav    2020-11-01.  Although a government press release calls this
905*bc421551SDag-Erling Smørgrav    "permanent Pacific Daylight Saving Time", we prefer MST for
906*bc421551SDag-Erling Smørgrav    consistency with nearby Dawson Creek, Creston, and Fort Nelson.
907*bc421551SDag-Erling Smørgrav    (Thanks to Tim Parenti.)
908*bc421551SDag-Erling Smørgrav
909*bc421551SDag-Erling Smørgrav  Changes to past timestamps
910*bc421551SDag-Erling Smørgrav
911*bc421551SDag-Erling Smørgrav    Shanghai observed DST in 1919.  (Thanks to Phake Nick.)
912*bc421551SDag-Erling Smørgrav
913*bc421551SDag-Erling Smørgrav  Changes to timezone identifiers
914*bc421551SDag-Erling Smørgrav
915*bc421551SDag-Erling Smørgrav    To reflect current usage in English better, America/Godthab has
916*bc421551SDag-Erling Smørgrav    been renamed to America/Nuuk.  A backwards-compatibility link
917*bc421551SDag-Erling Smørgrav    remains for the old name.
918*bc421551SDag-Erling Smørgrav
919*bc421551SDag-Erling Smørgrav  Changes to code
920*bc421551SDag-Erling Smørgrav
921*bc421551SDag-Erling Smørgrav    localtime.c no longer mishandles timestamps after the last
922*bc421551SDag-Erling Smørgrav    transition in a TZif file with leap seconds and with daylight
923*bc421551SDag-Erling Smørgrav    saving time transitions projected into the indefinite future.
924*bc421551SDag-Erling Smørgrav    For example, with TZ='America/Los_Angeles' with leap seconds,
925*bc421551SDag-Erling Smørgrav    zdump formerly reported a DST transition on 2038-03-14
926*bc421551SDag-Erling Smørgrav    from 01:59:32.999... to 02:59:33 instead of the correct transition
927*bc421551SDag-Erling Smørgrav    from 01:59:59.999... to 03:00:00.
928*bc421551SDag-Erling Smørgrav
929*bc421551SDag-Erling Smørgrav    zic -L now supports an Expires line in the leapseconds file, and
930*bc421551SDag-Erling Smørgrav    truncates the TZif output accordingly.  This propagates leap
931*bc421551SDag-Erling Smørgrav    second expiration information into the TZif file, and avoids the
932*bc421551SDag-Erling Smørgrav    abovementioned localtime.c bug as well as similar bugs present in
933*bc421551SDag-Erling Smørgrav    many client implementations.  If no Expires line is present, zic
934*bc421551SDag-Erling Smørgrav    -L instead truncates the TZif output based on the #expires comment
935*bc421551SDag-Erling Smørgrav    present in leapseconds files distributed by tzdb 2018f and later;
936*bc421551SDag-Erling Smørgrav    however, this usage is obsolescent.  For now, the distributed
937*bc421551SDag-Erling Smørgrav    leapseconds file has an Expires line that is commented out, so
938*bc421551SDag-Erling Smørgrav    that the file can be fed to older versions of zic which ignore the
939*bc421551SDag-Erling Smørgrav    commented-out line.  Future tzdb distributions are planned to
940*bc421551SDag-Erling Smørgrav    contain a leapseconds file with an Expires line.
941*bc421551SDag-Erling Smørgrav
942*bc421551SDag-Erling Smørgrav    The configuration macros HAVE_TZNAME and USG_COMPAT should now be
943*bc421551SDag-Erling Smørgrav    set to 1 if the system library supports the feature, and 2 if not.
944*bc421551SDag-Erling Smørgrav    As before, these macros are nonzero if tzcode should support the
945*bc421551SDag-Erling Smørgrav    feature, zero otherwise.
946*bc421551SDag-Erling Smørgrav
947*bc421551SDag-Erling Smørgrav    The configuration macro ALTZONE now has the same values with the
948*bc421551SDag-Erling Smørgrav    same meaning as HAVE_TZNAME and USG_COMPAT.
949*bc421551SDag-Erling Smørgrav
950*bc421551SDag-Erling Smørgrav    The code's defense against CRLF in leap-seconds.list is now
951*bc421551SDag-Erling Smørgrav    portable to POSIX awk.  (Problem reported by Deborah Goldsmith.)
952*bc421551SDag-Erling Smørgrav
953*bc421551SDag-Erling Smørgrav    Although the undocumented tzsetwall function is not changed in
954*bc421551SDag-Erling Smørgrav    this release, it is now deprecated in preparation for removal in
955*bc421551SDag-Erling Smørgrav    future releases.  Due to POSIX requirements, tzsetwall has not
956*bc421551SDag-Erling Smørgrav    worked for some time.  Any code that uses it should instead use
957*bc421551SDag-Erling Smørgrav    tzalloc(NULL) or, if portability trumps thread-safety, should
958*bc421551SDag-Erling Smørgrav    unset the TZ environment variable.
959*bc421551SDag-Erling Smørgrav
960*bc421551SDag-Erling Smørgrav  Changes to commentary
961*bc421551SDag-Erling Smørgrav
962*bc421551SDag-Erling Smørgrav    The Îles-de-la-Madeleine and the Listuguj reserve are noted as
963*bc421551SDag-Erling Smørgrav    following America/Halifax, and comments about Yukon's "south" and
964*bc421551SDag-Erling Smørgrav    "north" have been corrected to say "east" and "west".  (Thanks to
965*bc421551SDag-Erling Smørgrav    Jeffery Nichols.)
966*bc421551SDag-Erling Smørgrav
967*bc421551SDag-Erling Smørgrav
968*bc421551SDag-Erling SmørgravRelease 2019c - 2019-09-11 08:59:48 -0700
969*bc421551SDag-Erling Smørgrav
970*bc421551SDag-Erling Smørgrav  Briefly:
971*bc421551SDag-Erling Smørgrav    Fiji observes DST from 2019-11-10 to 2020-01-12.
972*bc421551SDag-Erling Smørgrav    Norfolk Island starts observing Australian-style DST.
973*bc421551SDag-Erling Smørgrav
974*bc421551SDag-Erling Smørgrav  Changes to future timestamps
975*bc421551SDag-Erling Smørgrav
976*bc421551SDag-Erling Smørgrav    Fiji's next DST transitions will be 2019-11-10 and 2020-01-12
977*bc421551SDag-Erling Smørgrav    instead of 2019-11-03 and 2020-01-19.  (Thanks to Raymond Kumar.)
978*bc421551SDag-Erling Smørgrav    Adjust future guesses accordingly.
979*bc421551SDag-Erling Smørgrav
980*bc421551SDag-Erling Smørgrav    Norfolk Island will observe Australian-style DST starting in
981*bc421551SDag-Erling Smørgrav    spring 2019.  The first transition is on 2019-10-06.  (Thanks to
982*bc421551SDag-Erling Smørgrav    Kyle Czech and Michael Deckers.)
983*bc421551SDag-Erling Smørgrav
984*bc421551SDag-Erling Smørgrav  Changes to past timestamps
985*bc421551SDag-Erling Smørgrav
986*bc421551SDag-Erling Smørgrav    Many corrections to time in Turkey from 1940 through 1985.
987*bc421551SDag-Erling Smørgrav    (Thanks to Oya Vulaş via Alois Treindl, and to Kıvanç Yazan.)
988*bc421551SDag-Erling Smørgrav
989*bc421551SDag-Erling Smørgrav    The Norfolk Island 1975-03-02 transition was at 02:00 standard
990*bc421551SDag-Erling Smørgrav    time, not 02:00 DST.  (Thanks to Michael Deckers.)
991*bc421551SDag-Erling Smørgrav
992*bc421551SDag-Erling Smørgrav    South Korea observed DST from 1948 through 1951.  Although this
993*bc421551SDag-Erling Smørgrav    info was supposed to appear in release 2014j, a typo inadvertently
994*bc421551SDag-Erling Smørgrav    suppressed the change.  (Thanks to Alois Treindl.)
995*bc421551SDag-Erling Smørgrav
996*bc421551SDag-Erling Smørgrav    Detroit observed DST in 1967 and 1968 following the US DST rules,
997*bc421551SDag-Erling Smørgrav    except that its 1967 DST began on June 14 at 00:01.  (Thanks to
998*bc421551SDag-Erling Smørgrav    Alois Treindl for pointing out that the old data entries were
999*bc421551SDag-Erling Smørgrav    probably wrong.)
1000*bc421551SDag-Erling Smørgrav
1001*bc421551SDag-Erling Smørgrav    Fix several errors in pre-1970 transitions in Perry County, IN.
1002*bc421551SDag-Erling Smørgrav    (Thanks to Alois Treindl for pointing out the 1967/9 errors.)
1003*bc421551SDag-Erling Smørgrav
1004*bc421551SDag-Erling Smørgrav    Edmonton did not observe DST in 1967 or 1969.  In 1946 Vancouver
1005*bc421551SDag-Erling Smørgrav    ended DST on 09-29 not 10-13, and Vienna ended DST on 10-07 not
1006*bc421551SDag-Erling Smørgrav    10-06.  In 1945 Königsberg (now Kaliningrad) switched from +01/+02
1007*bc421551SDag-Erling Smørgrav    to +02/+03 on 04-10 not 01-01, and its +02/+03 is abbreviated
1008*bc421551SDag-Erling Smørgrav    EET/EEST, not CET/CEST.  (Thanks to Alois Treindl.)  In 1946
1009*bc421551SDag-Erling Smørgrav    Königsberg switched to +03 on 04-07 not 01-01.
1010*bc421551SDag-Erling Smørgrav
1011*bc421551SDag-Erling Smørgrav    In 1946 Louisville switched from CST to CDT on 04-28 at 00:01, not
1012*bc421551SDag-Erling Smørgrav    01-01 at 00:00.  (Thanks to Alois Treindl and Michael Deckers.)
1013*bc421551SDag-Erling Smørgrav    Also, it switched from CST to CDT on 1950-04-30, not 1947-04-27.
1014*bc421551SDag-Erling Smørgrav
1015*bc421551SDag-Erling Smørgrav    The 1892-05-01 transition in Brussels was at 00:17:30, not at noon.
1016*bc421551SDag-Erling Smørgrav    (Thanks to Michael Deckers.)
1017*bc421551SDag-Erling Smørgrav
1018*bc421551SDag-Erling Smørgrav  Changes to past time zone abbreviations and DST flags
1019*bc421551SDag-Erling Smørgrav
1020*bc421551SDag-Erling Smørgrav    Hong Kong Winter Time, observed from 1941-10-01 to 1941-12-25,
1021*bc421551SDag-Erling Smørgrav    is now flagged as DST and is abbreviated HKWT not HKT.
1022*bc421551SDag-Erling Smørgrav
1023*bc421551SDag-Erling Smørgrav  Changes to code
1024*bc421551SDag-Erling Smørgrav
1025*bc421551SDag-Erling Smørgrav    leapseconds.awk now relies only on its input data, rather than
1026*bc421551SDag-Erling Smørgrav    also relying on its comments.  (Inspired by code from Dennis
1027*bc421551SDag-Erling Smørgrav    Ferguson and Chris Woodbury.)
1028*bc421551SDag-Erling Smørgrav
1029*bc421551SDag-Erling Smørgrav    The code now defends against CRLFs in leap-seconds.list.
1030*bc421551SDag-Erling Smørgrav    (Thanks to Brian Inglis and Chris Woodbury.)
1031*bc421551SDag-Erling Smørgrav
1032*bc421551SDag-Erling Smørgrav  Changes to documentation and commentary
1033*bc421551SDag-Erling Smørgrav
1034*bc421551SDag-Erling Smørgrav    theory.html discusses leap seconds.  (Thanks to Steve Summit.)
1035*bc421551SDag-Erling Smørgrav
1036*bc421551SDag-Erling Smørgrav    Nashville's newspapers dueled about the time of day in the 1950s.
1037*bc421551SDag-Erling Smørgrav    (Thanks to John Seigenthaler.)
1038*bc421551SDag-Erling Smørgrav
1039*bc421551SDag-Erling Smørgrav    Liechtenstein observed Swiss DST in 1941/2.
1040*bc421551SDag-Erling Smørgrav    (Thanks to Alois Treindl.)
1041*bc421551SDag-Erling Smørgrav
1042*bc421551SDag-Erling Smørgrav
1043*bc421551SDag-Erling SmørgravRelease 2019b - 2019-07-01 00:09:53 -0700
1044*bc421551SDag-Erling Smørgrav
1045*bc421551SDag-Erling Smørgrav  Briefly:
1046*bc421551SDag-Erling Smørgrav    Brazil no longer observes DST.
1047*bc421551SDag-Erling Smørgrav    'zic -b slim' outputs smaller TZif files; please try it out.
1048*bc421551SDag-Erling Smørgrav    Palestine's 2019 spring-forward transition was on 03-29, not 03-30.
1049*bc421551SDag-Erling Smørgrav
1050*bc421551SDag-Erling Smørgrav  Changes to future timestamps
1051*bc421551SDag-Erling Smørgrav
1052*bc421551SDag-Erling Smørgrav    Brazil has canceled DST and will stay on standard time indefinitely.
1053*bc421551SDag-Erling Smørgrav    (Thanks to Steffen Thorsen, Marcus Diniz, and Daniel Soares de
1054*bc421551SDag-Erling Smørgrav    Oliveira.)
1055*bc421551SDag-Erling Smørgrav
1056*bc421551SDag-Erling Smørgrav    Predictions for Morocco now go through 2087 instead of 2037, to
1057*bc421551SDag-Erling Smørgrav    work around a problem on newlib when using TZif files output by
1058*bc421551SDag-Erling Smørgrav    zic 2019a or earlier.  (Problem reported by David Gauchard.)
1059*bc421551SDag-Erling Smørgrav
1060*bc421551SDag-Erling Smørgrav  Changes to past and future timestamps
1061*bc421551SDag-Erling Smørgrav
1062*bc421551SDag-Erling Smørgrav    Palestine's 2019 spring transition was 03-29 at 00:00, not 03-30
1063*bc421551SDag-Erling Smørgrav    at 01:00.  (Thanks to Sharef Mustafa and Even Scharning.)  Guess
1064*bc421551SDag-Erling Smørgrav    future transitions to be March's last Friday at 00:00.
1065*bc421551SDag-Erling Smørgrav
1066*bc421551SDag-Erling Smørgrav  Changes to past timestamps
1067*bc421551SDag-Erling Smørgrav
1068*bc421551SDag-Erling Smørgrav    Hong Kong's 1941-06-15 spring-forward transition was at 03:00, not
1069*bc421551SDag-Erling Smørgrav    03:30.  Its 1945 transition from JST to HKT was on 11-18 at 02:00,
1070*bc421551SDag-Erling Smørgrav    not 09-15 at 00:00.  In 1946 its spring-forward transition was on
1071*bc421551SDag-Erling Smørgrav    04-21 at 00:00, not the previous day at 03:30.  From 1946 through
1072*bc421551SDag-Erling Smørgrav    1952 its fall-back transitions occurred at 04:30, not at 03:30.
1073*bc421551SDag-Erling Smørgrav    In 1947 its fall-back transition was on 11-30, not 12-30.
1074*bc421551SDag-Erling Smørgrav    (Thanks to P Chan.)
1075*bc421551SDag-Erling Smørgrav
1076*bc421551SDag-Erling Smørgrav  Changes to past time zone abbreviations
1077*bc421551SDag-Erling Smørgrav
1078*bc421551SDag-Erling Smørgrav    Italy's 1866 transition to Rome Mean Time was on December 12, not
1079*bc421551SDag-Erling Smørgrav    September 22.  This affects only the time zone abbreviation for
1080*bc421551SDag-Erling Smørgrav    Europe/Rome between those dates.  (Thanks to Stephen Trainor and
1081*bc421551SDag-Erling Smørgrav    Luigi Rosa.)
1082*bc421551SDag-Erling Smørgrav
1083*bc421551SDag-Erling Smørgrav  Changes affecting metadata only
1084*bc421551SDag-Erling Smørgrav
1085*bc421551SDag-Erling Smørgrav    Add info about the Crimea situation in zone1970.tab and zone.tab.
1086*bc421551SDag-Erling Smørgrav    (Problem reported by Serhii Demediuk.)
1087*bc421551SDag-Erling Smørgrav
1088*bc421551SDag-Erling Smørgrav  Changes to code
1089*bc421551SDag-Erling Smørgrav
1090*bc421551SDag-Erling Smørgrav    zic's new -b option supports a way to control data bloat and to
1091*bc421551SDag-Erling Smørgrav    test for year-2038 bugs in software that reads TZif files.
1092*bc421551SDag-Erling Smørgrav    'zic -b fat' and 'zic -b slim' generate larger and smaller output;
1093*bc421551SDag-Erling Smørgrav    for example, changing from fat to slim shrinks the Europe/London
1094*bc421551SDag-Erling Smørgrav    file from 3648 to 1599 bytes, saving about 56%.  Fat and slim
1095*bc421551SDag-Erling Smørgrav    files represent the same set of timestamps and use the same TZif
1096*bc421551SDag-Erling Smørgrav    format as documented in tzfile(5) and in Internet RFC 8536.
1097*bc421551SDag-Erling Smørgrav    Fat format attempts to work around bugs or incompatibilities in
1098*bc421551SDag-Erling Smørgrav    older software, notably software that mishandles 64-bit TZif data
1099*bc421551SDag-Erling Smørgrav    or uses obsolete TZ strings like "EET-2EEST" that lack DST rules.
1100*bc421551SDag-Erling Smørgrav    Slim format is more efficient and does not work around 64-bit bugs
1101*bc421551SDag-Erling Smørgrav    or obsolete TZ strings.  Currently zic defaults to fat format
1102*bc421551SDag-Erling Smørgrav    unless you compile with -DZIC_BLOAT_DEFAULT=\"slim\"; this
1103*bc421551SDag-Erling Smørgrav    out-of-the-box default is intended to change in future releases
1104*bc421551SDag-Erling Smørgrav    as the buggy software often mishandles timestamps anyway.
1105*bc421551SDag-Erling Smørgrav
1106*bc421551SDag-Erling Smørgrav    zic no longer treats a set of rules ending in 2037 specially.
1107*bc421551SDag-Erling Smørgrav    Previously, zic assumed that such a ruleset meant that future
1108*bc421551SDag-Erling Smørgrav    timestamps could not be predicted, and therefore omitted a
1109*bc421551SDag-Erling Smørgrav    POSIX-like TZ string in the TZif output.  The old behavior is no
1110*bc421551SDag-Erling Smørgrav    longer needed for current tzdata, and caused problems with newlib
1111*bc421551SDag-Erling Smørgrav    when used with older tzdata (reported by David Gauchard).
1112*bc421551SDag-Erling Smørgrav
1113*bc421551SDag-Erling Smørgrav    zic no longer generates some artifact transitions.  For example,
1114*bc421551SDag-Erling Smørgrav    Europe/London no longer has a no-op transition in January 1996.
1115*bc421551SDag-Erling Smørgrav
1116*bc421551SDag-Erling Smørgrav  Changes to build procedure
1117*bc421551SDag-Erling Smørgrav
1118*bc421551SDag-Erling Smørgrav    tzdata.zi now assumes zic 2017c or later.  This shrinks tzdata.zi
1119*bc421551SDag-Erling Smørgrav    by a percent or so.
1120*bc421551SDag-Erling Smørgrav
1121*bc421551SDag-Erling Smørgrav  Changes to documentation and commentary
1122*bc421551SDag-Erling Smørgrav
1123*bc421551SDag-Erling Smørgrav    The Makefile now documents the POSIXRULES macro as being obsolete,
1124*bc421551SDag-Erling Smørgrav    and similarly, zic's -p POSIXRULES option is now documented as
1125*bc421551SDag-Erling Smørgrav    being obsolete.  Although the POSIXRULES feature still exists and
1126*bc421551SDag-Erling Smørgrav    works as before, in practice it is rarely used for its intended
1127*bc421551SDag-Erling Smørgrav    purpose, and it does not work either in the default reference
1128*bc421551SDag-Erling Smørgrav    implementation (for timestamps after 2037) or in common
1129*bc421551SDag-Erling Smørgrav    implementations such as GNU/Linux (for contemporary timestamps).
1130*bc421551SDag-Erling Smørgrav    Since POSIXRULES was designed primarily as a temporary transition
1131*bc421551SDag-Erling Smørgrav    facility for System V platforms that died off decades ago, it is
1132*bc421551SDag-Erling Smørgrav    being decommissioned rather than institutionalized.
1133*bc421551SDag-Erling Smørgrav
1134*bc421551SDag-Erling Smørgrav    New info on Bonin Islands and Marcus (thanks to Wakaba and Phake Nick).
1135*bc421551SDag-Erling Smørgrav
1136*bc421551SDag-Erling Smørgrav
1137*bc421551SDag-Erling SmørgravRelease 2019a - 2019-03-25 22:01:33 -0700
1138*bc421551SDag-Erling Smørgrav
1139*bc421551SDag-Erling Smørgrav  Briefly:
1140*bc421551SDag-Erling Smørgrav    Palestine "springs forward" on 2019-03-30 instead of 2019-03-23.
1141*bc421551SDag-Erling Smørgrav    Metlakatla "fell back" to rejoin Alaska Time on 2019-01-20 at 02:00.
1142*bc421551SDag-Erling Smørgrav
1143*bc421551SDag-Erling Smørgrav  Changes to past and future timestamps
1144*bc421551SDag-Erling Smørgrav
1145*bc421551SDag-Erling Smørgrav    Palestine will not start DST until 2019-03-30, instead of 2019-03-23 as
1146*bc421551SDag-Erling Smørgrav    previously predicted.  Adjust our prediction by guessing that spring
1147*bc421551SDag-Erling Smørgrav    transitions will be between 24 and 30 March, which matches recent practice
1148*bc421551SDag-Erling Smørgrav    since 2016.  (Thanks to Even Scharning and Tim Parenti.)
1149*bc421551SDag-Erling Smørgrav
1150*bc421551SDag-Erling Smørgrav    Metlakatla ended its observance of Pacific standard time,
1151*bc421551SDag-Erling Smørgrav    rejoining Alaska Time, on 2019-01-20 at 02:00.  (Thanks to Ryan
1152*bc421551SDag-Erling Smørgrav    Stanley and Tim Parenti.)
1153*bc421551SDag-Erling Smørgrav
1154*bc421551SDag-Erling Smørgrav  Changes to past timestamps
1155*bc421551SDag-Erling Smørgrav
1156*bc421551SDag-Erling Smørgrav    Israel observed DST in 1980 (08-02/09-13) and 1984 (05-05/08-25).
1157*bc421551SDag-Erling Smørgrav    (Thanks to Alois Treindl and Isaac Starkman.)
1158*bc421551SDag-Erling Smørgrav
1159*bc421551SDag-Erling Smørgrav  Changes to time zone abbreviations
1160*bc421551SDag-Erling Smørgrav
1161*bc421551SDag-Erling Smørgrav    Etc/UCT is now a backward-compatibility link to Etc/UTC, instead
1162*bc421551SDag-Erling Smørgrav    of being a separate zone that generates the abbreviation "UCT",
1163*bc421551SDag-Erling Smørgrav    which nowadays is typically a typo.  (Problem reported by Isiah
1164*bc421551SDag-Erling Smørgrav    Meadows.)
1165*bc421551SDag-Erling Smørgrav
1166*bc421551SDag-Erling Smørgrav  Changes to code
1167*bc421551SDag-Erling Smørgrav
1168*bc421551SDag-Erling Smørgrav    zic now has an -r option to limit the time range of output data.
1169*bc421551SDag-Erling Smørgrav    For example, 'zic -r @1000000000' limits the output data to
1170*bc421551SDag-Erling Smørgrav    timestamps starting 1000000000 seconds after the Epoch.
1171*bc421551SDag-Erling Smørgrav    This helps shrink output size and can be useful for applications
1172*bc421551SDag-Erling Smørgrav    not needing the full timestamp history, such as TZDIST truncation;
1173*bc421551SDag-Erling Smørgrav    see Internet RFC 8536 section 5.1.  (Inspired by a feature request
1174*bc421551SDag-Erling Smørgrav    from Christopher Wong, helped along by bug reports from Wong and
1175*bc421551SDag-Erling Smørgrav    from Tim Parenti.)
1176*bc421551SDag-Erling Smørgrav
1177*bc421551SDag-Erling Smørgrav  Changes to documentation
1178*bc421551SDag-Erling Smørgrav
1179*bc421551SDag-Erling Smørgrav    Mention Internet RFC 8536 (February 2019), which documents TZif.
1180*bc421551SDag-Erling Smørgrav
1181*bc421551SDag-Erling Smørgrav    tz-link.html now cites tzdata-meta
1182*bc421551SDag-Erling Smørgrav    <https://tzdata-meta.timtimeonline.com/>.
1183*bc421551SDag-Erling Smørgrav
1184*bc421551SDag-Erling Smørgrav
1185*bc421551SDag-Erling SmørgravRelease 2018i - 2018-12-30 11:05:43 -0800
1186*bc421551SDag-Erling Smørgrav
1187*bc421551SDag-Erling Smørgrav  Briefly:
1188*bc421551SDag-Erling Smørgrav    São Tomé and Príncipe switches from +01 to +00 on 2019-01-01.
1189*bc421551SDag-Erling Smørgrav
1190*bc421551SDag-Erling Smørgrav  Changes to future timestamps
1191*bc421551SDag-Erling Smørgrav
1192*bc421551SDag-Erling Smørgrav    Due to a change in government, São Tomé and Príncipe switches back
1193*bc421551SDag-Erling Smørgrav    from +01 to +00 on 2019-01-01 at 02:00.  (Thanks to Vadim
1194*bc421551SDag-Erling Smørgrav    Nasardinov and Michael Deckers.)
1195*bc421551SDag-Erling Smørgrav
1196*bc421551SDag-Erling Smørgrav
1197*bc421551SDag-Erling SmørgravRelease 2018h - 2018-12-23 17:59:32 -0800
1198*bc421551SDag-Erling Smørgrav
1199*bc421551SDag-Erling Smørgrav  Briefly:
1200*bc421551SDag-Erling Smørgrav    Qyzylorda, Kazakhstan moved from +06 to +05 on 2018-12-21.
1201*bc421551SDag-Erling Smørgrav    New zone Asia/Qostanay because Qostanay, Kazakhstan didn't move.
1202*bc421551SDag-Erling Smørgrav    Metlakatla, Alaska observes PST this winter only.
1203*bc421551SDag-Erling Smørgrav    Guess Morocco will continue to adjust clocks around Ramadan.
1204*bc421551SDag-Erling Smørgrav    Add predictions for Iran from 2038 through 2090.
1205*bc421551SDag-Erling Smørgrav
1206*bc421551SDag-Erling Smørgrav  Changes to future timestamps
1207*bc421551SDag-Erling Smørgrav
1208*bc421551SDag-Erling Smørgrav    Guess that Morocco will continue to fall back just before and
1209*bc421551SDag-Erling Smørgrav    spring forward just after Ramadan, the practice since 2012.
1210*bc421551SDag-Erling Smørgrav    (Thanks to Maamar Abdelkader.)  This means Morocco will observe
1211*bc421551SDag-Erling Smørgrav    negative DST during Ramadan in main and vanguard formats, and in
1212*bc421551SDag-Erling Smørgrav    rearguard format it stays in the +00 timezone and observes
1213*bc421551SDag-Erling Smørgrav    ordinary DST in all months other than Ramadan.  As before, extend
1214*bc421551SDag-Erling Smørgrav    this guesswork to the year 2037.  As a consequence, Morocco is
1215*bc421551SDag-Erling Smørgrav    scheduled to observe three DST transitions in some Gregorian years
1216*bc421551SDag-Erling Smørgrav    (e.g., 2033) due to the mismatch between the Gregorian and Islamic
1217*bc421551SDag-Erling Smørgrav    calendars.
1218*bc421551SDag-Erling Smørgrav
1219*bc421551SDag-Erling Smørgrav    The table of exact transitions for Iranian DST has been extended.
1220*bc421551SDag-Erling Smørgrav    It formerly cut off before the year 2038 in a nod to 32-bit time_t.
1221*bc421551SDag-Erling Smørgrav    It now cuts off before 2091 as there is doubt about how the Persian
1222*bc421551SDag-Erling Smørgrav    calendar will treat 2091.  This change predicts DST transitions in
1223*bc421551SDag-Erling Smørgrav    2038-9, 2042-3, and 2046-7 to occur one day later than previously
1224*bc421551SDag-Erling Smørgrav    predicted.  As before, post-cutoff transitions are approximated.
1225*bc421551SDag-Erling Smørgrav
1226*bc421551SDag-Erling Smørgrav  Changes to past and future timestamps
1227*bc421551SDag-Erling Smørgrav
1228*bc421551SDag-Erling Smørgrav    Qyzylorda (aka Kyzylorda) oblast in Kazakhstan moved from +06 to
1229*bc421551SDag-Erling Smørgrav    +05 on 2018-12-21.  This is a zone split as Qostanay (aka
1230*bc421551SDag-Erling Smørgrav    Kostanay) did not switch, so create a zone Asia/Qostanay.
1231*bc421551SDag-Erling Smørgrav
1232*bc421551SDag-Erling Smørgrav    Metlakatla moved from Alaska to Pacific standard time on 2018-11-04.
1233*bc421551SDag-Erling Smørgrav    It did not change clocks that day and remains on -08 this winter.
1234*bc421551SDag-Erling Smørgrav    (Thanks to Ryan Stanley.)  It will revert to the usual Alaska
1235*bc421551SDag-Erling Smørgrav    rules next spring, so this change affects only timestamps
1236*bc421551SDag-Erling Smørgrav    from 2018-11-04 through 2019-03-10.
1237*bc421551SDag-Erling Smørgrav
1238*bc421551SDag-Erling Smørgrav  Change to past timestamps
1239*bc421551SDag-Erling Smørgrav
1240*bc421551SDag-Erling Smørgrav    Kwajalein's 1993-08-20 transition from -12 to +12 was at 24:00,
1241*bc421551SDag-Erling Smørgrav    not 00:00.  I transcribed the time incorrectly from Shanks.
1242*bc421551SDag-Erling Smørgrav    (Thanks to Phake Nick.)
1243*bc421551SDag-Erling Smørgrav
1244*bc421551SDag-Erling Smørgrav    Nauru's 1979 transition was on 02-10 at 02:00, not 05-01 at 00:00.
1245*bc421551SDag-Erling Smørgrav    (Thanks to Phake Nick.)
1246*bc421551SDag-Erling Smørgrav
1247*bc421551SDag-Erling Smørgrav    Guam observed DST irregularly from 1959 through 1977.
1248*bc421551SDag-Erling Smørgrav    (Thanks to Phake Nick.)
1249*bc421551SDag-Erling Smørgrav
1250*bc421551SDag-Erling Smørgrav    Hong Kong observed DST in 1941 starting 06-15 (not 04-01), then on
1251*bc421551SDag-Erling Smørgrav    10-01 changed standard time to +08:30 (not +08).  Its transition
1252*bc421551SDag-Erling Smørgrav    back to +08 after WWII was on 1945-09-15, not the previous day.
1253*bc421551SDag-Erling Smørgrav    Its 1904-10-30 change took effect at 01:00 +08 (not 00:00 LMT).
1254*bc421551SDag-Erling Smørgrav    (Thanks to Phake Nick, Steve Allen, and Joseph Myers.)  Also,
1255*bc421551SDag-Erling Smørgrav    its 1952 fallback was on 11-02 (not 10-25).
1256*bc421551SDag-Erling Smørgrav
1257*bc421551SDag-Erling Smørgrav    This release contains many changes to timestamps before 1946 due
1258*bc421551SDag-Erling Smørgrav    to Japanese possession or occupation of Pacific/Chuuk,
1259*bc421551SDag-Erling Smørgrav    Pacific/Guam, Pacific/Kosrae, Pacific/Kwajalein, Pacific/Majuro,
1260*bc421551SDag-Erling Smørgrav    Pacific/Nauru, Pacific/Palau, and Pacific/Pohnpei.
1261*bc421551SDag-Erling Smørgrav    (Thanks to Phake Nick.)
1262*bc421551SDag-Erling Smørgrav
1263*bc421551SDag-Erling Smørgrav    Assume that the Spanish East Indies was like the Philippines and
1264*bc421551SDag-Erling Smørgrav    observed American time until the end of 1844.  This affects
1265*bc421551SDag-Erling Smørgrav    Pacific/Chuuk, Pacific/Kosrae, Pacific/Palau, and Pacific/Pohnpei.
1266*bc421551SDag-Erling Smørgrav
1267*bc421551SDag-Erling Smørgrav  Changes to past tm_isdst flags
1268*bc421551SDag-Erling Smørgrav
1269*bc421551SDag-Erling Smørgrav    For the recent Morocco change, the tm_isdst flag should be 1 from
1270*bc421551SDag-Erling Smørgrav    2018-10-27 00:00 to 2018-10-28 03:00.  (Thanks to Michael Deckers.)
1271*bc421551SDag-Erling Smørgrav    Give a URL to the official decree.  (Thanks to Matt Johnson.)
1272*bc421551SDag-Erling Smørgrav
1273*bc421551SDag-Erling Smørgrav
1274*bc421551SDag-Erling SmørgravRelease 2018g - 2018-10-26 22:22:45 -0700
1275*bc421551SDag-Erling Smørgrav
1276*bc421551SDag-Erling Smørgrav  Briefly:
1277*bc421551SDag-Erling Smørgrav    Morocco switches to permanent +01 on 2018-10-28.
1278*bc421551SDag-Erling Smørgrav
1279*bc421551SDag-Erling Smørgrav  Changes to future timestamps
1280*bc421551SDag-Erling Smørgrav
1281*bc421551SDag-Erling Smørgrav    Morocco switches from +00/+01 to permanent +01 effective 2018-10-28,
1282*bc421551SDag-Erling Smørgrav    so its clocks will not fall back as previously scheduled.
1283*bc421551SDag-Erling Smørgrav    (Thanks to Mohamed Essedik Najd and Brian Inglis.)
1284*bc421551SDag-Erling Smørgrav
1285*bc421551SDag-Erling Smørgrav  Changes to code
1286*bc421551SDag-Erling Smørgrav
1287*bc421551SDag-Erling Smørgrav    When generating TZif files with leap seconds, zic no longer uses a
1288*bc421551SDag-Erling Smørgrav    format that trips up older 32-bit clients, fixing a bug introduced
1289*bc421551SDag-Erling Smørgrav    in 2018f.  (Reported by Daniel Fischer.)  Also, the zic workaround
1290*bc421551SDag-Erling Smørgrav    for QTBUG-53071 now also works for TZif files with leap seconds.
1291*bc421551SDag-Erling Smørgrav
1292*bc421551SDag-Erling Smørgrav    The translator to rearguard format now rewrites the line
1293*bc421551SDag-Erling Smørgrav    "Rule Japan 1948 1951 - Sep Sat>=8 25:00 0 S" to
1294*bc421551SDag-Erling Smørgrav    "Rule Japan 1948 1951 - Sep Sun>=9  1:00 0 S".
1295*bc421551SDag-Erling Smørgrav    This caters to zic before 2007 and to Oracle TZUpdater 2.2.0
1296*bc421551SDag-Erling Smørgrav    and earlier.  (Reported by Christos Zoulas.)
1297*bc421551SDag-Erling Smørgrav
1298*bc421551SDag-Erling Smørgrav  Changes to past time zone abbreviations
1299*bc421551SDag-Erling Smørgrav
1300*bc421551SDag-Erling Smørgrav    Change HDT to HWT/HPT for WWII-era abbreviations in Hawaii.
1301*bc421551SDag-Erling Smørgrav    This reverts to 2011h, as the abbreviation change in 2011i was
1302*bc421551SDag-Erling Smørgrav    likely inadvertent.
1303*bc421551SDag-Erling Smørgrav
1304*bc421551SDag-Erling Smørgrav  Changes to documentation
1305*bc421551SDag-Erling Smørgrav
1306*bc421551SDag-Erling Smørgrav    tzfile.5 has new sections on interoperability issues.
1307*bc421551SDag-Erling Smørgrav
1308*bc421551SDag-Erling Smørgrav
1309*bc421551SDag-Erling SmørgravRelease 2018f - 2018-10-18 00:14:18 -0700
1310*bc421551SDag-Erling Smørgrav
1311*bc421551SDag-Erling Smørgrav  Briefly:
1312*bc421551SDag-Erling Smørgrav  Volgograd moves from +03 to +04 on 2018-10-28.
1313*bc421551SDag-Erling Smørgrav  Fiji ends DST 2019-01-13, not 2019-01-20.
1314*bc421551SDag-Erling Smørgrav  Most of Chile changes DST dates, effective 2019-04-06.
1315*bc421551SDag-Erling Smørgrav
1316*bc421551SDag-Erling Smørgrav  Changes to future timestamps
1317*bc421551SDag-Erling Smørgrav
1318*bc421551SDag-Erling Smørgrav    Volgograd moves from +03 to +04 on 2018-10-28 at 02:00.
1319*bc421551SDag-Erling Smørgrav    (Thanks to Alexander Fetisov and Stepan Golosunov.)
1320*bc421551SDag-Erling Smørgrav
1321*bc421551SDag-Erling Smørgrav    Fiji ends DST 2019-01-13 instead of the 2019-01-20 previously
1322*bc421551SDag-Erling Smørgrav    predicted.  (Thanks to Raymond Kumar.)  Adjust future predictions
1323*bc421551SDag-Erling Smørgrav    accordingly.
1324*bc421551SDag-Erling Smørgrav
1325*bc421551SDag-Erling Smørgrav    Most of Chile will end DST on the first Saturday in April at 24:00 mainland
1326*bc421551SDag-Erling Smørgrav    time, and resume DST on the first Saturday in September at 24:00 mainland
1327*bc421551SDag-Erling Smørgrav    time.  The changes are effective from 2019-04-06, and do not affect the
1328*bc421551SDag-Erling Smørgrav    Magallanes region modeled by America/Punta_Arenas.  (Thanks to Juan Correa
1329*bc421551SDag-Erling Smørgrav    and Tim Parenti.)  Adjust future predictions accordingly.
1330*bc421551SDag-Erling Smørgrav
1331*bc421551SDag-Erling Smørgrav  Changes to past timestamps
1332*bc421551SDag-Erling Smørgrav
1333*bc421551SDag-Erling Smørgrav    The 2018-05-05 North Korea 30-minute time zone change took place
1334*bc421551SDag-Erling Smørgrav    at 23:30 the previous day, not at 00:00 that day.
1335*bc421551SDag-Erling Smørgrav
1336*bc421551SDag-Erling Smørgrav    China's 1988 spring-forward transition was on April 17, not
1337*bc421551SDag-Erling Smørgrav    April 10.  Its DST transitions in 1986/91 were at 02:00, not 00:00.
1338*bc421551SDag-Erling Smørgrav    (Thanks to P Chan.)
1339*bc421551SDag-Erling Smørgrav
1340*bc421551SDag-Erling Smørgrav    Fix several issues for Macau before 1992.  Macau's pre-1904 LMT
1341*bc421551SDag-Erling Smørgrav    was off by 10 s.  Macau switched to +08 in 1904 not 1912, and
1342*bc421551SDag-Erling Smørgrav    temporarily switched to +09/+10 during World War II.  Macau
1343*bc421551SDag-Erling Smørgrav    observed DST in 1942/79, not 1961/80, and there were several
1344*bc421551SDag-Erling Smørgrav    errors for transition times and dates.  (Thanks to P Chan.)
1345*bc421551SDag-Erling Smørgrav
1346*bc421551SDag-Erling Smørgrav    The 1948-1951 fallback transitions in Japan were at 25:00 on
1347*bc421551SDag-Erling Smørgrav    September's second Saturday, not at 24:00.  (Thanks to Phake Nick.)
1348*bc421551SDag-Erling Smørgrav    zic turns this into 01:00 on the day after September's second
1349*bc421551SDag-Erling Smørgrav    Saturday, which is the best that POSIX or C platforms can do.
1350*bc421551SDag-Erling Smørgrav
1351*bc421551SDag-Erling Smørgrav    Incorporate 1940-1949 Asia/Shanghai DST transitions from a 2014
1352*bc421551SDag-Erling Smørgrav    paper by Li Yu, replacing more-questionable data from Shanks.
1353*bc421551SDag-Erling Smørgrav
1354*bc421551SDag-Erling Smørgrav  Changes to time zone abbreviations
1355*bc421551SDag-Erling Smørgrav
1356*bc421551SDag-Erling Smørgrav    Use "PST" and "PDT" for Philippine time.  (Thanks to Paul Goyette.)
1357*bc421551SDag-Erling Smørgrav
1358*bc421551SDag-Erling Smørgrav  Changes to code
1359*bc421551SDag-Erling Smørgrav
1360*bc421551SDag-Erling Smørgrav    zic now always generates TZif files where time type 0 is used for
1361*bc421551SDag-Erling Smørgrav    timestamps before the first transition.  This simplifies the
1362*bc421551SDag-Erling Smørgrav    reading of TZif files and should not affect behavior of existing
1363*bc421551SDag-Erling Smørgrav    TZif readers because the same set of time types is used; only
1364*bc421551SDag-Erling Smørgrav    their internal indexes may have changed.  This affects only the
1365*bc421551SDag-Erling Smørgrav    legacy zones EST5EDT, CST6CDT, MST7MDT, PST8PDT, CET, MET, and
1366*bc421551SDag-Erling Smørgrav    EET, which previously used nonzero types for these timestamps.
1367*bc421551SDag-Erling Smørgrav
1368*bc421551SDag-Erling Smørgrav    Because of the type 0 change, zic no longer outputs a dummy
1369*bc421551SDag-Erling Smørgrav    transition at time -2**59 (before the Big Bang), as clients should
1370*bc421551SDag-Erling Smørgrav    no longer need this to handle historical timestamps correctly.
1371*bc421551SDag-Erling Smørgrav    This reverts a change introduced in 2013d and shrinks most TZif
1372*bc421551SDag-Erling Smørgrav    files by a few bytes.
1373*bc421551SDag-Erling Smørgrav
1374*bc421551SDag-Erling Smørgrav    zic now supports negative time-of-day in Rule and Leap lines, e.g.,
1375*bc421551SDag-Erling Smørgrav    "Rule X min max - Apr lastSun -6:00 1:00 -" means the transition
1376*bc421551SDag-Erling Smørgrav    occurs at 18:00 on the Saturday before the last Sunday in April.
1377*bc421551SDag-Erling Smørgrav    This behavior was documented in 2018a but the code did not
1378*bc421551SDag-Erling Smørgrav    entirely match the documentation.
1379*bc421551SDag-Erling Smørgrav
1380*bc421551SDag-Erling Smørgrav    localtime.c no longer requires at least one time type in TZif
1381*bc421551SDag-Erling Smørgrav    files that lack transitions or have a POSIX-style TZ string.  This
1382*bc421551SDag-Erling Smørgrav    future-proofs the code against possible future extensions to the
1383*bc421551SDag-Erling Smørgrav    format that would allow TZif files with POSIX-style TZ strings and
1384*bc421551SDag-Erling Smørgrav    without transitions or time types.
1385*bc421551SDag-Erling Smørgrav
1386*bc421551SDag-Erling Smørgrav    A read-access subscript error in localtime.c has been fixed.
1387*bc421551SDag-Erling Smørgrav    It could occur only in TZif files with timecnt == 0, something that
1388*bc421551SDag-Erling Smørgrav    does not happen in practice now but could happen in future versions.
1389*bc421551SDag-Erling Smørgrav
1390*bc421551SDag-Erling Smørgrav    localtime.c no longer ignores TZif POSIX-style TZ strings that
1391*bc421551SDag-Erling Smørgrav    specify only standard time.  Instead, these TZ strings now
1392*bc421551SDag-Erling Smørgrav    override the default time type for timestamps after the last
1393*bc421551SDag-Erling Smørgrav    transition (or for all timestamps if there are no transitions),
1394*bc421551SDag-Erling Smørgrav    just as DST strings specifying DST have always done.
1395*bc421551SDag-Erling Smørgrav
1396*bc421551SDag-Erling Smørgrav    leapseconds.awk now outputs "#updated" and "#expires" comments,
1397*bc421551SDag-Erling Smørgrav    and supports leap seconds at the ends of months other than June
1398*bc421551SDag-Erling Smørgrav    and December.  (Inspired by suggestions from Chris Woodbury.)
1399*bc421551SDag-Erling Smørgrav
1400*bc421551SDag-Erling Smørgrav  Changes to documentation
1401*bc421551SDag-Erling Smørgrav
1402*bc421551SDag-Erling Smørgrav    New restrictions: A Rule name must start with a character that
1403*bc421551SDag-Erling Smørgrav    is neither an ASCII digit nor "-" nor "+", and an unquoted name
1404*bc421551SDag-Erling Smørgrav    should not use characters in the set "!$%&'()*,/:;<=>?@[\]^`{|}~".
1405*bc421551SDag-Erling Smørgrav    The latter restriction makes room for future extensions (a
1406*bc421551SDag-Erling Smørgrav    possibility noted by Tom Lane).
1407*bc421551SDag-Erling Smørgrav
1408*bc421551SDag-Erling Smørgrav    tzfile.5 now documents what time types apply before the first and
1409*bc421551SDag-Erling Smørgrav    after the last transition, if any.
1410*bc421551SDag-Erling Smørgrav
1411*bc421551SDag-Erling Smørgrav    Documentation now uses the spelling "timezone" for a TZ setting
1412*bc421551SDag-Erling Smørgrav    that determines timestamp history, and "time zone" for a
1413*bc421551SDag-Erling Smørgrav    geographic region currently sharing the same standard time.
1414*bc421551SDag-Erling Smørgrav
1415*bc421551SDag-Erling Smørgrav    The name "TZif" is now used for the tz binary data format.
1416*bc421551SDag-Erling Smørgrav
1417*bc421551SDag-Erling Smørgrav    tz-link.htm now mentions the A0 TimeZone Migration utilities.
1418*bc421551SDag-Erling Smørgrav    (Thanks to Aldrin Martoq for the link.)
1419*bc421551SDag-Erling Smørgrav
1420*bc421551SDag-Erling Smørgrav  Changes to build procedure
1421*bc421551SDag-Erling Smørgrav
1422*bc421551SDag-Erling Smørgrav    New 'make' target 'rearguard_tarballs' to build the rearguard
1423*bc421551SDag-Erling Smørgrav    tarball only.  This is a convenience on platforms that lack lzip
1424*bc421551SDag-Erling Smørgrav    if you want to build the rearguard tarball.  (Problem reported by
1425*bc421551SDag-Erling Smørgrav    Deborah Goldsmith.)
1426*bc421551SDag-Erling Smørgrav
1427*bc421551SDag-Erling Smørgrav    tzdata.zi is now more stable from release to release.  (Problem
1428*bc421551SDag-Erling Smørgrav    noted by Tom Lane.)  It is also a bit shorter.
1429*bc421551SDag-Erling Smørgrav
1430*bc421551SDag-Erling Smørgrav    tzdata.zi now can contain comment lines documenting configuration
1431*bc421551SDag-Erling Smørgrav    information, such as which data format was selected, which input
1432*bc421551SDag-Erling Smørgrav    files were used, and how leap seconds are treated.  (Problems
1433*bc421551SDag-Erling Smørgrav    noted by Lester Caine and Brian Inglis.)  If the Makefile defaults
1434*bc421551SDag-Erling Smørgrav    are used these comment lines are absent, for backward
1435*bc421551SDag-Erling Smørgrav    compatibility.  A redistributor intending to alter its copy of the
1436*bc421551SDag-Erling Smørgrav    files should also append "-LABEL" to the 'version' file's first
1437*bc421551SDag-Erling Smørgrav    line, where "LABEL" identifies the redistributor's change.
1438*bc421551SDag-Erling Smørgrav
1439*bc421551SDag-Erling Smørgrav
1440*bc421551SDag-Erling SmørgravRelease 2018e - 2018-05-01 23:42:51 -0700
1441*bc421551SDag-Erling Smørgrav
1442*bc421551SDag-Erling Smørgrav  Briefly:
1443*bc421551SDag-Erling Smørgrav
1444*bc421551SDag-Erling Smørgrav    North Korea switches back to +09 on 2018-05-05.
1445*bc421551SDag-Erling Smørgrav    The main format uses negative DST again, for Ireland etc.
1446*bc421551SDag-Erling Smørgrav    'make tarballs' now also builds a rearguard tarball.
1447*bc421551SDag-Erling Smørgrav    New 's' and 'd' suffixes in SAVE columns of Rule and Zone lines.
1448*bc421551SDag-Erling Smørgrav
1449*bc421551SDag-Erling Smørgrav  Changes to past and future timestamps
1450*bc421551SDag-Erling Smørgrav
1451*bc421551SDag-Erling Smørgrav    North Korea switches back from +0830 to +09 on 2018-05-05.
1452*bc421551SDag-Erling Smørgrav    (Thanks to Kang Seonghoon, Arthur David Olson, Seo Sanghyeon,
1453*bc421551SDag-Erling Smørgrav    and Tim Parenti.)
1454*bc421551SDag-Erling Smørgrav
1455*bc421551SDag-Erling Smørgrav    Bring back the negative-DST changes of 2018a, except be more
1456*bc421551SDag-Erling Smørgrav    compatible with data parsers that do not support negative DST.
1457*bc421551SDag-Erling Smørgrav    Also, this now affects historical timestamps in Namibia and the
1458*bc421551SDag-Erling Smørgrav    former Czechoslovakia, not just Ireland.  The main format now uses
1459*bc421551SDag-Erling Smørgrav    negative DST to model timestamps in Europe/Dublin (from 1971 on),
1460*bc421551SDag-Erling Smørgrav    Europe/Prague (1946/7), and Africa/Windhoek (1994/2017).  This
1461*bc421551SDag-Erling Smørgrav    does not affect UT offsets, only time zone abbreviations and the
1462*bc421551SDag-Erling Smørgrav    tm_isdst flag.  Also, this does not affect rearguard or vanguard
1463*bc421551SDag-Erling Smørgrav    formats; effectively the main format now uses vanguard instead of
1464*bc421551SDag-Erling Smørgrav    rearguard format.  Data parsers that do not support negative DST
1465*bc421551SDag-Erling Smørgrav    can still use data from the rearguard tarball described below.
1466*bc421551SDag-Erling Smørgrav
1467*bc421551SDag-Erling Smørgrav  Changes to build procedure
1468*bc421551SDag-Erling Smørgrav
1469*bc421551SDag-Erling Smørgrav    The command 'make tarballs' now also builds the tarball
1470*bc421551SDag-Erling Smørgrav    tzdataVERSION-rearguard.tar.gz, which is like tzdataVERSION.tar.gz
1471*bc421551SDag-Erling Smørgrav    except that it uses rearguard format intended for trailing-edge
1472*bc421551SDag-Erling Smørgrav    data parsers.
1473*bc421551SDag-Erling Smørgrav
1474*bc421551SDag-Erling Smørgrav  Changes to data format and to code
1475*bc421551SDag-Erling Smørgrav
1476*bc421551SDag-Erling Smørgrav    The SAVE column of Rule and Zone lines can now have an 's' or 'd'
1477*bc421551SDag-Erling Smørgrav    suffix, which specifies whether the adjusted time is standard time
1478*bc421551SDag-Erling Smørgrav    or daylight saving time.  If no suffix is given, daylight saving
1479*bc421551SDag-Erling Smørgrav    time is used if and only if the SAVE column is nonzero; this is
1480*bc421551SDag-Erling Smørgrav    the longstanding behavior.  Although this new feature is not used
1481*bc421551SDag-Erling Smørgrav    in tzdata, it could be used to specify the legal time in Namibia
1482*bc421551SDag-Erling Smørgrav    1994-2017, as opposed to the popular time (see below).
1483*bc421551SDag-Erling Smørgrav
1484*bc421551SDag-Erling Smørgrav  Changes to past timestamps
1485*bc421551SDag-Erling Smørgrav
1486*bc421551SDag-Erling Smørgrav    From 1994 through 2017 Namibia observed DST in winter, not summer.
1487*bc421551SDag-Erling Smørgrav    That is, it used negative DST, as Ireland still does.  This change
1488*bc421551SDag-Erling Smørgrav    does not affect UTC offsets; it affects only the tm_isdst flag and
1489*bc421551SDag-Erling Smørgrav    the abbreviation used during summer, which is now CAT, not WAST.
1490*bc421551SDag-Erling Smørgrav    Although (as noted by Michael Deckers) summer and winter time were
1491*bc421551SDag-Erling Smørgrav    both simply called "standard time" in Namibian law, in common
1492*bc421551SDag-Erling Smørgrav    practice winter time was considered to be DST (as noted by Stephen
1493*bc421551SDag-Erling Smørgrav    Colebourne).  The full effect of this change is only in vanguard
1494*bc421551SDag-Erling Smørgrav    and main format; in rearguard format, the tm_isdst flag is still
1495*bc421551SDag-Erling Smørgrav    zero in winter and nonzero in summer.
1496*bc421551SDag-Erling Smørgrav
1497*bc421551SDag-Erling Smørgrav    In 1946/7 Czechoslovakia also observed negative DST in winter.
1498*bc421551SDag-Erling Smørgrav    The full effect of this change is only in vanguard and main
1499*bc421551SDag-Erling Smørgrav    formats; in rearguard format, it is modeled as plain GMT without
1500*bc421551SDag-Erling Smørgrav    daylight saving.  Also, the dates of some 1944/5 DST transitions
1501*bc421551SDag-Erling Smørgrav    in Czechoslovakia have been changed.
1502*bc421551SDag-Erling Smørgrav
1503*bc421551SDag-Erling Smørgrav
1504*bc421551SDag-Erling SmørgravRelease 2018d - 2018-03-22 07:05:46 -0700
1505*bc421551SDag-Erling Smørgrav
1506*bc421551SDag-Erling Smørgrav  Briefly:
1507*bc421551SDag-Erling Smørgrav
1508*bc421551SDag-Erling Smørgrav  Palestine starts DST a week earlier in 2018.
1509*bc421551SDag-Erling Smørgrav  Add support for vanguard and rearguard data consumers.
1510*bc421551SDag-Erling Smørgrav  Add subsecond precision to source data format, though not to data.
1511*bc421551SDag-Erling Smørgrav
1512*bc421551SDag-Erling Smørgrav  Changes to future timestamps
1513*bc421551SDag-Erling Smørgrav
1514*bc421551SDag-Erling Smørgrav    In 2018, Palestine starts DST on March 24, not March 31.
1515*bc421551SDag-Erling Smørgrav    Adjust future predictions accordingly.  (Thanks to Sharef Mustafa.)
1516*bc421551SDag-Erling Smørgrav
1517*bc421551SDag-Erling Smørgrav  Changes to past and future timestamps
1518*bc421551SDag-Erling Smørgrav
1519*bc421551SDag-Erling Smørgrav    Casey Station in Antarctica changed from +11 to +08 on 2018-03-11
1520*bc421551SDag-Erling Smørgrav    at 04:00.  (Thanks to Steffen Thorsen.)
1521*bc421551SDag-Erling Smørgrav
1522*bc421551SDag-Erling Smørgrav  Changes to past timestamps
1523*bc421551SDag-Erling Smørgrav
1524*bc421551SDag-Erling Smørgrav    Historical transitions for Uruguay, represented by
1525*bc421551SDag-Erling Smørgrav    America/Montevideo, have been updated per official legal documents,
1526*bc421551SDag-Erling Smørgrav    replacing previous data mainly originating from the inventions of
1527*bc421551SDag-Erling Smørgrav    Shanks & Pottenger.  This has resulted in adjustments ranging from
1528*bc421551SDag-Erling Smørgrav    30 to 90 minutes in either direction over at least two dozen
1529*bc421551SDag-Erling Smørgrav    distinct periods ranging from one day to several years in length.
1530*bc421551SDag-Erling Smørgrav    A mere handful of pre-1991 transitions are unaffected; data since
1531*bc421551SDag-Erling Smørgrav    then has come from more reliable contemporaneous reporting.  These
1532*bc421551SDag-Erling Smørgrav    changes affect various timestamps in 1920-1923, 1936, 1939,
1533*bc421551SDag-Erling Smørgrav    1942-1943, 1959, 1966-1970, 1972, 1974-1980, and 1988-1990.
1534*bc421551SDag-Erling Smørgrav    Additionally, Uruguay's pre-standard-time UT offset has been
1535*bc421551SDag-Erling Smørgrav    adjusted westward by 7 seconds, from UT-03:44:44 to UT-03:44:51, to
1536*bc421551SDag-Erling Smørgrav    match the location of the Observatory of the National Meteorological
1537*bc421551SDag-Erling Smørgrav    Institute in Montevideo.
1538*bc421551SDag-Erling Smørgrav    (Thanks to Jeremie Bonjour, Tim Parenti, and Michael Deckers.)
1539*bc421551SDag-Erling Smørgrav
1540*bc421551SDag-Erling Smørgrav    East Kiribati skipped New Year's Eve 1994, not New Year's Day 1995.
1541*bc421551SDag-Erling Smørgrav    (Thanks to Kerry Shetline.)
1542*bc421551SDag-Erling Smørgrav
1543*bc421551SDag-Erling Smørgrav    Fix the 1912-01-01 transition for Portugal and its colonies.
1544*bc421551SDag-Erling Smørgrav    This transition was at 00:00 according to the new UT offset, not
1545*bc421551SDag-Erling Smørgrav    according to the old one.  Also assume that Cape Verde switched on
1546*bc421551SDag-Erling Smørgrav    the same date as the rest, not in 1907.  This affects
1547*bc421551SDag-Erling Smørgrav    Africa/Bissau, Africa/Sao_Tome, Asia/Macau, Atlantic/Azores,
1548*bc421551SDag-Erling Smørgrav    Atlantic/Cape_Verde, Atlantic/Madeira, and Europe/Lisbon.
1549*bc421551SDag-Erling Smørgrav    (Thanks to Michael Deckers.)
1550*bc421551SDag-Erling Smørgrav
1551*bc421551SDag-Erling Smørgrav    Fix an off-by-1 error for pre-1913 timestamps in Jamaica and in
1552*bc421551SDag-Erling Smørgrav    Turks & Caicos.
1553*bc421551SDag-Erling Smørgrav
1554*bc421551SDag-Erling Smørgrav  Changes to past time zone abbreviations
1555*bc421551SDag-Erling Smørgrav
1556*bc421551SDag-Erling Smørgrav    MMT took effect in Uruguay from 1908-06-10, not 1898-06-28.  There
1557*bc421551SDag-Erling Smørgrav    is no clock change associated with the transition.
1558*bc421551SDag-Erling Smørgrav
1559*bc421551SDag-Erling Smørgrav  Changes to build procedure
1560*bc421551SDag-Erling Smørgrav
1561*bc421551SDag-Erling Smørgrav    The new DATAFORM macro in the Makefile lets the installer choose
1562*bc421551SDag-Erling Smørgrav    among three source data formats.  The idea is to lessen downstream
1563*bc421551SDag-Erling Smørgrav    disruption when data formats are improved.
1564*bc421551SDag-Erling Smørgrav
1565*bc421551SDag-Erling Smørgrav    * DATAFORM=vanguard installs from the latest, bleeding-edge
1566*bc421551SDag-Erling Smørgrav      format.  DATAFORM=main (the default) installs from the format
1567*bc421551SDag-Erling Smørgrav      used in the 'africa' etc. files.  DATAFORM=rearguard installs
1568*bc421551SDag-Erling Smørgrav      from a trailing-edge format.  Eventually, elements of today's
1569*bc421551SDag-Erling Smørgrav      vanguard format should move to the main format, and similarly
1570*bc421551SDag-Erling Smørgrav      the main format's features should eventually move to the
1571*bc421551SDag-Erling Smørgrav      rearguard format.
1572*bc421551SDag-Erling Smørgrav
1573*bc421551SDag-Erling Smørgrav    * In the current version, the main and rearguard formats are
1574*bc421551SDag-Erling Smørgrav      identical and match that of 2018c, so this change does not
1575*bc421551SDag-Erling Smørgrav      affect default behavior.  The vanguard format currently contains
1576*bc421551SDag-Erling Smørgrav      one feature not in the main format: negative SAVE values.  This
1577*bc421551SDag-Erling Smørgrav      improves support for Ireland, which uses Irish Standard Time
1578*bc421551SDag-Erling Smørgrav      (IST, UTC+01) in summer and GMT (UTC) in winter.  tzcode has
1579*bc421551SDag-Erling Smørgrav      supported negative SAVE values for decades, and this feature
1580*bc421551SDag-Erling Smørgrav      should move to the main format soon.  However, it will not move
1581*bc421551SDag-Erling Smørgrav      to the rearguard format for quite some time because some
1582*bc421551SDag-Erling Smørgrav      downstream parsers do not support it.
1583*bc421551SDag-Erling Smørgrav
1584*bc421551SDag-Erling Smørgrav    * The build procedure constructs three files vanguard.zi, main.zi,
1585*bc421551SDag-Erling Smørgrav      and rearguard.zi, one for each format.  Although the files
1586*bc421551SDag-Erling Smørgrav      represent essentially the same data, they may have minor
1587*bc421551SDag-Erling Smørgrav      discrepancies that users are not likely to notice.  The files
1588*bc421551SDag-Erling Smørgrav      are intended for downstream data consumers and are not
1589*bc421551SDag-Erling Smørgrav      installed.  Zoneinfo parsers that do not support negative SAVE values
1590*bc421551SDag-Erling Smørgrav      should start using rearguard.zi, so that they will be unaffected
1591*bc421551SDag-Erling Smørgrav      when the negative-DST feature moves from vanguard to main.
1592*bc421551SDag-Erling Smørgrav      Bleeding-edge Zoneinfo parsers that support the new features
1593*bc421551SDag-Erling Smørgrav      already can use vanguard.zi; in this respect, current tzcode is
1594*bc421551SDag-Erling Smørgrav      bleeding-edge.
1595*bc421551SDag-Erling Smørgrav
1596*bc421551SDag-Erling Smørgrav    The Makefile should now be safe for parallelized builds, and 'make
1597*bc421551SDag-Erling Smørgrav    -j to2050new.tzs' is now much faster on a multiprocessor host
1598*bc421551SDag-Erling Smørgrav    with GNU Make.
1599*bc421551SDag-Erling Smørgrav
1600*bc421551SDag-Erling Smørgrav    When built with -DSUPPRESS_TZDIR, the tzcode library no longer
1601*bc421551SDag-Erling Smørgrav    prepends TZDIR/ to file names that do not begin with '/'.  This is
1602*bc421551SDag-Erling Smørgrav    not recommended for general use, due to its security implications.
1603*bc421551SDag-Erling Smørgrav    (From a suggestion by Manuela Friedrich.)
1604*bc421551SDag-Erling Smørgrav
1605*bc421551SDag-Erling Smørgrav  Changes to code
1606*bc421551SDag-Erling Smørgrav
1607*bc421551SDag-Erling Smørgrav    zic now accepts subsecond precision in expressions like
1608*bc421551SDag-Erling Smørgrav    00:19:32.13, which is approximately the legal time of the
1609*bc421551SDag-Erling Smørgrav    Netherlands from 1835 to 1937.  However, because it is
1610*bc421551SDag-Erling Smørgrav    questionable whether the few recorded uses of non-integer offsets
1611*bc421551SDag-Erling Smørgrav    had subsecond precision in practice, there are no plans for tzdata
1612*bc421551SDag-Erling Smørgrav    to use this feature.  (Thanks to Steve Allen for pointing out
1613*bc421551SDag-Erling Smørgrav    the limitations of historical data in this area.)
1614*bc421551SDag-Erling Smørgrav
1615*bc421551SDag-Erling Smørgrav    The code is a bit more portable to MS-Windows.  Installers can
1616*bc421551SDag-Erling Smørgrav    compile with -DRESERVE_STD_EXT_IDS on MS-Windows platforms that
1617*bc421551SDag-Erling Smørgrav    reserve identifiers like 'localtime'.  (Thanks to Manuela
1618*bc421551SDag-Erling Smørgrav    Friedrich.)
1619*bc421551SDag-Erling Smørgrav
1620*bc421551SDag-Erling Smørgrav  Changes to documentation and commentary
1621*bc421551SDag-Erling Smørgrav
1622*bc421551SDag-Erling Smørgrav    theory.html now outlines tzdb's extensions to POSIX's model for
1623*bc421551SDag-Erling Smørgrav    civil time, and has a section "POSIX features no longer needed"
1624*bc421551SDag-Erling Smørgrav    that lists POSIX API components that are now vestigial.
1625*bc421551SDag-Erling Smørgrav    (From suggestions by Steve Summit.)  It also better distinguishes
1626*bc421551SDag-Erling Smørgrav    time zones from tz regions.  (From a suggestion by Guy Harris.)
1627*bc421551SDag-Erling Smørgrav
1628*bc421551SDag-Erling Smørgrav    Commentary is now more consistent about using the phrase "daylight
1629*bc421551SDag-Erling Smørgrav    saving time", to match the C name tm_isdst.  Daylight saving time
1630*bc421551SDag-Erling Smørgrav    need not occur in summer, and need not have a positive offset from
1631*bc421551SDag-Erling Smørgrav    standard time.
1632*bc421551SDag-Erling Smørgrav
1633*bc421551SDag-Erling Smørgrav    Commentary about historical transitions in Uruguay has been expanded
1634*bc421551SDag-Erling Smørgrav    with links to many relevant legal documents.
1635*bc421551SDag-Erling Smørgrav    (Thanks to Tim Parenti.)
1636*bc421551SDag-Erling Smørgrav
1637*bc421551SDag-Erling Smørgrav    Commentary now uses some non-ASCII characters with Unicode value
1638*bc421551SDag-Erling Smørgrav    less than U+0100, as they can be useful and should work even with
1639*bc421551SDag-Erling Smørgrav    older editors such as XEmacs.
1640*bc421551SDag-Erling Smørgrav
1641*bc421551SDag-Erling Smørgrav
1642*bc421551SDag-Erling SmørgravRelease 2018c - 2018-01-22 23:00:44 -0800
1643*bc421551SDag-Erling Smørgrav
1644*bc421551SDag-Erling Smørgrav  Briefly:
1645*bc421551SDag-Erling Smørgrav  Revert Irish changes that relied on negative SAVE values.
1646*bc421551SDag-Erling Smørgrav
1647*bc421551SDag-Erling Smørgrav  Changes to tm_isdst
1648*bc421551SDag-Erling Smørgrav
1649*bc421551SDag-Erling Smørgrav    Revert the 2018a change to Europe/Dublin.  As before, this change
1650*bc421551SDag-Erling Smørgrav    does not affect UT offsets or abbreviations; it affects only
1651*bc421551SDag-Erling Smørgrav    whether timestamps are considered to be standard time or
1652*bc421551SDag-Erling Smørgrav    daylight-saving time, as expressed in the tm_isdst flag of C's
1653*bc421551SDag-Erling Smørgrav    struct tm type.  This reversion is intended to be a temporary
1654*bc421551SDag-Erling Smørgrav    workaround for problems discovered with downstream uses of
1655*bc421551SDag-Erling Smørgrav    releases 2018a and 2018b, which implemented Irish time by using
1656*bc421551SDag-Erling Smørgrav    negative SAVE values in the Eire rules of the 'europe' file.
1657*bc421551SDag-Erling Smørgrav    Although negative SAVE values have been part of tzcode for many
1658*bc421551SDag-Erling Smørgrav    years and are supported by many platforms, they were not
1659*bc421551SDag-Erling Smørgrav    documented before 2018a and ICU and OpenJDK do not currently
1660*bc421551SDag-Erling Smørgrav    support them.  A mechanism to export data to platforms lacking
1661*bc421551SDag-Erling Smørgrav    support for negative DST is planned to be developed before the
1662*bc421551SDag-Erling Smørgrav    change is reapplied.  (Problems reported by Deborah Goldsmith and
1663*bc421551SDag-Erling Smørgrav    Stephen Colebourne.)
1664*bc421551SDag-Erling Smørgrav
1665*bc421551SDag-Erling Smørgrav  Changes to past timestamps
1666*bc421551SDag-Erling Smørgrav
1667*bc421551SDag-Erling Smørgrav    Japanese DST transitions (1948-1951) were Sundays at 00:00, not
1668*bc421551SDag-Erling Smørgrav    Saturdays or Sundays at 02:00.  (Thanks to Takayuki Nikai.)
1669*bc421551SDag-Erling Smørgrav
1670*bc421551SDag-Erling Smørgrav  Changes to build procedure
1671*bc421551SDag-Erling Smørgrav
1672*bc421551SDag-Erling Smørgrav    The build procedure now works around mawk 1.3.3's lack of support
1673*bc421551SDag-Erling Smørgrav    for character class expressions.  (Problem reported by Ohyama.)
1674*bc421551SDag-Erling Smørgrav
1675*bc421551SDag-Erling Smørgrav
1676*bc421551SDag-Erling SmørgravRelease 2018b - 2018-01-17 23:24:48 -0800
1677*bc421551SDag-Erling Smørgrav
1678*bc421551SDag-Erling Smørgrav  Briefly:
1679*bc421551SDag-Erling Smørgrav  Fix a packaging problem in tz2018a, which was missing 'pacificnew'.
1680*bc421551SDag-Erling Smørgrav
1681*bc421551SDag-Erling Smørgrav  Changes to build procedure
1682*bc421551SDag-Erling Smørgrav
1683*bc421551SDag-Erling Smørgrav    The distribution now contains the file 'pacificnew' again.
1684*bc421551SDag-Erling Smørgrav    This file was inadvertently omitted in the 2018a distribution.
1685*bc421551SDag-Erling Smørgrav    (Problem reported by Matias Fonzo.)
1686*bc421551SDag-Erling Smørgrav
1687*bc421551SDag-Erling Smørgrav
1688*bc421551SDag-Erling SmørgravRelease 2018a - 2018-01-12 22:29:21 -0800
1689*bc421551SDag-Erling Smørgrav
1690*bc421551SDag-Erling Smørgrav  Briefly:
1691*bc421551SDag-Erling Smørgrav  São Tomé and Príncipe switched from +00 to +01.
1692*bc421551SDag-Erling Smørgrav  Brazil's DST will now start on November's first Sunday.
1693*bc421551SDag-Erling Smørgrav  Ireland's standard time is now in the summer, not the winter.
1694*bc421551SDag-Erling Smørgrav  Use Debian-style installation locations, instead of 4.3BSD-style.
1695*bc421551SDag-Erling Smørgrav  New zic option -t.
1696*bc421551SDag-Erling Smørgrav
1697*bc421551SDag-Erling Smørgrav  Changes to past and future timestamps
1698*bc421551SDag-Erling Smørgrav
1699*bc421551SDag-Erling Smørgrav    São Tomé and Príncipe switched from +00 to +01 on 2018-01-01 at
1700*bc421551SDag-Erling Smørgrav    01:00.  (Thanks to Steffen Thorsen and Michael Deckers.)
1701*bc421551SDag-Erling Smørgrav
1702*bc421551SDag-Erling Smørgrav  Changes to future timestamps
1703*bc421551SDag-Erling Smørgrav
1704*bc421551SDag-Erling Smørgrav    Starting in 2018 southern Brazil will begin DST on November's
1705*bc421551SDag-Erling Smørgrav    first Sunday instead of October's third Sunday.  (Thanks to
1706*bc421551SDag-Erling Smørgrav    Steffen Thorsen.)
1707*bc421551SDag-Erling Smørgrav
1708*bc421551SDag-Erling Smørgrav  Changes to past timestamps
1709*bc421551SDag-Erling Smørgrav
1710*bc421551SDag-Erling Smørgrav    A discrepancy of 4 s in timestamps before 1931 in South Sudan has
1711*bc421551SDag-Erling Smørgrav    been corrected.  The 'backzone' and 'zone.tab' files did not agree
1712*bc421551SDag-Erling Smørgrav    with the 'africa' and 'zone1970.tab' files.  (Problem reported by
1713*bc421551SDag-Erling Smørgrav    Michael Deckers.)
1714*bc421551SDag-Erling Smørgrav
1715*bc421551SDag-Erling Smørgrav    The abbreviation invented for Bolivia Summer Time (1931-2) is now
1716*bc421551SDag-Erling Smørgrav    BST instead of BOST, to be more consistent with the convention
1717*bc421551SDag-Erling Smørgrav    used for Latvian Summer Time (1918-9) and for British Summer Time.
1718*bc421551SDag-Erling Smørgrav
1719*bc421551SDag-Erling Smørgrav  Changes to tm_isdst
1720*bc421551SDag-Erling Smørgrav
1721*bc421551SDag-Erling Smørgrav    Change Europe/Dublin so that it observes Irish Standard Time (UT
1722*bc421551SDag-Erling Smørgrav    +01) in summer and GMT (as negative daylight-saving) in winter,
1723*bc421551SDag-Erling Smørgrav    instead of observing standard time (GMT) in winter and Irish
1724*bc421551SDag-Erling Smørgrav    Summer Time (UT +01) in summer.  This change does not affect UT
1725*bc421551SDag-Erling Smørgrav    offsets or abbreviations; it affects only whether timestamps are
1726*bc421551SDag-Erling Smørgrav    considered to be standard time or daylight-saving time, as
1727*bc421551SDag-Erling Smørgrav    expressed in the tm_isdst flag of C's struct tm type.
1728*bc421551SDag-Erling Smørgrav    (Discrepancy noted by Derick Rethans.)
1729*bc421551SDag-Erling Smørgrav
1730*bc421551SDag-Erling Smørgrav  Changes to build procedure
1731*bc421551SDag-Erling Smørgrav
1732*bc421551SDag-Erling Smørgrav    The default installation locations have been changed to mostly
1733*bc421551SDag-Erling Smørgrav    match Debian circa 2017, instead of being designed as an add-on to
1734*bc421551SDag-Erling Smørgrav    4.3BSD circa 1986.  This affects the Makefile macros TOPDIR,
1735*bc421551SDag-Erling Smørgrav    TZDIR, MANDIR, and LIBDIR.  New Makefile macros TZDEFAULT, USRDIR,
1736*bc421551SDag-Erling Smørgrav    USRSHAREDIR, BINDIR, ZDUMPDIR, and ZICDIR let installers tailor
1737*bc421551SDag-Erling Smørgrav    locations more precisely.  (This responds to suggestions from
1738*bc421551SDag-Erling Smørgrav    Brian Inglis and from Steve Summit.)
1739*bc421551SDag-Erling Smørgrav
1740*bc421551SDag-Erling Smørgrav    The default installation procedure no longer creates the
1741*bc421551SDag-Erling Smørgrav    backward-compatibility link US/Pacific-New, which causes
1742*bc421551SDag-Erling Smørgrav    confusion during user setup (e.g., see Debian bug 815200).
1743*bc421551SDag-Erling Smørgrav    Use 'make BACKWARD="backward pacificnew"' to create the link
1744*bc421551SDag-Erling Smørgrav    anyway, for now.  Eventually we plan to remove the link entirely.
1745*bc421551SDag-Erling Smørgrav
1746*bc421551SDag-Erling Smørgrav    tzdata.zi now contains a version-number comment.
1747*bc421551SDag-Erling Smørgrav    (Suggested by Tom Lane.)
1748*bc421551SDag-Erling Smørgrav
1749*bc421551SDag-Erling Smørgrav    The Makefile now quotes values like BACKWARD more carefully when
1750*bc421551SDag-Erling Smørgrav    passing them to the shell.  (Problem reported by Zefram.)
1751*bc421551SDag-Erling Smørgrav
1752*bc421551SDag-Erling Smørgrav    Builders no longer need to specify -DHAVE_SNPRINTF on platforms
1753*bc421551SDag-Erling Smørgrav    that have snprintf and use pre-C99 compilers.  (Problem reported
1754*bc421551SDag-Erling Smørgrav    by Jon Skeet.)
1755*bc421551SDag-Erling Smørgrav
1756*bc421551SDag-Erling Smørgrav  Changes to code
1757*bc421551SDag-Erling Smørgrav
1758*bc421551SDag-Erling Smørgrav    zic has a new option -t FILE that specifies the location of the
1759*bc421551SDag-Erling Smørgrav    file that determines local time when TZ is unset.  The default for
1760*bc421551SDag-Erling Smørgrav    this location can be configured via the new TZDEFAULT makefile
1761*bc421551SDag-Erling Smørgrav    macro, which defaults to /etc/localtime.
1762*bc421551SDag-Erling Smørgrav
1763*bc421551SDag-Erling Smørgrav    Diagnostics and commentary now distinguish UT from UTC more
1764*bc421551SDag-Erling Smørgrav    carefully; see theory.html for more information about UT vs UTC.
1765*bc421551SDag-Erling Smørgrav
1766*bc421551SDag-Erling Smørgrav    zic has been ported to GCC 8's -Wstringop-truncation option.
1767*bc421551SDag-Erling Smørgrav    (Problem reported by Martin Sebor.)
1768*bc421551SDag-Erling Smørgrav
1769*bc421551SDag-Erling Smørgrav  Changes to documentation and commentary
1770*bc421551SDag-Erling Smørgrav
1771*bc421551SDag-Erling Smørgrav    The zic man page now documents the longstanding behavior that
1772*bc421551SDag-Erling Smørgrav    times and years can be out of the usual range, with negative times
1773*bc421551SDag-Erling Smørgrav    counting backwards from midnight and with year 0 preceding year 1.
1774*bc421551SDag-Erling Smørgrav    (Problem reported by Michael Deckers.)
1775*bc421551SDag-Erling Smørgrav
1776*bc421551SDag-Erling Smørgrav    The theory.html file now mentions the POSIX limit of six chars
1777*bc421551SDag-Erling Smørgrav    per abbreviation, and lists alphabetic abbreviations used.
1778*bc421551SDag-Erling Smørgrav
1779*bc421551SDag-Erling Smørgrav    The files tz-art.htm and tz-link.htm have been renamed to
1780*bc421551SDag-Erling Smørgrav    tz-art.html and tz-link.html, respectively, for consistency with
1781*bc421551SDag-Erling Smørgrav    other file names and to simplify web server configuration.
1782*bc421551SDag-Erling Smørgrav
1783*bc421551SDag-Erling Smørgrav
1784*bc421551SDag-Erling SmørgravRelease 2017c - 2017-10-20 14:49:34 -0700
1785*bc421551SDag-Erling Smørgrav
1786*bc421551SDag-Erling Smørgrav  Briefly:
1787*bc421551SDag-Erling Smørgrav  Northern Cyprus switches from +03 to +02/+03 on 2017-10-29.
1788*bc421551SDag-Erling Smørgrav  Fiji ends DST 2018-01-14, not 2018-01-21.
1789*bc421551SDag-Erling Smørgrav  Namibia switches from +01/+02 to +02 on 2018-04-01.
1790*bc421551SDag-Erling Smørgrav  Sudan switches from +03 to +02 on 2017-11-01.
1791*bc421551SDag-Erling Smørgrav  Tonga likely switches from +13/+14 to +13 on 2017-11-05.
1792*bc421551SDag-Erling Smørgrav  Turks & Caicos switches from -04 to -05/-04 on 2018-11-04.
1793*bc421551SDag-Erling Smørgrav  A new file tzdata.zi now holds a small text copy of all data.
1794*bc421551SDag-Erling Smørgrav  The zic input format has been regularized slightly.
1795*bc421551SDag-Erling Smørgrav
1796*bc421551SDag-Erling Smørgrav  Changes to future timestamps
1797*bc421551SDag-Erling Smørgrav
1798*bc421551SDag-Erling Smørgrav    Northern Cyprus has decided to resume EU rules starting
1799*bc421551SDag-Erling Smørgrav    2017-10-29, thus reinstituting winter time.
1800*bc421551SDag-Erling Smørgrav
1801*bc421551SDag-Erling Smørgrav    Fiji ends DST 2018-01-14 instead of the 2018-01-21 previously
1802*bc421551SDag-Erling Smørgrav    predicted.  (Thanks to Dominic Fok.)  Adjust future predictions
1803*bc421551SDag-Erling Smørgrav    accordingly.
1804*bc421551SDag-Erling Smørgrav
1805*bc421551SDag-Erling Smørgrav    Namibia will switch from +01 with DST to +02 all year on
1806*bc421551SDag-Erling Smørgrav    2017-09-03 at 02:00.  This affects UT offsets starting 2018-04-01
1807*bc421551SDag-Erling Smørgrav    at 02:00.  (Thanks to Steffen Thorsen.)
1808*bc421551SDag-Erling Smørgrav
1809*bc421551SDag-Erling Smørgrav    Sudan will switch from +03 to +02 on 2017-11-01.  (Thanks to Ahmed
1810*bc421551SDag-Erling Smørgrav    Atyya and Yahia Abdalla.)  South Sudan is not switching, so
1811*bc421551SDag-Erling Smørgrav    Africa/Juba is no longer a link to Africa/Khartoum.
1812*bc421551SDag-Erling Smørgrav
1813*bc421551SDag-Erling Smørgrav    Tonga has likely ended its experiment with DST, and will not
1814*bc421551SDag-Erling Smørgrav    adjust its clocks on 2017-11-05.  Although Tonga has not announced
1815*bc421551SDag-Erling Smørgrav    whether it will continue to observe DST, the IATA is assuming that
1816*bc421551SDag-Erling Smørgrav    it will not.  (Thanks to David Wade.)
1817*bc421551SDag-Erling Smørgrav
1818*bc421551SDag-Erling Smørgrav    Turks & Caicos will switch from -04 all year to -05 with US DST on
1819*bc421551SDag-Erling Smørgrav    2018-03-11 at 03:00.  This affects UT offsets starting 2018-11-04
1820*bc421551SDag-Erling Smørgrav    at 02:00.  (Thanks to Steffen Thorsen.)
1821*bc421551SDag-Erling Smørgrav
1822*bc421551SDag-Erling Smørgrav  Changes to past timestamps
1823*bc421551SDag-Erling Smørgrav
1824*bc421551SDag-Erling Smørgrav    Namibia switched from +02 to +01 on 1994-03-21, not 1994-04-03.
1825*bc421551SDag-Erling Smørgrav    (Thanks to Arthur David Olson.)
1826*bc421551SDag-Erling Smørgrav
1827*bc421551SDag-Erling Smørgrav    Detroit did not observe DST in 1967.
1828*bc421551SDag-Erling Smørgrav
1829*bc421551SDag-Erling Smørgrav    Use railway time for Asia/Kolkata before 1941, by switching to
1830*bc421551SDag-Erling Smørgrav    Madras local time (UT +052110) in 1870, then to IST (UT +0530) in
1831*bc421551SDag-Erling Smørgrav    1906.  Also, treat 1941-2's +0630 as DST, like 1942-5.
1832*bc421551SDag-Erling Smørgrav
1833*bc421551SDag-Erling Smørgrav    Europe/Dublin's 1946 and 1947 fallback transitions occurred at
1834*bc421551SDag-Erling Smørgrav    02:00 standard time, not 02:00 DST.  (Thanks to Michael Deckers.)
1835*bc421551SDag-Erling Smørgrav
1836*bc421551SDag-Erling Smørgrav    Pacific/Apia and Pacific/Pago_Pago switched from Antipodean to
1837*bc421551SDag-Erling Smørgrav    American time in 1892, not 1879.  (Thanks to Michael Deckers.)
1838*bc421551SDag-Erling Smørgrav
1839*bc421551SDag-Erling Smørgrav    Adjust the 1867 transition in Alaska to better reflect the
1840*bc421551SDag-Erling Smørgrav    historical record, by changing it to occur on 1867-10-18 at 15:30
1841*bc421551SDag-Erling Smørgrav    Sitka time rather than at the start of 1867-10-17 local time.
1842*bc421551SDag-Erling Smørgrav    Although strictly speaking this is accurate only for Sitka,
1843*bc421551SDag-Erling Smørgrav    the rest of Alaska's blanks need to be filled in somehow.
1844*bc421551SDag-Erling Smørgrav
1845*bc421551SDag-Erling Smørgrav    Fix off-by-one errors in UT offsets for Adak and Nome before 1867.
1846*bc421551SDag-Erling Smørgrav    (Thanks to Michael Deckers.)
1847*bc421551SDag-Erling Smørgrav
1848*bc421551SDag-Erling Smørgrav    Add 7 s to the UT offset in Asia/Yangon before 1920.
1849*bc421551SDag-Erling Smørgrav
1850*bc421551SDag-Erling Smørgrav  Changes to zone names
1851*bc421551SDag-Erling Smørgrav
1852*bc421551SDag-Erling Smørgrav    Remove Canada/East-Saskatchewan from the 'backward' file, as it
1853*bc421551SDag-Erling Smørgrav    exceeded the 14-character limit and was an unused misnomer anyway.
1854*bc421551SDag-Erling Smørgrav
1855*bc421551SDag-Erling Smørgrav  Changes to build procedure
1856*bc421551SDag-Erling Smørgrav
1857*bc421551SDag-Erling Smørgrav    To support applications that prefer to read time zone data in text
1858*bc421551SDag-Erling Smørgrav    form, two zic input files tzdata.zi and leapseconds are now
1859*bc421551SDag-Erling Smørgrav    installed by default.  The commands 'zic tzdata.zi' and 'zic -L
1860*bc421551SDag-Erling Smørgrav    leapseconds tzdata.zi' can reproduce the tzdata binary files
1861*bc421551SDag-Erling Smørgrav    without and with leap seconds, respectively.  To prevent these two
1862*bc421551SDag-Erling Smørgrav    new files from being installed, use 'make TZDATA_TEXT=', and to
1863*bc421551SDag-Erling Smørgrav    suppress leap seconds from the tzdata text installation, use 'make
1864*bc421551SDag-Erling Smørgrav    TZDATA_TEXT=tzdata.zi'.
1865*bc421551SDag-Erling Smørgrav
1866*bc421551SDag-Erling Smørgrav    'make BACKWARD=' now suppresses backward-compatibility names
1867*bc421551SDag-Erling Smørgrav    like 'US/Pacific' that are defined in the 'backward' and
1868*bc421551SDag-Erling Smørgrav    'pacificnew' files.
1869*bc421551SDag-Erling Smørgrav
1870*bc421551SDag-Erling Smørgrav    'make check' now works on systems that lack a UTF-8 locale,
1871*bc421551SDag-Erling Smørgrav    or that lack the nsgmls program.  Set UTF8_LOCALE to configure
1872*bc421551SDag-Erling Smørgrav    the name of a UTF-8 locale, if you have one.
1873*bc421551SDag-Erling Smørgrav
1874*bc421551SDag-Erling Smørgrav    Y2K runtime checks are no longer enabled by default.  Add
1875*bc421551SDag-Erling Smørgrav    -DDEPRECATE_TWO_DIGIT_YEARS to CFLAGS to enable them, instead of
1876*bc421551SDag-Erling Smørgrav    adding -DNO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU
1877*bc421551SDag-Erling Smørgrav    to disable them.  (New name suggested by Brian Inglis.)
1878*bc421551SDag-Erling Smørgrav
1879*bc421551SDag-Erling Smørgrav    The build procedure for zdump now works on AIX 7.1.
1880*bc421551SDag-Erling Smørgrav    (Problem reported by Kees Dekker.)
1881*bc421551SDag-Erling Smørgrav
1882*bc421551SDag-Erling Smørgrav  Changes to code
1883*bc421551SDag-Erling Smørgrav
1884*bc421551SDag-Erling Smørgrav    zic and the reference runtime now reject multiple leap seconds
1885*bc421551SDag-Erling Smørgrav    within 28 days of each other, or leap seconds before the Epoch.
1886*bc421551SDag-Erling Smørgrav    As a result, support for double leap seconds, which was
1887*bc421551SDag-Erling Smørgrav    obsolescent and undocumented, has been removed.  Double leap
1888*bc421551SDag-Erling Smørgrav    seconds were an error in the C89 standard; they have never existed
1889*bc421551SDag-Erling Smørgrav    in civil timekeeping.  (Thanks to Robert Elz and Bradley White for
1890*bc421551SDag-Erling Smørgrav    noticing glitches in the code that uncovered this problem.)
1891*bc421551SDag-Erling Smørgrav
1892*bc421551SDag-Erling Smørgrav    zic now warns about use of the obsolescent and undocumented -y
1893*bc421551SDag-Erling Smørgrav    option, and about use of the obsolescent TYPE field of Rule lines.
1894*bc421551SDag-Erling Smørgrav
1895*bc421551SDag-Erling Smørgrav    zic now allows unambiguous abbreviations like "Sa" and "Su" for
1896*bc421551SDag-Erling Smørgrav    weekdays; formerly it rejected them due to a bug.  Conversely, zic
1897*bc421551SDag-Erling Smørgrav    no longer considers non-prefixes to be abbreviations; for example,
1898*bc421551SDag-Erling Smørgrav    it no longer accepts "lF" as an abbreviation for "lastFriday".
1899*bc421551SDag-Erling Smørgrav    Also, zic warns about the undocumented usage with a "last-"
1900*bc421551SDag-Erling Smørgrav    prefix, e.g., "last-Fri".
1901*bc421551SDag-Erling Smørgrav
1902*bc421551SDag-Erling Smørgrav    Similarly, zic now accepts the unambiguous abbreviation "L" for
1903*bc421551SDag-Erling Smørgrav    "Link" in ordinary context and for "Leap" in leap-second context.
1904*bc421551SDag-Erling Smørgrav    Conversely, zic no longer accepts non-prefixes such as "La" as
1905*bc421551SDag-Erling Smørgrav    abbreviations for words like "Leap".
1906*bc421551SDag-Erling Smørgrav
1907*bc421551SDag-Erling Smørgrav    zic no longer accepts leap second lines in ordinary input, or
1908*bc421551SDag-Erling Smørgrav    ordinary lines in leap second input.  Formerly, zic sometimes
1909*bc421551SDag-Erling Smørgrav    warned about this undocumented usage and handled it incorrectly.
1910*bc421551SDag-Erling Smørgrav
1911*bc421551SDag-Erling Smørgrav    The new macro HAVE_TZNAME governs whether the tzname external
1912*bc421551SDag-Erling Smørgrav    variable is exported, instead of USG_COMPAT.  USG_COMPAT now
1913*bc421551SDag-Erling Smørgrav    governs only the external variables "timezone" and "daylight".
1914*bc421551SDag-Erling Smørgrav    This change is needed because the three variables are not in the
1915*bc421551SDag-Erling Smørgrav    same category: although POSIX requires tzname, it specifies the
1916*bc421551SDag-Erling Smørgrav    other two variables as optional.  Also, USG_COMPAT is now 1 or 0:
1917*bc421551SDag-Erling Smørgrav    if not defined, the code attempts to guess it from other macros.
1918*bc421551SDag-Erling Smørgrav
1919*bc421551SDag-Erling Smørgrav    localtime.c and difftime.c no longer require stdio.h, and .c files
1920*bc421551SDag-Erling Smørgrav    other than zic.c no longer require sys/wait.h.
1921*bc421551SDag-Erling Smørgrav
1922*bc421551SDag-Erling Smørgrav    zdump.c no longer assumes snprintf.  (Reported by Jonathan Leffler.)
1923*bc421551SDag-Erling Smørgrav
1924*bc421551SDag-Erling Smørgrav    Calculation of time_t extrema works around a bug in GCC 4.8.4
1925*bc421551SDag-Erling Smørgrav    (Reported by Stan Shebs and Joseph Myers.)
1926*bc421551SDag-Erling Smørgrav
1927*bc421551SDag-Erling Smørgrav    zic.c no longer mistranslates formats of line numbers in non-English
1928*bc421551SDag-Erling Smørgrav    locales.  (Problem reported by Benno Schulenberg.)
1929*bc421551SDag-Erling Smørgrav
1930*bc421551SDag-Erling Smørgrav    Several minor changes have been made to the code to make it a
1931*bc421551SDag-Erling Smørgrav    bit easier to port to MS-Windows and Solaris.  (Thanks to Kees
1932*bc421551SDag-Erling Smørgrav    Dekker for reporting the problems.)
1933*bc421551SDag-Erling Smørgrav
1934*bc421551SDag-Erling Smørgrav  Changes to documentation and commentary
1935*bc421551SDag-Erling Smørgrav
1936*bc421551SDag-Erling Smørgrav    The two new files 'theory.html' and 'calendars' contain the
1937*bc421551SDag-Erling Smørgrav    contents of the removed file 'Theory'.  The goal is to document
1938*bc421551SDag-Erling Smørgrav    tzdb theory more accessibly.
1939*bc421551SDag-Erling Smørgrav
1940*bc421551SDag-Erling Smørgrav    The zic man page now documents abbreviation rules.
1941*bc421551SDag-Erling Smørgrav
1942*bc421551SDag-Erling Smørgrav    tz-link.htm now covers how to apply tzdata changes to clients.
1943*bc421551SDag-Erling Smørgrav    (Thanks to Jorge Fábregas for the AIX link.)  It also mentions MySQL.
1944*bc421551SDag-Erling Smørgrav
1945*bc421551SDag-Erling Smørgrav    The leap-seconds.list URL has been updated to something that is
1946*bc421551SDag-Erling Smørgrav    more reliable for tzdb.  (Thanks to Tim Parenti and Brian Inglis.)
1947*bc421551SDag-Erling Smørgrav
1948*bc421551SDag-Erling SmørgravRelease 2017b - 2017-03-17 07:30:38 -0700
1949*bc421551SDag-Erling Smørgrav
1950*bc421551SDag-Erling Smørgrav  Briefly: Haiti has resumed DST.
1951*bc421551SDag-Erling Smørgrav
1952*bc421551SDag-Erling Smørgrav  Changes to past and future timestamps
1953*bc421551SDag-Erling Smørgrav
1954*bc421551SDag-Erling Smørgrav    Haiti resumed observance of DST in 2017.  (Thanks to Steffen Thorsen.)
1955*bc421551SDag-Erling Smørgrav
1956*bc421551SDag-Erling Smørgrav  Changes to past timestamps
1957*bc421551SDag-Erling Smørgrav
1958*bc421551SDag-Erling Smørgrav    Liberia changed from -004430 to +00 on 1972-01-07, not 1972-05-01.
1959*bc421551SDag-Erling Smørgrav
1960*bc421551SDag-Erling Smørgrav    Use "MMT" to abbreviate Liberia's time zone before 1972, as "-004430"
1961*bc421551SDag-Erling Smørgrav    is one byte over the POSIX limit.  (Problem reported by Derick Rethans.)
1962*bc421551SDag-Erling Smørgrav
1963*bc421551SDag-Erling Smørgrav  Changes to code
1964*bc421551SDag-Erling Smørgrav
1965*bc421551SDag-Erling Smørgrav    The reference localtime implementation now falls back on the
1966*bc421551SDag-Erling Smørgrav    current US daylight-saving transition rules rather than the
1967*bc421551SDag-Erling Smørgrav    1987-2006 rules.  This fallback occurs only when (1) the TZ
1968*bc421551SDag-Erling Smørgrav    environment variable has a value like "AST4ADT" that asks
1969*bc421551SDag-Erling Smørgrav    for daylight saving time but does not specify the rules, (2) there
1970*bc421551SDag-Erling Smørgrav    is no file by that name, and (3) the TZDEFRULES file cannot be
1971*bc421551SDag-Erling Smørgrav    loaded.  (Thanks to Tom Lane.)
1972*bc421551SDag-Erling Smørgrav
1973*bc421551SDag-Erling Smørgrav
1974*bc421551SDag-Erling SmørgravRelease 2017a - 2017-02-28 00:05:36 -0800
1975*bc421551SDag-Erling Smørgrav
1976*bc421551SDag-Erling Smørgrav  Briefly: Southern Chile moves from -04/-03 to -03, and Mongolia
1977*bc421551SDag-Erling Smørgrav  discontinues DST.
1978*bc421551SDag-Erling Smørgrav
1979*bc421551SDag-Erling Smørgrav  Changes to future timestamps
1980*bc421551SDag-Erling Smørgrav
1981*bc421551SDag-Erling Smørgrav    Mongolia no longer observes DST.  (Thanks to Ganbold Tsagaankhuu.)
1982*bc421551SDag-Erling Smørgrav
1983*bc421551SDag-Erling Smørgrav    Chile's Region of Magallanes moves from -04/-03 to -03 year-round.
1984*bc421551SDag-Erling Smørgrav    Its clocks diverge from America/Santiago starting 2017-05-13 at
1985*bc421551SDag-Erling Smørgrav    23:00, hiving off a new zone America/Punta_Arenas.  Although the
1986*bc421551SDag-Erling Smørgrav    Chilean government says this change expires in May 2019, for now
1987*bc421551SDag-Erling Smørgrav    assume it's permanent.  (Thanks to Juan Correa and Deborah
1988*bc421551SDag-Erling Smørgrav    Goldsmith.)  This also affects Antarctica/Palmer.
1989*bc421551SDag-Erling Smørgrav
1990*bc421551SDag-Erling Smørgrav  Changes to past timestamps
1991*bc421551SDag-Erling Smørgrav
1992*bc421551SDag-Erling Smørgrav    Fix many entries for historical timestamps for Europe/Madrid
1993*bc421551SDag-Erling Smørgrav    before 1979, to agree with tables compiled by Pere Planesas of the
1994*bc421551SDag-Erling Smørgrav    National Astronomical Observatory of Spain.  As a side effect,
1995*bc421551SDag-Erling Smørgrav    this changes some timestamps for Africa/Ceuta before 1929, which
1996*bc421551SDag-Erling Smørgrav    are probably guesswork anyway.  (Thanks to Steve Allen and
1997*bc421551SDag-Erling Smørgrav    Pierpaolo Bernardi for the heads-ups, and to Michael Deckers for
1998*bc421551SDag-Erling Smørgrav    correcting the 1901 transition.)
1999*bc421551SDag-Erling Smørgrav
2000*bc421551SDag-Erling Smørgrav    Ecuador observed DST from 1992-11-28 to 1993-02-05.
2001*bc421551SDag-Erling Smørgrav    (Thanks to Alois Treindl.)
2002*bc421551SDag-Erling Smørgrav
2003*bc421551SDag-Erling Smørgrav    Asia/Atyrau and Asia/Oral were at +03 (not +04) before 1930-06-21.
2004*bc421551SDag-Erling Smørgrav    (Thanks to Stepan Golosunov.)
2005*bc421551SDag-Erling Smørgrav
2006*bc421551SDag-Erling Smørgrav  Changes to past and future time zone abbreviations
2007*bc421551SDag-Erling Smørgrav
2008*bc421551SDag-Erling Smørgrav    Switch to numeric time zone abbreviations for South America, as
2009*bc421551SDag-Erling Smørgrav    part of the ongoing project of removing invented abbreviations.
2010*bc421551SDag-Erling Smørgrav    This avoids the need to invent an abbreviation for the new Chilean
2011*bc421551SDag-Erling Smørgrav    new zone.  Similarly, switch from invented to numeric time zone
2012*bc421551SDag-Erling Smørgrav    abbreviations for Afghanistan, American Samoa, the Azores,
2013*bc421551SDag-Erling Smørgrav    Bangladesh, Bhutan, the British Indian Ocean Territory, Brunei,
2014*bc421551SDag-Erling Smørgrav    Cape Verde, Chatham Is, Christmas I, Cocos (Keeling) Is, Cook Is,
2015*bc421551SDag-Erling Smørgrav    Dubai, East Timor, Eucla, Fiji, French Polynesia, Greenland,
2016*bc421551SDag-Erling Smørgrav    Indochina, Iran, Iraq, Kiribati, Lord Howe, Macquarie, Malaysia,
2017*bc421551SDag-Erling Smørgrav    the Maldives, Marshall Is, Mauritius, Micronesia, Mongolia,
2018*bc421551SDag-Erling Smørgrav    Myanmar, Nauru, Nepal, New Caledonia, Niue, Norfolk I, Palau,
2019*bc421551SDag-Erling Smørgrav    Papua New Guinea, the Philippines, Pitcairn, Qatar, Réunion, St
2020*bc421551SDag-Erling Smørgrav    Pierre & Miquelon, Samoa, Saudi Arabia, Seychelles, Singapore,
2021*bc421551SDag-Erling Smørgrav    Solomon Is, Tokelau, Tuvalu, Wake, Vanuatu, Wallis & Futuna, and
2022*bc421551SDag-Erling Smørgrav    Xinjiang; for 20-minute daylight saving time in Ghana before 1943;
2023*bc421551SDag-Erling Smørgrav    for half-hour daylight saving time in Belize before 1944 and in
2024*bc421551SDag-Erling Smørgrav    the Dominican Republic before 1975; and for Canary Islands before
2025*bc421551SDag-Erling Smørgrav    1946, for Guinea-Bissau before 1975, for Iceland before 1969, for
2026*bc421551SDag-Erling Smørgrav    Indian Summer Time before 1942, for Indonesia before around 1964,
2027*bc421551SDag-Erling Smørgrav    for Kenya before 1960, for Liberia before 1973, for Madeira before
2028*bc421551SDag-Erling Smørgrav    1967, for Namibia before 1943, for the Netherlands in 1937-9, for
2029*bc421551SDag-Erling Smørgrav    Pakistan before 1971, for Western Sahara before 1977, and for
2030*bc421551SDag-Erling Smørgrav    Zaporozhye in 1880-1924.
2031*bc421551SDag-Erling Smørgrav
2032*bc421551SDag-Erling Smørgrav    For Alaska time from 1900 through 1967, instead of "CAT" use the
2033*bc421551SDag-Erling Smørgrav    abbreviation "AST", the abbreviation commonly used at the time
2034*bc421551SDag-Erling Smørgrav    (Atlantic Standard Time had not been standardized yet).  Use "AWT"
2035*bc421551SDag-Erling Smørgrav    and "APT" instead of the invented abbreviations "CAWT" and "CAPT".
2036*bc421551SDag-Erling Smørgrav
2037*bc421551SDag-Erling Smørgrav    Use "CST" and "CDT" instead of invented abbreviations for Macau
2038*bc421551SDag-Erling Smørgrav    before 1999 and Taiwan before 1938, and use "JST" instead of the
2039*bc421551SDag-Erling Smørgrav    invented abbreviation "JCST" for Japan and Korea before 1938.
2040*bc421551SDag-Erling Smørgrav
2041*bc421551SDag-Erling Smørgrav  Change to database entry category
2042*bc421551SDag-Erling Smørgrav
2043*bc421551SDag-Erling Smørgrav    Move the Pacific/Johnston link from 'australasia' to 'backward',
2044*bc421551SDag-Erling Smørgrav    since Johnston is now uninhabited.
2045*bc421551SDag-Erling Smørgrav
2046*bc421551SDag-Erling Smørgrav  Changes to code
2047*bc421551SDag-Erling Smørgrav
2048*bc421551SDag-Erling Smørgrav    zic no longer mishandles some transitions in January 2038 when it
2049*bc421551SDag-Erling Smørgrav    attempts to work around Qt bug 53071.  This fixes a bug affecting
2050*bc421551SDag-Erling Smørgrav    Pacific/Tongatapu that was introduced in zic 2016e.  localtime.c
2051*bc421551SDag-Erling Smørgrav    now contains a workaround, useful when loading a file generated by
2052*bc421551SDag-Erling Smørgrav    a buggy zic.  (Problem and localtime.c fix reported by Bradley
2053*bc421551SDag-Erling Smørgrav    White.)
2054*bc421551SDag-Erling Smørgrav
2055*bc421551SDag-Erling Smørgrav    zdump -i now outputs non-hour numeric time zone abbreviations
2056*bc421551SDag-Erling Smørgrav    without a colon, e.g., "+0530" rather than "+05:30".  This agrees
2057*bc421551SDag-Erling Smørgrav    with zic %z and with common practice, and simplifies auditing of
2058*bc421551SDag-Erling Smørgrav    zdump output.
2059*bc421551SDag-Erling Smørgrav
2060*bc421551SDag-Erling Smørgrav    zdump is now buildable again with -DUSE_LTZ=0.
2061*bc421551SDag-Erling Smørgrav    (Problem reported by Joseph Myers.)
2062*bc421551SDag-Erling Smørgrav
2063*bc421551SDag-Erling Smørgrav    zdump.c now always includes private.h, to avoid code duplication
2064*bc421551SDag-Erling Smørgrav    with private.h.  (Problem reported by Kees Dekker.)
2065*bc421551SDag-Erling Smørgrav
2066*bc421551SDag-Erling Smørgrav    localtime.c no longer mishandles early or late timestamps
2067*bc421551SDag-Erling Smørgrav    when TZ is set to a POSIX-style string that specifies DST.
2068*bc421551SDag-Erling Smørgrav    (Problem reported by Kees Dekker.)
2069*bc421551SDag-Erling Smørgrav
2070*bc421551SDag-Erling Smørgrav    date and strftime now cause %z to generate "-0000" instead of
2071*bc421551SDag-Erling Smørgrav    "+0000" when the UT offset is zero and the time zone abbreviation
2072*bc421551SDag-Erling Smørgrav    begins with "-".
2073*bc421551SDag-Erling Smørgrav
2074*bc421551SDag-Erling Smørgrav  Changes to documentation and commentary
2075*bc421551SDag-Erling Smørgrav
2076*bc421551SDag-Erling Smørgrav    The 'Theory' file now better documents choice of historical time
2077*bc421551SDag-Erling Smørgrav    zone abbreviations.  (Problems reported by Michael Deckers.)
2078*bc421551SDag-Erling Smørgrav
2079*bc421551SDag-Erling Smørgrav    tz-link.htm now covers leap smearing, which is popular in clouds.
2080*bc421551SDag-Erling Smørgrav
2081*bc421551SDag-Erling Smørgrav
2082*bc421551SDag-Erling SmørgravRelease 2016j - 2016-11-22 23:17:13 -0800
2083*bc421551SDag-Erling Smørgrav
2084*bc421551SDag-Erling Smørgrav  Briefly: Saratov, Russia moves from +03 to +04 on 2016-12-04.
2085*bc421551SDag-Erling Smørgrav
2086*bc421551SDag-Erling Smørgrav  Changes to future timestamps
2087*bc421551SDag-Erling Smørgrav
2088*bc421551SDag-Erling Smørgrav    Saratov, Russia switches from +03 to +04 on 2016-12-04 at 02:00.
2089*bc421551SDag-Erling Smørgrav    This hives off a new zone Europe/Saratov from Europe/Volgograd.
2090*bc421551SDag-Erling Smørgrav    (Thanks to Yuri Konotopov and Stepan Golosunov.)
2091*bc421551SDag-Erling Smørgrav
2092*bc421551SDag-Erling Smørgrav  Changes to past timestamps
2093*bc421551SDag-Erling Smørgrav
2094*bc421551SDag-Erling Smørgrav    The new zone Asia/Atyrau for Atyraū Region, Kazakhstan, is like
2095*bc421551SDag-Erling Smørgrav    Asia/Aqtau except it switched from +05/+06 to +04/+05 in spring
2096*bc421551SDag-Erling Smørgrav    1999, not fall 1994.  (Thanks to Stepan Golosunov.)
2097*bc421551SDag-Erling Smørgrav
2098*bc421551SDag-Erling Smørgrav  Changes to past time zone abbreviations
2099*bc421551SDag-Erling Smørgrav
2100*bc421551SDag-Erling Smørgrav    Asia/Gaza and Asia/Hebron now use "EEST", not "EET", to denote
2101*bc421551SDag-Erling Smørgrav    summer time before 1948.  The old use of "EET" was a typo.
2102*bc421551SDag-Erling Smørgrav
2103*bc421551SDag-Erling Smørgrav  Changes to code
2104*bc421551SDag-Erling Smørgrav
2105*bc421551SDag-Erling Smørgrav    zic no longer mishandles file systems that lack hard links, fixing
2106*bc421551SDag-Erling Smørgrav    bugs introduced in 2016g.  (Problems reported by Tom Lane.)
2107*bc421551SDag-Erling Smørgrav    Also, when the destination already contains symbolic links, zic
2108*bc421551SDag-Erling Smørgrav    should now work better on systems where the 'link' system call
2109*bc421551SDag-Erling Smørgrav    does not follow symbolic links.
2110*bc421551SDag-Erling Smørgrav
2111*bc421551SDag-Erling Smørgrav  Changes to documentation and commentary
2112*bc421551SDag-Erling Smørgrav
2113*bc421551SDag-Erling Smørgrav    tz-link.htm now documents the relationship between release version
2114*bc421551SDag-Erling Smørgrav    numbers and development-repository commit tags.  (Suggested by
2115*bc421551SDag-Erling Smørgrav    Paul Koning.)
2116*bc421551SDag-Erling Smørgrav
2117*bc421551SDag-Erling Smørgrav    The 'Theory' file now documents UT.
2118*bc421551SDag-Erling Smørgrav
2119*bc421551SDag-Erling Smørgrav    iso3166.tab now accents "Curaçao", and commentary now mentions
2120*bc421551SDag-Erling Smørgrav    the names "Cabo Verde" and "Czechia".  (Thanks to Jiří Boháč.)
2121*bc421551SDag-Erling Smørgrav
2122*bc421551SDag-Erling Smørgrav
2123*bc421551SDag-Erling SmørgravRelease 2016i - 2016-11-01 23:19:52 -0700
2124*bc421551SDag-Erling Smørgrav
2125*bc421551SDag-Erling Smørgrav  Briefly: Cyprus split into two time zones on 2016-10-30, and Tonga
2126*bc421551SDag-Erling Smørgrav  reintroduces DST on 2016-11-06.
2127*bc421551SDag-Erling Smørgrav
2128*bc421551SDag-Erling Smørgrav  Changes to future timestamps
2129*bc421551SDag-Erling Smørgrav
2130*bc421551SDag-Erling Smørgrav    Pacific/Tongatapu begins DST on 2016-11-06 at 02:00, ending on
2131*bc421551SDag-Erling Smørgrav    2017-01-15 at 03:00.  Assume future observances in Tonga will be
2132*bc421551SDag-Erling Smørgrav    from the first Sunday in November through the third Sunday in
2133*bc421551SDag-Erling Smørgrav    January, like Fiji.  (Thanks to Pulu ʻAnau.)  Switch to numeric
2134*bc421551SDag-Erling Smørgrav    time zone abbreviations for this zone.
2135*bc421551SDag-Erling Smørgrav
2136*bc421551SDag-Erling Smørgrav  Changes to past and future timestamps
2137*bc421551SDag-Erling Smørgrav
2138*bc421551SDag-Erling Smørgrav    Northern Cyprus is now +03 year round, causing a split in Cyprus
2139*bc421551SDag-Erling Smørgrav    time zones starting 2016-10-30 at 04:00.  This creates a zone
2140*bc421551SDag-Erling Smørgrav    Asia/Famagusta.  (Thanks to Even Scharning and Matt Johnson.)
2141*bc421551SDag-Erling Smørgrav
2142*bc421551SDag-Erling Smørgrav    Antarctica/Casey switched from +08 to +11 on 2016-10-22.
2143*bc421551SDag-Erling Smørgrav    (Thanks to Steffen Thorsen.)
2144*bc421551SDag-Erling Smørgrav
2145*bc421551SDag-Erling Smørgrav  Changes to past timestamps
2146*bc421551SDag-Erling Smørgrav
2147*bc421551SDag-Erling Smørgrav    Several corrections were made for pre-1975 timestamps in Italy.
2148*bc421551SDag-Erling Smørgrav    These affect Europe/Malta, Europe/Rome, Europe/San_Marino, and
2149*bc421551SDag-Erling Smørgrav    Europe/Vatican.
2150*bc421551SDag-Erling Smørgrav
2151*bc421551SDag-Erling Smørgrav    First, the 1893-11-01 00:00 transition in Italy used the new UT
2152*bc421551SDag-Erling Smørgrav    offset (+01), not the old (+00:49:56).  (Thanks to Michael
2153*bc421551SDag-Erling Smørgrav    Deckers.)
2154*bc421551SDag-Erling Smørgrav
2155*bc421551SDag-Erling Smørgrav    Second, rules for daylight saving in Italy were changed to agree
2156*bc421551SDag-Erling Smørgrav    with Italy's National Institute of Metrological Research (INRiM)
2157*bc421551SDag-Erling Smørgrav    except for 1944, as follows (thanks to Pierpaolo Bernardi, Brian
2158*bc421551SDag-Erling Smørgrav    Inglis, and Michael Deckers):
2159*bc421551SDag-Erling Smørgrav
2160*bc421551SDag-Erling Smørgrav      The 1916-06-03 transition was at 24:00, not 00:00.
2161*bc421551SDag-Erling Smørgrav
2162*bc421551SDag-Erling Smørgrav      The 1916-10-01, 1919-10-05, and 1920-09-19 transitions were at
2163*bc421551SDag-Erling Smørgrav      00:00, not 01:00.
2164*bc421551SDag-Erling Smørgrav
2165*bc421551SDag-Erling Smørgrav      The 1917-09-30 and 1918-10-06 transitions were at 24:00, not
2166*bc421551SDag-Erling Smørgrav      01:00.
2167*bc421551SDag-Erling Smørgrav
2168*bc421551SDag-Erling Smørgrav      The 1944-09-17 transition was at 03:00, not 01:00.  This
2169*bc421551SDag-Erling Smørgrav      particular change is taken from Italian law as INRiM's table,
2170*bc421551SDag-Erling Smørgrav      (which says 02:00) appears to have a typo here.  Also, keep the
2171*bc421551SDag-Erling Smørgrav      1944-04-03 transition for Europe/Rome, as Rome was controlled by
2172*bc421551SDag-Erling Smørgrav      Germany then.
2173*bc421551SDag-Erling Smørgrav
2174*bc421551SDag-Erling Smørgrav      The 1967-1970 and 1972-1974 fallback transitions were at 01:00,
2175*bc421551SDag-Erling Smørgrav      not 00:00.
2176*bc421551SDag-Erling Smørgrav
2177*bc421551SDag-Erling Smørgrav  Changes to code
2178*bc421551SDag-Erling Smørgrav
2179*bc421551SDag-Erling Smørgrav    The code should now be buildable on AmigaOS merely by setting the
2180*bc421551SDag-Erling Smørgrav    appropriate Makefile variables.  (From a patch by Carsten Larsen.)
2181*bc421551SDag-Erling Smørgrav
2182*bc421551SDag-Erling Smørgrav
2183*bc421551SDag-Erling SmørgravRelease 2016h - 2016-10-19 23:17:57 -0700
2184*bc421551SDag-Erling Smørgrav
2185*bc421551SDag-Erling Smørgrav  Changes to future timestamps
2186*bc421551SDag-Erling Smørgrav
2187*bc421551SDag-Erling Smørgrav    Asia/Gaza and Asia/Hebron end DST on 2016-10-29 at 01:00, not
2188*bc421551SDag-Erling Smørgrav    2016-10-21 at 00:00.  (Thanks to Sharef Mustafa.)  Predict that
2189*bc421551SDag-Erling Smørgrav    future fall transitions will be on the last Saturday of October
2190*bc421551SDag-Erling Smørgrav    at 01:00, which is consistent with predicted spring transitions
2191*bc421551SDag-Erling Smørgrav    on the last Saturday of March.  (Thanks to Tim Parenti.)
2192*bc421551SDag-Erling Smørgrav
2193*bc421551SDag-Erling Smørgrav  Changes to past timestamps
2194*bc421551SDag-Erling Smørgrav
2195*bc421551SDag-Erling Smørgrav    In Turkey, transitions in 1986-1990 were at 01:00 standard time
2196*bc421551SDag-Erling Smørgrav    not at 02:00, and the spring 1994 transition was on March 20, not
2197*bc421551SDag-Erling Smørgrav    March 27.  (Thanks to Kıvanç Yazan.)
2198*bc421551SDag-Erling Smørgrav
2199*bc421551SDag-Erling Smørgrav  Changes to past and future time zone abbreviations
2200*bc421551SDag-Erling Smørgrav
2201*bc421551SDag-Erling Smørgrav    Asia/Colombo now uses numeric time zone abbreviations like "+0530"
2202*bc421551SDag-Erling Smørgrav    instead of alphabetic ones like "IST" and "LKT".  Various
2203*bc421551SDag-Erling Smørgrav    English-language sources use "IST", "LKT" and "SLST", with no
2204*bc421551SDag-Erling Smørgrav    working consensus.  (Usage of "SLST" mentioned by Sadika
2205*bc421551SDag-Erling Smørgrav    Sumanapala.)
2206*bc421551SDag-Erling Smørgrav
2207*bc421551SDag-Erling Smørgrav  Changes to code
2208*bc421551SDag-Erling Smørgrav
2209*bc421551SDag-Erling Smørgrav    zic no longer mishandles relativizing file names when creating
2210*bc421551SDag-Erling Smørgrav    symbolic links like /etc/localtime, when these symbolic links
2211*bc421551SDag-Erling Smørgrav    are outside the usual directory hierarchy.  This fixes a bug
2212*bc421551SDag-Erling Smørgrav    introduced in 2016g.  (Problem reported by Andreas Stieger.)
2213*bc421551SDag-Erling Smørgrav
2214*bc421551SDag-Erling Smørgrav  Changes to build procedure
2215*bc421551SDag-Erling Smørgrav
2216*bc421551SDag-Erling Smørgrav    New rules 'traditional_tarballs' and 'traditional_signatures' for
2217*bc421551SDag-Erling Smørgrav    building just the traditional-format distribution.  (Requested by
2218*bc421551SDag-Erling Smørgrav    Deborah Goldsmith.)
2219*bc421551SDag-Erling Smørgrav
2220*bc421551SDag-Erling Smørgrav    The file 'version' is now put into the tzdata tarball too.
2221*bc421551SDag-Erling Smørgrav    (Requested by Howard Hinnant.)
2222*bc421551SDag-Erling Smørgrav
2223*bc421551SDag-Erling Smørgrav  Changes to documentation and commentary
2224*bc421551SDag-Erling Smørgrav
2225*bc421551SDag-Erling Smørgrav    The 'Theory' file now has a section on interface stability.
2226*bc421551SDag-Erling Smørgrav    (Requested by Paul Koning.)  It also mentions features like
2227*bc421551SDag-Erling Smørgrav    tm_zone and localtime_rz that have long been supported by the
2228*bc421551SDag-Erling Smørgrav    reference code.
2229*bc421551SDag-Erling Smørgrav
2230*bc421551SDag-Erling Smørgrav    tz-link.htm has improved coverage of time zone boundaries suitable
2231*bc421551SDag-Erling Smørgrav    for geolocation.  (Thanks to heads-ups from Evan Siroky and Matt
2232*bc421551SDag-Erling Smørgrav    Johnson.)
2233*bc421551SDag-Erling Smørgrav
2234*bc421551SDag-Erling Smørgrav    The US commentary now mentions Allen and the "day of two noons".
2235*bc421551SDag-Erling Smørgrav
2236*bc421551SDag-Erling Smørgrav    The Fiji commentary mentions the government's 2016-10-03 press
2237*bc421551SDag-Erling Smørgrav    release.  (Thanks to Raymond Kumar.)
2238*bc421551SDag-Erling Smørgrav
2239*bc421551SDag-Erling Smørgrav
2240*bc421551SDag-Erling SmørgravRelease 2016g - 2016-09-13 08:56:38 -0700
2241*bc421551SDag-Erling Smørgrav
2242*bc421551SDag-Erling Smørgrav  Changes to future timestamps
2243*bc421551SDag-Erling Smørgrav
2244*bc421551SDag-Erling Smørgrav    Turkey switched from EET/EEST (+02/+03) to permanent +03,
2245*bc421551SDag-Erling Smørgrav    effective 2016-09-07.  (Thanks to Burak AYDIN.)  Use "+03" rather
2246*bc421551SDag-Erling Smørgrav    than an invented abbreviation for the new time.
2247*bc421551SDag-Erling Smørgrav
2248*bc421551SDag-Erling Smørgrav    New leap second 2016-12-31 23:59:60 UTC as per IERS Bulletin C 52.
2249*bc421551SDag-Erling Smørgrav    (Thanks to Tim Parenti.)
2250*bc421551SDag-Erling Smørgrav
2251*bc421551SDag-Erling Smørgrav  Changes to past timestamps
2252*bc421551SDag-Erling Smørgrav
2253*bc421551SDag-Erling Smørgrav    For America/Los_Angeles, spring-forward transition times have been
2254*bc421551SDag-Erling Smørgrav    corrected from 02:00 to 02:01 in 1948, and from 02:00 to 01:00 in
2255*bc421551SDag-Erling Smørgrav    1950-1966.
2256*bc421551SDag-Erling Smørgrav
2257*bc421551SDag-Erling Smørgrav    For zones using Soviet time on 1919-07-01, transitions to UT-based
2258*bc421551SDag-Erling Smørgrav    time were at 00:00 UT, not at 02:00 local time.  The affected
2259*bc421551SDag-Erling Smørgrav    zones are Europe/Kirov, Europe/Moscow, Europe/Samara, and
2260*bc421551SDag-Erling Smørgrav    Europe/Ulyanovsk.  (Thanks to Alexander Belopolsky.)
2261*bc421551SDag-Erling Smørgrav
2262*bc421551SDag-Erling Smørgrav  Changes to past and future time zone abbreviations
2263*bc421551SDag-Erling Smørgrav
2264*bc421551SDag-Erling Smørgrav    The Factory zone now uses the time zone abbreviation -00 instead
2265*bc421551SDag-Erling Smørgrav    of a long English-language string, as -00 is now the normal way to
2266*bc421551SDag-Erling Smørgrav    represent an undefined time zone.
2267*bc421551SDag-Erling Smørgrav
2268*bc421551SDag-Erling Smørgrav    Several zones in Antarctica and the former Soviet Union, along
2269*bc421551SDag-Erling Smørgrav    with zones intended for ships at sea that cannot use POSIX TZ
2270*bc421551SDag-Erling Smørgrav    strings, now use numeric time zone abbreviations instead of
2271*bc421551SDag-Erling Smørgrav    invented or obsolete alphanumeric abbreviations.  The affected
2272*bc421551SDag-Erling Smørgrav    zones are Antarctica/Casey, Antarctica/Davis,
2273*bc421551SDag-Erling Smørgrav    Antarctica/DumontDUrville, Antarctica/Mawson, Antarctica/Rothera,
2274*bc421551SDag-Erling Smørgrav    Antarctica/Syowa, Antarctica/Troll, Antarctica/Vostok,
2275*bc421551SDag-Erling Smørgrav    Asia/Anadyr, Asia/Ashgabat, Asia/Baku, Asia/Bishkek, Asia/Chita,
2276*bc421551SDag-Erling Smørgrav    Asia/Dushanbe, Asia/Irkutsk, Asia/Kamchatka, Asia/Khandyga,
2277*bc421551SDag-Erling Smørgrav    Asia/Krasnoyarsk, Asia/Magadan, Asia/Omsk, Asia/Sakhalin,
2278*bc421551SDag-Erling Smørgrav    Asia/Samarkand, Asia/Srednekolymsk, Asia/Tashkent, Asia/Tbilisi,
2279*bc421551SDag-Erling Smørgrav    Asia/Ust-Nera, Asia/Vladivostok, Asia/Yakutsk, Asia/Yekaterinburg,
2280*bc421551SDag-Erling Smørgrav    Asia/Yerevan, Etc/GMT-14, Etc/GMT-13, Etc/GMT-12, Etc/GMT-11,
2281*bc421551SDag-Erling Smørgrav    Etc/GMT-10, Etc/GMT-9, Etc/GMT-8, Etc/GMT-7, Etc/GMT-6, Etc/GMT-5,
2282*bc421551SDag-Erling Smørgrav    Etc/GMT-4, Etc/GMT-3, Etc/GMT-2, Etc/GMT-1, Etc/GMT+1, Etc/GMT+2,
2283*bc421551SDag-Erling Smørgrav    Etc/GMT+3, Etc/GMT+4, Etc/GMT+5, Etc/GMT+6, Etc/GMT+7, Etc/GMT+8,
2284*bc421551SDag-Erling Smørgrav    Etc/GMT+9, Etc/GMT+10, Etc/GMT+11, Etc/GMT+12, Europe/Kaliningrad,
2285*bc421551SDag-Erling Smørgrav    Europe/Minsk, Europe/Samara, Europe/Volgograd, and
2286*bc421551SDag-Erling Smørgrav    Indian/Kerguelen.  For Europe/Moscow the invented abbreviation MSM
2287*bc421551SDag-Erling Smørgrav    was replaced by +05, whereas MSK and MSD were kept as they are not
2288*bc421551SDag-Erling Smørgrav    our invention and are widely used.
2289*bc421551SDag-Erling Smørgrav
2290*bc421551SDag-Erling Smørgrav  Changes to zone names
2291*bc421551SDag-Erling Smørgrav
2292*bc421551SDag-Erling Smørgrav    Rename Asia/Rangoon to Asia/Yangon, with a backward compatibility link.
2293*bc421551SDag-Erling Smørgrav    (Thanks to David Massoud.)
2294*bc421551SDag-Erling Smørgrav
2295*bc421551SDag-Erling Smørgrav  Changes to code
2296*bc421551SDag-Erling Smørgrav
2297*bc421551SDag-Erling Smørgrav    zic no longer generates binary files containing POSIX TZ-like
2298*bc421551SDag-Erling Smørgrav    strings that disagree with the local time type after the last
2299*bc421551SDag-Erling Smørgrav    explicit transition in the data.  This fixes a bug with
2300*bc421551SDag-Erling Smørgrav    Africa/Casablanca and Africa/El_Aaiun in some year-2037 timestamps
2301*bc421551SDag-Erling Smørgrav    on the reference platform.  (Thanks to Alexander Belopolsky for
2302*bc421551SDag-Erling Smørgrav    reporting the bug and suggesting a way forward.)
2303*bc421551SDag-Erling Smørgrav
2304*bc421551SDag-Erling Smørgrav    If the installed localtime and/or posixrules files are symbolic
2305*bc421551SDag-Erling Smørgrav    links, zic now keeps them symbolic links when updating them, for
2306*bc421551SDag-Erling Smørgrav    compatibility with platforms like OpenSUSE where other programs
2307*bc421551SDag-Erling Smørgrav    configure these files as symlinks.
2308*bc421551SDag-Erling Smørgrav
2309*bc421551SDag-Erling Smørgrav    zic now avoids hard linking to symbolic links, avoids some
2310*bc421551SDag-Erling Smørgrav    unnecessary mkdir and stat system calls, and uses shorter file
2311*bc421551SDag-Erling Smørgrav    names internally.
2312*bc421551SDag-Erling Smørgrav
2313*bc421551SDag-Erling Smørgrav    zdump has a new -i option to generate transitions in a
2314*bc421551SDag-Erling Smørgrav    more-compact but still human-readable format.  This option is
2315*bc421551SDag-Erling Smørgrav    experimental, and the output format may change in future versions.
2316*bc421551SDag-Erling Smørgrav    (Thanks to Jon Skeet for suggesting that an option was needed,
2317*bc421551SDag-Erling Smørgrav    and thanks to Tim Parenti and Chris Rovick for further comments.)
2318*bc421551SDag-Erling Smørgrav
2319*bc421551SDag-Erling Smørgrav  Changes to build procedure
2320*bc421551SDag-Erling Smørgrav
2321*bc421551SDag-Erling Smørgrav    An experimental distribution format is available, in addition
2322*bc421551SDag-Erling Smørgrav    to the traditional format which will continue to be distributed.
2323*bc421551SDag-Erling Smørgrav    The new format is a tarball tzdb-VERSION.tar.lz with signature
2324*bc421551SDag-Erling Smørgrav    file tzdb-VERSION.tar.lz.asc.  It unpacks to a top-level directory
2325*bc421551SDag-Erling Smørgrav    tzdb-VERSION containing the code and data of the traditional
2326*bc421551SDag-Erling Smørgrav    two-tarball format, along with extra data that may be useful.
2327*bc421551SDag-Erling Smørgrav    (Thanks to Antonio Diaz Diaz, Oscar van Vlijmen, and many others
2328*bc421551SDag-Erling Smørgrav    for comments about the experimental format.)
2329*bc421551SDag-Erling Smørgrav
2330*bc421551SDag-Erling Smørgrav    The release version number is now more accurate in the usual case
2331*bc421551SDag-Erling Smørgrav    where releases are built from a Git repository.  For example, if
2332*bc421551SDag-Erling Smørgrav    23 commits and some working-file changes have been made since
2333*bc421551SDag-Erling Smørgrav    release 2016g, the version number is now something like
2334*bc421551SDag-Erling Smørgrav    '2016g-23-g50556e3-dirty' instead of the misleading '2016g'.
2335*bc421551SDag-Erling Smørgrav    Tagged releases use the same version number format as before,
2336*bc421551SDag-Erling Smørgrav    e.g., '2016g'.  To support the more-accurate version number, its
2337*bc421551SDag-Erling Smørgrav    specification has moved from a line in the Makefile to a new
2338*bc421551SDag-Erling Smørgrav    source file 'version'.
2339*bc421551SDag-Erling Smørgrav
2340*bc421551SDag-Erling Smørgrav    The experimental distribution contains a file to2050.tzs that
2341*bc421551SDag-Erling Smørgrav    contains what should be the output of 'zdump -i -c 2050' on
2342*bc421551SDag-Erling Smørgrav    primary zones.  If this file is available, 'make check' now checks
2343*bc421551SDag-Erling Smørgrav    that zdump generates this output.
2344*bc421551SDag-Erling Smørgrav
2345*bc421551SDag-Erling Smørgrav    'make check_web' now works on Fedora-like distributions.
2346*bc421551SDag-Erling Smørgrav
2347*bc421551SDag-Erling Smørgrav  Changes to documentation and commentary
2348*bc421551SDag-Erling Smørgrav
2349*bc421551SDag-Erling Smørgrav    tzfile.5 now documents the new restriction on POSIX TZ-like
2350*bc421551SDag-Erling Smørgrav    strings that is now implemented by zic.
2351*bc421551SDag-Erling Smørgrav
2352*bc421551SDag-Erling Smørgrav    Comments now cite URLs for some 1917-1921 Russian DST decrees.
2353*bc421551SDag-Erling Smørgrav    (Thanks to Alexander Belopolsky.)
2354*bc421551SDag-Erling Smørgrav
2355*bc421551SDag-Erling Smørgrav    tz-link.htm mentions JuliaTime (thanks to Curtis Vogt) and Time4J
2356*bc421551SDag-Erling Smørgrav    (thanks to Meno Hochschild) and ThreeTen-Extra, and its
2357*bc421551SDag-Erling Smørgrav    description of Java 8 has been brought up to date (thanks to
2358*bc421551SDag-Erling Smørgrav    Stephen Colebourne).  Its description of local time on Mars has
2359*bc421551SDag-Erling Smørgrav    been updated to match current practice, and URLs have been updated
2360*bc421551SDag-Erling Smørgrav    and some obsolete ones removed.
2361*bc421551SDag-Erling Smørgrav
2362*bc421551SDag-Erling Smørgrav
2363*bc421551SDag-Erling SmørgravRelease 2016f - 2016-07-05 16:26:51 +0200
2364*bc421551SDag-Erling Smørgrav
2365*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
2366*bc421551SDag-Erling Smørgrav
2367*bc421551SDag-Erling Smørgrav    The Egyptian government changed its mind on short notice, and
2368*bc421551SDag-Erling Smørgrav    Africa/Cairo will not introduce DST starting 2016-07-07 after all.
2369*bc421551SDag-Erling Smørgrav    (Thanks to Mina Samuel.)
2370*bc421551SDag-Erling Smørgrav
2371*bc421551SDag-Erling Smørgrav    Asia/Novosibirsk switches from +06 to +07 on 2016-07-24 at 02:00.
2372*bc421551SDag-Erling Smørgrav    (Thanks to Stepan Golosunov.)
2373*bc421551SDag-Erling Smørgrav
2374*bc421551SDag-Erling Smørgrav  Changes to past and future timestamps
2375*bc421551SDag-Erling Smørgrav
2376*bc421551SDag-Erling Smørgrav    Asia/Novokuznetsk and Asia/Novosibirsk now use numeric time zone
2377*bc421551SDag-Erling Smørgrav    abbreviations instead of invented ones.
2378*bc421551SDag-Erling Smørgrav
2379*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
2380*bc421551SDag-Erling Smørgrav
2381*bc421551SDag-Erling Smørgrav    Europe/Minsk's 1992-03-29 spring-forward transition was at 02:00 not 00:00.
2382*bc421551SDag-Erling Smørgrav    (Thanks to Stepan Golosunov.)
2383*bc421551SDag-Erling Smørgrav
2384*bc421551SDag-Erling Smørgrav
2385*bc421551SDag-Erling SmørgravRelease 2016e - 2016-06-14 08:46:16 -0700
2386*bc421551SDag-Erling Smørgrav
2387*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
2388*bc421551SDag-Erling Smørgrav
2389*bc421551SDag-Erling Smørgrav    Africa/Cairo observes DST in 2016 from July 7 to the end of October.
2390*bc421551SDag-Erling Smørgrav    Guess October 27 and 24:00 transitions.  (Thanks to Steffen Thorsen.)
2391*bc421551SDag-Erling Smørgrav    For future years, guess April's last Thursday to October's last
2392*bc421551SDag-Erling Smørgrav    Thursday except for Ramadan.
2393*bc421551SDag-Erling Smørgrav
2394*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
2395*bc421551SDag-Erling Smørgrav
2396*bc421551SDag-Erling Smørgrav    Locations while uninhabited now use '-00', not 'zzz', as a
2397*bc421551SDag-Erling Smørgrav    placeholder time zone abbreviation.  This is inspired by Internet
2398*bc421551SDag-Erling Smørgrav    RFC 3339 and is more consistent with numeric time zone
2399*bc421551SDag-Erling Smørgrav    abbreviations already used elsewhere.  The change affects several
2400*bc421551SDag-Erling Smørgrav    arctic and antarctic locations, e.g., America/Cambridge_Bay before
2401*bc421551SDag-Erling Smørgrav    1920 and Antarctica/Troll before 2005.
2402*bc421551SDag-Erling Smørgrav
2403*bc421551SDag-Erling Smørgrav    Asia/Baku's 1992-09-27 transition from +04 (DST) to +04 (non-DST) was
2404*bc421551SDag-Erling Smørgrav    at 03:00, not 23:00 the previous day.  (Thanks to Michael Deckers.)
2405*bc421551SDag-Erling Smørgrav
2406*bc421551SDag-Erling Smørgrav  Changes to code
2407*bc421551SDag-Erling Smørgrav
2408*bc421551SDag-Erling Smørgrav    zic now outputs a dummy transition at time 2**31 - 1 in zones
2409*bc421551SDag-Erling Smørgrav    whose POSIX-style TZ strings contain a '<'.  This mostly works
2410*bc421551SDag-Erling Smørgrav    around Qt bug 53071 <https://bugreports.qt.io/browse/QTBUG-53071>.
2411*bc421551SDag-Erling Smørgrav    (Thanks to Zhanibek Adilbekov for reporting the Qt bug.)
2412*bc421551SDag-Erling Smørgrav
2413*bc421551SDag-Erling Smørgrav  Changes affecting documentation and commentary
2414*bc421551SDag-Erling Smørgrav
2415*bc421551SDag-Erling Smørgrav    tz-link.htm says why governments should give plenty of notice for
2416*bc421551SDag-Erling Smørgrav    time zone or DST changes, and refers to Matt Johnson's blog post.
2417*bc421551SDag-Erling Smørgrav
2418*bc421551SDag-Erling Smørgrav    tz-link.htm mentions Tzdata for Elixir.  (Thanks to Matt Johnson.)
2419*bc421551SDag-Erling Smørgrav
2420*bc421551SDag-Erling Smørgrav
2421*bc421551SDag-Erling SmørgravRelease 2016d - 2016-04-17 22:50:29 -0700
2422*bc421551SDag-Erling Smørgrav
2423*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
2424*bc421551SDag-Erling Smørgrav
2425*bc421551SDag-Erling Smørgrav    America/Caracas switches from -0430 to -04 on 2016-05-01 at 02:30.
2426*bc421551SDag-Erling Smørgrav    (Thanks to Alexander Krivenyshev for the heads-up.)
2427*bc421551SDag-Erling Smørgrav
2428*bc421551SDag-Erling Smørgrav    Asia/Magadan switches from +10 to +11 on 2016-04-24 at 02:00.
2429*bc421551SDag-Erling Smørgrav    (Thanks to Alexander Krivenyshev and Matt Johnson.)
2430*bc421551SDag-Erling Smørgrav
2431*bc421551SDag-Erling Smørgrav    New zone Asia/Tomsk, split off from Asia/Novosibirsk.  It covers
2432*bc421551SDag-Erling Smørgrav    Tomsk Oblast, Russia, which switches from +06 to +07 on 2016-05-29
2433*bc421551SDag-Erling Smørgrav    at 02:00.  (Thanks to Stepan Golosunov.)
2434*bc421551SDag-Erling Smørgrav
2435*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
2436*bc421551SDag-Erling Smørgrav
2437*bc421551SDag-Erling Smørgrav    New zone Europe/Kirov, split off from Europe/Volgograd.  It covers
2438*bc421551SDag-Erling Smørgrav    Kirov Oblast, Russia, which switched from +04/+05 to +03/+04 on
2439*bc421551SDag-Erling Smørgrav    1989-03-26 at 02:00, roughly a year after Europe/Volgograd made
2440*bc421551SDag-Erling Smørgrav    the same change.  (Thanks to Stepan Golosunov.)
2441*bc421551SDag-Erling Smørgrav
2442*bc421551SDag-Erling Smørgrav    Russia and nearby locations had daylight-saving transitions on
2443*bc421551SDag-Erling Smørgrav    1992-03-29 at 02:00 and 1992-09-27 at 03:00, instead of on
2444*bc421551SDag-Erling Smørgrav    1992-03-28 at 23:00 and 1992-09-26 at 23:00.  (Thanks to Stepan
2445*bc421551SDag-Erling Smørgrav    Golosunov.)
2446*bc421551SDag-Erling Smørgrav
2447*bc421551SDag-Erling Smørgrav    Many corrections to historical time in Kazakhstan from 1991
2448*bc421551SDag-Erling Smørgrav    through 2005.  (Thanks to Stepan Golosunov.)  Replace Kazakhstan's
2449*bc421551SDag-Erling Smørgrav    invented time zone abbreviations with numeric abbreviations.
2450*bc421551SDag-Erling Smørgrav
2451*bc421551SDag-Erling Smørgrav  Changes to commentary
2452*bc421551SDag-Erling Smørgrav
2453*bc421551SDag-Erling Smørgrav    Mention Internet RFCs 7808 (TZDIST) and 7809 (CalDAV time zone references).
2454*bc421551SDag-Erling Smørgrav
2455*bc421551SDag-Erling Smørgrav
2456*bc421551SDag-Erling SmørgravRelease 2016c - 2016-03-23 00:51:27 -0700
2457*bc421551SDag-Erling Smørgrav
2458*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
2459*bc421551SDag-Erling Smørgrav
2460*bc421551SDag-Erling Smørgrav    Azerbaijan no longer observes DST.  (Thanks to Steffen Thorsen.)
2461*bc421551SDag-Erling Smørgrav
2462*bc421551SDag-Erling Smørgrav    Chile reverts from permanent to seasonal DST.  (Thanks to Juan
2463*bc421551SDag-Erling Smørgrav    Correa for the heads-up, and to Tim Parenti for corrections.)
2464*bc421551SDag-Erling Smørgrav    Guess that future transitions are August's and May's second
2465*bc421551SDag-Erling Smørgrav    Saturdays at 24:00 mainland time.  Also, call the period from
2466*bc421551SDag-Erling Smørgrav    2014-09-07 through 2016-05-14 daylight saving time instead of
2467*bc421551SDag-Erling Smørgrav    standard time, as that seems more appropriate now.
2468*bc421551SDag-Erling Smørgrav
2469*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
2470*bc421551SDag-Erling Smørgrav
2471*bc421551SDag-Erling Smørgrav    Europe/Kaliningrad and Europe/Vilnius changed from +03/+04 to
2472*bc421551SDag-Erling Smørgrav    +02/+03 on 1989-03-26, not 1991-03-31.  Europe/Volgograd changed
2473*bc421551SDag-Erling Smørgrav    from +04/+05 to +03/+04 on 1988-03-27, not 1989-03-26.
2474*bc421551SDag-Erling Smørgrav    (Thanks to Stepan Golosunov.)
2475*bc421551SDag-Erling Smørgrav
2476*bc421551SDag-Erling Smørgrav  Changes to commentary
2477*bc421551SDag-Erling Smørgrav
2478*bc421551SDag-Erling Smørgrav    Several updates and URLs for historical and proposed Russian changes.
2479*bc421551SDag-Erling Smørgrav    (Thanks to Stepan Golosunov, Matt Johnson, and Alexander Krivenyshev.)
2480*bc421551SDag-Erling Smørgrav
2481*bc421551SDag-Erling Smørgrav
2482*bc421551SDag-Erling SmørgravRelease 2016b - 2016-03-12 17:30:14 -0800
2483*bc421551SDag-Erling Smørgrav
2484*bc421551SDag-Erling Smørgrav  Compatibility note
2485*bc421551SDag-Erling Smørgrav
2486*bc421551SDag-Erling Smørgrav    Starting with release 2016b, some data entries cause zic implementations
2487*bc421551SDag-Erling Smørgrav    derived from tz releases 2005j through 2015e to issue warnings like
2488*bc421551SDag-Erling Smørgrav    "time zone abbreviation differs from POSIX standard (+03)".
2489*bc421551SDag-Erling Smørgrav    These warnings should not otherwise affect zic's output and can safely be
2490*bc421551SDag-Erling Smørgrav    ignored on today's platforms, as the warnings refer to a restriction in
2491*bc421551SDag-Erling Smørgrav    POSIX.1-1988 that was removed in POSIX.1-2001.  One way to suppress the
2492*bc421551SDag-Erling Smørgrav    warnings is to upgrade to zic derived from tz releases 2015f and later.
2493*bc421551SDag-Erling Smørgrav
2494*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
2495*bc421551SDag-Erling Smørgrav
2496*bc421551SDag-Erling Smørgrav    New zones Europe/Astrakhan and Europe/Ulyanovsk for Astrakhan and
2497*bc421551SDag-Erling Smørgrav    Ulyanovsk Oblasts, Russia, both of which will switch from +03 to +04 on
2498*bc421551SDag-Erling Smørgrav    2016-03-27 at 02:00 local time.  They need distinct zones since their
2499*bc421551SDag-Erling Smørgrav    post-1970 histories disagree.  New zone Asia/Barnaul for Altai Krai and
2500*bc421551SDag-Erling Smørgrav    Altai Republic, Russia, which will switch from +06 to +07 on the same date
2501*bc421551SDag-Erling Smørgrav    and local time.  The Astrakhan change is already official; the others have
2502*bc421551SDag-Erling Smørgrav    passed the first reading in the State Duma and are extremely likely.
2503*bc421551SDag-Erling Smørgrav    Also, Asia/Sakhalin moves from +10 to +11 on 2016-03-27 at 02:00.
2504*bc421551SDag-Erling Smørgrav    (Thanks to Alexander Krivenyshev for the heads-up, and to Matt Johnson
2505*bc421551SDag-Erling Smørgrav    and Stepan Golosunov for followup.)
2506*bc421551SDag-Erling Smørgrav
2507*bc421551SDag-Erling Smørgrav    As a trial of a new system that needs less information to be made up,
2508*bc421551SDag-Erling Smørgrav    the new zones use numeric time zone abbreviations like "+04"
2509*bc421551SDag-Erling Smørgrav    instead of invented abbreviations like "ASTT".
2510*bc421551SDag-Erling Smørgrav
2511*bc421551SDag-Erling Smørgrav    Haiti will not observe DST in 2016.  (Thanks to Jean Antoine via
2512*bc421551SDag-Erling Smørgrav    Steffen Thorsen.)
2513*bc421551SDag-Erling Smørgrav
2514*bc421551SDag-Erling Smørgrav    Palestine's spring-forward transition on 2016-03-26 is at 01:00, not 00:00.
2515*bc421551SDag-Erling Smørgrav    (Thanks to Hannah Kreitem.) Guess future transitions will be March's last
2516*bc421551SDag-Erling Smørgrav    Saturday at 01:00, not March's last Friday at 24:00.
2517*bc421551SDag-Erling Smørgrav
2518*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
2519*bc421551SDag-Erling Smørgrav
2520*bc421551SDag-Erling Smørgrav    Europe/Chisinau observed DST during 1990, and switched from +04 to
2521*bc421551SDag-Erling Smørgrav    +03 at 1990-05-06 02:00, instead of switching from +03 to +02.
2522*bc421551SDag-Erling Smørgrav    (Thanks to Stepan Golosunov.)
2523*bc421551SDag-Erling Smørgrav
2524*bc421551SDag-Erling Smørgrav    1991 abbreviations in Europe/Samara should be SAMT/SAMST, not
2525*bc421551SDag-Erling Smørgrav    KUYT/KUYST.  (Thanks to Stepan Golosunov.)
2526*bc421551SDag-Erling Smørgrav
2527*bc421551SDag-Erling Smørgrav  Changes to code
2528*bc421551SDag-Erling Smørgrav
2529*bc421551SDag-Erling Smørgrav    tzselect's diagnostics and checking, and checktab.awk's checking,
2530*bc421551SDag-Erling Smørgrav    have been improved.  (Thanks to J William Piggott.)
2531*bc421551SDag-Erling Smørgrav
2532*bc421551SDag-Erling Smørgrav    tzcode now builds under MinGW.  (Thanks to Ian Abbott and Esben Haabendal.)
2533*bc421551SDag-Erling Smørgrav
2534*bc421551SDag-Erling Smørgrav    tzselect now tests Julian-date TZ settings more accurately.
2535*bc421551SDag-Erling Smørgrav    (Thanks to J William Piggott.)
2536*bc421551SDag-Erling Smørgrav
2537*bc421551SDag-Erling Smørgrav  Changes to commentary
2538*bc421551SDag-Erling Smørgrav
2539*bc421551SDag-Erling Smørgrav    Comments in zone tables have been improved.  (Thanks to J William Piggott.)
2540*bc421551SDag-Erling Smørgrav
2541*bc421551SDag-Erling Smørgrav    tzselect again limits its menu comments so that menus fit on a
2542*bc421551SDag-Erling Smørgrav    24×80 alphanumeric display.
2543*bc421551SDag-Erling Smørgrav
2544*bc421551SDag-Erling Smørgrav    A new web page tz-how-to.html.  (Thanks to Bill Seymour.)
2545*bc421551SDag-Erling Smørgrav
2546*bc421551SDag-Erling Smørgrav    In the Theory file, the description of possible time zone abbreviations in
2547*bc421551SDag-Erling Smørgrav    tzdata has been cleaned up, as the old description was unclear and
2548*bc421551SDag-Erling Smørgrav    inconsistent.  (Thanks to Alain Mouette for reporting the problem.)
2549*bc421551SDag-Erling Smørgrav
2550*bc421551SDag-Erling Smørgrav
2551*bc421551SDag-Erling SmørgravRelease 2016a - 2016-01-26 23:28:02 -0800
2552*bc421551SDag-Erling Smørgrav
2553*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
2554*bc421551SDag-Erling Smørgrav
2555*bc421551SDag-Erling Smørgrav    America/Cayman will not observe daylight saving this year after all.
2556*bc421551SDag-Erling Smørgrav    Revert our guess that it would.  (Thanks to Matt Johnson.)
2557*bc421551SDag-Erling Smørgrav
2558*bc421551SDag-Erling Smørgrav    Asia/Chita switches from +0800 to +0900 on 2016-03-27 at 02:00.
2559*bc421551SDag-Erling Smørgrav    (Thanks to Alexander Krivenyshev.)
2560*bc421551SDag-Erling Smørgrav
2561*bc421551SDag-Erling Smørgrav    Asia/Tehran now has DST predictions for the year 2038 and later,
2562*bc421551SDag-Erling Smørgrav    to be March 21 00:00 to September 21 00:00.  This is likely better
2563*bc421551SDag-Erling Smørgrav    than predicting no DST, albeit off by a day every now and then.
2564*bc421551SDag-Erling Smørgrav
2565*bc421551SDag-Erling Smørgrav  Changes affecting past and future timestamps
2566*bc421551SDag-Erling Smørgrav
2567*bc421551SDag-Erling Smørgrav    America/Metlakatla switched from PST all year to AKST/AKDT on
2568*bc421551SDag-Erling Smørgrav    2015-11-01 at 02:00.  (Thanks to Steffen Thorsen.)
2569*bc421551SDag-Erling Smørgrav
2570*bc421551SDag-Erling Smørgrav    America/Santa_Isabel has been removed, and replaced with a
2571*bc421551SDag-Erling Smørgrav    backward compatibility link to America/Tijuana.  Its contents were
2572*bc421551SDag-Erling Smørgrav    apparently based on a misreading of Mexican legislation.
2573*bc421551SDag-Erling Smørgrav
2574*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
2575*bc421551SDag-Erling Smørgrav
2576*bc421551SDag-Erling Smørgrav    Asia/Karachi's two transition times in 2002 were off by a minute.
2577*bc421551SDag-Erling Smørgrav    (Thanks to Matt Johnson.)
2578*bc421551SDag-Erling Smørgrav
2579*bc421551SDag-Erling Smørgrav  Changes affecting build procedure
2580*bc421551SDag-Erling Smørgrav
2581*bc421551SDag-Erling Smørgrav    An installer can now combine leap seconds with use of the backzone file,
2582*bc421551SDag-Erling Smørgrav    e.g., with 'make PACKRATDATA=backzone REDO=posix_right zones'.
2583*bc421551SDag-Erling Smørgrav    The old 'make posix_packrat' rule is now marked as obsolescent.
2584*bc421551SDag-Erling Smørgrav    (Thanks to Ian Abbott for an initial implementation.)
2585*bc421551SDag-Erling Smørgrav
2586*bc421551SDag-Erling Smørgrav  Changes affecting documentation and commentary
2587*bc421551SDag-Erling Smørgrav
2588*bc421551SDag-Erling Smørgrav    A new file LICENSE makes it easier to see that the code and data
2589*bc421551SDag-Erling Smørgrav    are mostly public-domain.  (Thanks to James Knight.)  The three
2590*bc421551SDag-Erling Smørgrav    non-public-domain files now use the current (3-clause) BSD license
2591*bc421551SDag-Erling Smørgrav    instead of older versions of that license.
2592*bc421551SDag-Erling Smørgrav
2593*bc421551SDag-Erling Smørgrav    tz-link.htm mentions the BDE library (thanks to Andrew Paprocki),
2594*bc421551SDag-Erling Smørgrav    CCTZ (thanks to Tim Parenti), TimeJones.com, and has a new section
2595*bc421551SDag-Erling Smørgrav    on editing tz source files (with a mention of Sublime zoneinfo,
2596*bc421551SDag-Erling Smørgrav    thanks to Gilmore Davidson).
2597*bc421551SDag-Erling Smørgrav
2598*bc421551SDag-Erling Smørgrav    The Theory and asia files now mention the 2015 book "The Global
2599*bc421551SDag-Erling Smørgrav    Transformation of Time, 1870-1950", and cite a couple of reviews.
2600*bc421551SDag-Erling Smørgrav
2601*bc421551SDag-Erling Smørgrav    The America/Chicago entry now documents the informal use of US
2602*bc421551SDag-Erling Smørgrav    central time in Fort Pierre, South Dakota.  (Thanks to Rick
2603*bc421551SDag-Erling Smørgrav    McDermid, Matt Johnson, and Steve Jones.)
2604*bc421551SDag-Erling Smørgrav
2605*bc421551SDag-Erling Smørgrav
2606*bc421551SDag-Erling SmørgravRelease 2015g - 2015-10-01 00:39:51 -0700
2607*bc421551SDag-Erling Smørgrav
2608*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
2609*bc421551SDag-Erling Smørgrav
2610*bc421551SDag-Erling Smørgrav    Turkey's 2015 fall-back transition is scheduled for Nov. 8, not Oct. 25.
2611*bc421551SDag-Erling Smørgrav    (Thanks to Fatih.)
2612*bc421551SDag-Erling Smørgrav
2613*bc421551SDag-Erling Smørgrav    Norfolk moves from +1130 to +1100 on 2015-10-04 at 02:00 local time.
2614*bc421551SDag-Erling Smørgrav    (Thanks to Alexander Krivenyshev.)
2615*bc421551SDag-Erling Smørgrav
2616*bc421551SDag-Erling Smørgrav    Fiji's 2016 fall-back transition is scheduled for January 17, not 24.
2617*bc421551SDag-Erling Smørgrav    (Thanks to Ken Rylander.)
2618*bc421551SDag-Erling Smørgrav
2619*bc421551SDag-Erling Smørgrav    Fort Nelson, British Columbia will not fall back on 2015-11-01.  It has
2620*bc421551SDag-Erling Smørgrav    effectively been on MST (-0700) since it advanced its clocks on 2015-03-08.
2621*bc421551SDag-Erling Smørgrav    New zone America/Fort_Nelson.  (Thanks to Matt Johnson.)
2622*bc421551SDag-Erling Smørgrav
2623*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
2624*bc421551SDag-Erling Smørgrav
2625*bc421551SDag-Erling Smørgrav    Norfolk observed DST from 1974-10-27 02:00 to 1975-03-02 02:00.
2626*bc421551SDag-Erling Smørgrav
2627*bc421551SDag-Erling Smørgrav  Changes affecting code
2628*bc421551SDag-Erling Smørgrav
2629*bc421551SDag-Erling Smørgrav    localtime no longer mishandles America/Anchorage after 2037.
2630*bc421551SDag-Erling Smørgrav    (Thanks to Bradley White for reporting the bug.)
2631*bc421551SDag-Erling Smørgrav
2632*bc421551SDag-Erling Smørgrav    On hosts with signed 32-bit time_t, localtime no longer mishandles
2633*bc421551SDag-Erling Smørgrav    Pacific/Fiji after 2038-01-16 14:00 UTC.
2634*bc421551SDag-Erling Smørgrav
2635*bc421551SDag-Erling Smørgrav    The localtime module allows the variables 'timezone', 'daylight',
2636*bc421551SDag-Erling Smørgrav    and 'altzone' to be in common storage shared with other modules,
2637*bc421551SDag-Erling Smørgrav    and declares them in case the system <time.h> does not.
2638*bc421551SDag-Erling Smørgrav    (Problems reported by Kees Dekker.)
2639*bc421551SDag-Erling Smørgrav
2640*bc421551SDag-Erling Smørgrav    On platforms with tm_zone, strftime.c now assumes it is not NULL.
2641*bc421551SDag-Erling Smørgrav    This simplifies the code and is consistent with zdump.c.
2642*bc421551SDag-Erling Smørgrav    (Problem reported by Christos Zoulas.)
2643*bc421551SDag-Erling Smørgrav
2644*bc421551SDag-Erling Smørgrav  Changes affecting documentation
2645*bc421551SDag-Erling Smørgrav
2646*bc421551SDag-Erling Smørgrav   The tzfile man page now documents that transition times denote the
2647*bc421551SDag-Erling Smørgrav   starts (not the ends) of the corresponding time periods.
2648*bc421551SDag-Erling Smørgrav   (Ambiguity reported by Bill Seymour.)
2649*bc421551SDag-Erling Smørgrav
2650*bc421551SDag-Erling Smørgrav
2651*bc421551SDag-Erling SmørgravRelease 2015f - 2015-08-10 18:06:56 -0700
2652*bc421551SDag-Erling Smørgrav
2653*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
2654*bc421551SDag-Erling Smørgrav
2655*bc421551SDag-Erling Smørgrav    North Korea switches to +0830 on 2015-08-15.  (Thanks to Steffen Thorsen.)
2656*bc421551SDag-Erling Smørgrav    The abbreviation remains "KST".  (Thanks to Robert Elz.)
2657*bc421551SDag-Erling Smørgrav
2658*bc421551SDag-Erling Smørgrav    Uruguay no longer observes DST.  (Thanks to Steffen Thorsen
2659*bc421551SDag-Erling Smørgrav    and Pablo Camargo.)
2660*bc421551SDag-Erling Smørgrav
2661*bc421551SDag-Erling Smørgrav  Changes affecting past and future timestamps
2662*bc421551SDag-Erling Smørgrav
2663*bc421551SDag-Erling Smørgrav    Moldova starts and ends DST at 00:00 UTC, not at 01:00 UTC.
2664*bc421551SDag-Erling Smørgrav    (Thanks to Roman Tudos.)
2665*bc421551SDag-Erling Smørgrav
2666*bc421551SDag-Erling Smørgrav  Changes affecting data format and code
2667*bc421551SDag-Erling Smørgrav
2668*bc421551SDag-Erling Smørgrav    zic's '-y YEARISTYPE' option is no longer documented.  The TYPE
2669*bc421551SDag-Erling Smørgrav    field of a Rule line should now be '-'; the old values 'even',
2670*bc421551SDag-Erling Smørgrav    'odd', 'uspres', 'nonpres', 'nonuspres' were already undocumented.
2671*bc421551SDag-Erling Smørgrav    Although the implementation has not changed, these features do not
2672*bc421551SDag-Erling Smørgrav    work in the default installation, they are not used in the data,
2673*bc421551SDag-Erling Smørgrav    and they are now considered obsolescent.
2674*bc421551SDag-Erling Smørgrav
2675*bc421551SDag-Erling Smørgrav    zic now checks that two rules don't take effect at the same time.
2676*bc421551SDag-Erling Smørgrav    (Thanks to Jon Skeet and Arthur David Olson.)  Constraints on
2677*bc421551SDag-Erling Smørgrav    simultaneity are now documented.
2678*bc421551SDag-Erling Smørgrav
2679*bc421551SDag-Erling Smørgrav    The two characters '%z' in a zone format now stand for the UT
2680*bc421551SDag-Erling Smørgrav    offset, e.g., '-07' for seven hours behind UT and '+0530' for
2681*bc421551SDag-Erling Smørgrav    five hours and thirty minutes ahead.  This better supports time
2682*bc421551SDag-Erling Smørgrav    zone abbreviations conforming to POSIX.1-2001 and later.
2683*bc421551SDag-Erling Smørgrav
2684*bc421551SDag-Erling Smørgrav  Changes affecting installed data files
2685*bc421551SDag-Erling Smørgrav
2686*bc421551SDag-Erling Smørgrav    Comments for America/Halifax and America/Glace_Bay have been improved.
2687*bc421551SDag-Erling Smørgrav    (Thanks to Brian Inglis.)
2688*bc421551SDag-Erling Smørgrav
2689*bc421551SDag-Erling Smørgrav    Data entries have been simplified for Atlantic/Canary, Europe/Simferopol,
2690*bc421551SDag-Erling Smørgrav    Europe/Sofia, and Europe/Tallinn.  This yields slightly smaller
2691*bc421551SDag-Erling Smørgrav    installed data files for Europe/Simferopol and Europe/Tallinn.
2692*bc421551SDag-Erling Smørgrav    It does not affect timestamps.  (Thanks to Howard Hinnant.)
2693*bc421551SDag-Erling Smørgrav
2694*bc421551SDag-Erling Smørgrav  Changes affecting code
2695*bc421551SDag-Erling Smørgrav
2696*bc421551SDag-Erling Smørgrav    zdump and zic no longer warn about valid time zone abbreviations
2697*bc421551SDag-Erling Smørgrav    like '-05'.
2698*bc421551SDag-Erling Smørgrav
2699*bc421551SDag-Erling Smørgrav    Some Visual Studio 2013 warnings have been suppressed.
2700*bc421551SDag-Erling Smørgrav    (Thanks to Kees Dekker.)
2701*bc421551SDag-Erling Smørgrav
2702*bc421551SDag-Erling Smørgrav    'date' no longer sets the time of day and its -a, -d, -n and -t
2703*bc421551SDag-Erling Smørgrav    options have been removed.  Long obsolescent, the implementation
2704*bc421551SDag-Erling Smørgrav    of these features had porting problems.  Builders no longer need
2705*bc421551SDag-Erling Smørgrav    to configure HAVE_ADJTIME, HAVE_SETTIMEOFDAY, or HAVE_UTMPX_H.
2706*bc421551SDag-Erling Smørgrav    (Thanks to Kees Dekker for pointing out the problem.)
2707*bc421551SDag-Erling Smørgrav
2708*bc421551SDag-Erling Smørgrav  Changes affecting documentation
2709*bc421551SDag-Erling Smørgrav
2710*bc421551SDag-Erling Smørgrav    The Theory file mentions naming issues earlier, as these seem to be
2711*bc421551SDag-Erling Smørgrav    poorly publicized (thanks to Gilmore Davidson for reporting the problem).
2712*bc421551SDag-Erling Smørgrav
2713*bc421551SDag-Erling Smørgrav    tz-link.htm mentions Time Zone Database Parser (thanks to Howard Hinnant).
2714*bc421551SDag-Erling Smørgrav
2715*bc421551SDag-Erling Smørgrav    Mention that Herbert Samuel introduced the term "Summer Time".
2716*bc421551SDag-Erling Smørgrav
2717*bc421551SDag-Erling Smørgrav
2718*bc421551SDag-Erling SmørgravRelease 2015e - 2015-06-13 10:56:02 -0700
2719*bc421551SDag-Erling Smørgrav
2720*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
2721*bc421551SDag-Erling Smørgrav
2722*bc421551SDag-Erling Smørgrav    Morocco will suspend DST from 2015-06-14 03:00 through 2015-07-19 02:00,
2723*bc421551SDag-Erling Smørgrav    not 06-13 and 07-18 as we had guessed.  (Thanks to Milamber.)
2724*bc421551SDag-Erling Smørgrav
2725*bc421551SDag-Erling Smørgrav    Assume Cayman Islands will observe DST starting next year, using US rules.
2726*bc421551SDag-Erling Smørgrav    Although it isn't guaranteed, it is the most likely.
2727*bc421551SDag-Erling Smørgrav
2728*bc421551SDag-Erling Smørgrav  Changes affecting data format
2729*bc421551SDag-Erling Smørgrav
2730*bc421551SDag-Erling Smørgrav    The file 'iso3166.tab' now uses UTF-8, so that its entries can better
2731*bc421551SDag-Erling Smørgrav    spell the names of Åland Islands, Côte d'Ivoire, and Réunion.
2732*bc421551SDag-Erling Smørgrav
2733*bc421551SDag-Erling Smørgrav  Changes affecting code
2734*bc421551SDag-Erling Smørgrav
2735*bc421551SDag-Erling Smørgrav    When displaying data, tzselect converts it to the current locale's
2736*bc421551SDag-Erling Smørgrav    encoding if the iconv command works.  (Problem reported by random832.)
2737*bc421551SDag-Erling Smørgrav
2738*bc421551SDag-Erling Smørgrav    tzselect no longer mishandles Dominica, fixing a bug introduced
2739*bc421551SDag-Erling Smørgrav    in Release 2014f.  (Problem reported by Owen Leibman.)
2740*bc421551SDag-Erling Smørgrav
2741*bc421551SDag-Erling Smørgrav    zic -l no longer fails when compiled with -DTZDEFAULT=\"/etc/localtime\".
2742*bc421551SDag-Erling Smørgrav    This fixes a bug introduced in Release 2014f.
2743*bc421551SDag-Erling Smørgrav    (Problem reported by Leonardo Chiquitto.)
2744*bc421551SDag-Erling Smørgrav
2745*bc421551SDag-Erling Smørgrav
2746*bc421551SDag-Erling SmørgravRelease 2015d - 2015-04-24 08:09:46 -0700
2747*bc421551SDag-Erling Smørgrav
2748*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
2749*bc421551SDag-Erling Smørgrav
2750*bc421551SDag-Erling Smørgrav    Egypt will not observe DST in 2015 and will consider canceling it
2751*bc421551SDag-Erling Smørgrav    permanently.  For now, assume no DST indefinitely.
2752*bc421551SDag-Erling Smørgrav    (Thanks to Ahmed Nazmy and Tim Parenti.)
2753*bc421551SDag-Erling Smørgrav
2754*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
2755*bc421551SDag-Erling Smørgrav
2756*bc421551SDag-Erling Smørgrav    America/Whitehorse switched from UT -09 to -08 on 1967-05-28, not
2757*bc421551SDag-Erling Smørgrav    1966-07-01.  Also, Yukon's time zone history is documented better.
2758*bc421551SDag-Erling Smørgrav    (Thanks to Brian Inglis and Dennis Ferguson.)
2759*bc421551SDag-Erling Smørgrav
2760*bc421551SDag-Erling Smørgrav  Change affecting past and future time zone abbreviations
2761*bc421551SDag-Erling Smørgrav
2762*bc421551SDag-Erling Smørgrav    The abbreviations for Hawaii-Aleutian standard and daylight times
2763*bc421551SDag-Erling Smørgrav    have been changed from HAST/HADT to HST/HDT, as per US Government
2764*bc421551SDag-Erling Smørgrav    Printing Office style.  This affects only America/Adak since 1983,
2765*bc421551SDag-Erling Smørgrav    as America/Honolulu was already using the new style.
2766*bc421551SDag-Erling Smørgrav
2767*bc421551SDag-Erling Smørgrav  Changes affecting code
2768*bc421551SDag-Erling Smørgrav
2769*bc421551SDag-Erling Smørgrav   zic has some minor performance improvements.
2770*bc421551SDag-Erling Smørgrav
2771*bc421551SDag-Erling Smørgrav
2772*bc421551SDag-Erling SmørgravRelease 2015c - 2015-04-11 08:55:55 -0700
2773*bc421551SDag-Erling Smørgrav
2774*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
2775*bc421551SDag-Erling Smørgrav
2776*bc421551SDag-Erling Smørgrav    Egypt's spring-forward transition is at 24:00 on April's last Thursday,
2777*bc421551SDag-Erling Smørgrav    not 00:00 on April's last Friday.  2015's transition will therefore be on
2778*bc421551SDag-Erling Smørgrav    Thursday, April 30 at 24:00, not Friday, April 24 at 00:00.  Similar fixes
2779*bc421551SDag-Erling Smørgrav    apply to 2026, 2037, 2043, etc.  (Thanks to Steffen Thorsen.)
2780*bc421551SDag-Erling Smørgrav
2781*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
2782*bc421551SDag-Erling Smørgrav
2783*bc421551SDag-Erling Smørgrav    The following changes affect some pre-1991 Chile-related timestamps
2784*bc421551SDag-Erling Smørgrav    in America/Santiago, Antarctica/Palmer, and Pacific/Easter.
2785*bc421551SDag-Erling Smørgrav
2786*bc421551SDag-Erling Smørgrav      The 1910 transition was January 10, not January 1.
2787*bc421551SDag-Erling Smørgrav
2788*bc421551SDag-Erling Smørgrav      The 1918 transition was September 10, not September 1.
2789*bc421551SDag-Erling Smørgrav
2790*bc421551SDag-Erling Smørgrav      The UT -04 time observed from 1932 to 1942 is now considered to
2791*bc421551SDag-Erling Smørgrav      be standard time, not year-round DST.
2792*bc421551SDag-Erling Smørgrav
2793*bc421551SDag-Erling Smørgrav      Santiago observed DST (UT -03) from 1946-07-15 through
2794*bc421551SDag-Erling Smørgrav      1946-08-31, then reverted to standard time, then switched to -05
2795*bc421551SDag-Erling Smørgrav      on 1947-04-01.
2796*bc421551SDag-Erling Smørgrav
2797*bc421551SDag-Erling Smørgrav      Assume transitions before 1968 were at 00:00, since we have no data
2798*bc421551SDag-Erling Smørgrav      saying otherwise.
2799*bc421551SDag-Erling Smørgrav
2800*bc421551SDag-Erling Smørgrav      The spring 1988 transition was 1988-10-09, not 1988-10-02.
2801*bc421551SDag-Erling Smørgrav      The fall 1990 transition was 1990-03-11, not 1990-03-18.
2802*bc421551SDag-Erling Smørgrav
2803*bc421551SDag-Erling Smørgrav      Assume no UT offset change for Pacific/Easter on 1890-01-01,
2804*bc421551SDag-Erling Smørgrav      and omit all transitions on Pacific/Easter from 1942 through 1946
2805*bc421551SDag-Erling Smørgrav      since we have no data suggesting that they existed.
2806*bc421551SDag-Erling Smørgrav
2807*bc421551SDag-Erling Smørgrav    One more zone has been turned into a link, as it differed
2808*bc421551SDag-Erling Smørgrav    from an existing zone only for older timestamps.  As usual,
2809*bc421551SDag-Erling Smørgrav    this change affects UT offsets in pre-1970 timestamps only.
2810*bc421551SDag-Erling Smørgrav    The zone's old contents have been moved to the 'backzone' file.
2811*bc421551SDag-Erling Smørgrav    The affected zone is America/Montreal.
2812*bc421551SDag-Erling Smørgrav
2813*bc421551SDag-Erling Smørgrav  Changes affecting commentary
2814*bc421551SDag-Erling Smørgrav
2815*bc421551SDag-Erling Smørgrav    Mention the TZUpdater tool.
2816*bc421551SDag-Erling Smørgrav
2817*bc421551SDag-Erling Smørgrav    Mention "The Time Now".  (Thanks to Brandon Ramsey.)
2818*bc421551SDag-Erling Smørgrav
2819*bc421551SDag-Erling Smørgrav
2820*bc421551SDag-Erling SmørgravRelease 2015b - 2015-03-19 23:28:11 -0700
2821*bc421551SDag-Erling Smørgrav
2822*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
2823*bc421551SDag-Erling Smørgrav
2824*bc421551SDag-Erling Smørgrav    Mongolia will start observing DST again this year, from the last
2825*bc421551SDag-Erling Smørgrav    Saturday in March at 02:00 to the last Saturday in September at 00:00.
2826*bc421551SDag-Erling Smørgrav    (Thanks to Ganbold Tsagaankhuu.)
2827*bc421551SDag-Erling Smørgrav
2828*bc421551SDag-Erling Smørgrav    Palestine will start DST on March 28, not March 27.  Also,
2829*bc421551SDag-Erling Smørgrav    correct the fall 2014 transition from September 26 to October 24.
2830*bc421551SDag-Erling Smørgrav    Adjust future predictions accordingly.  (Thanks to Steffen Thorsen.)
2831*bc421551SDag-Erling Smørgrav
2832*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
2833*bc421551SDag-Erling Smørgrav
2834*bc421551SDag-Erling Smørgrav    The 1982 zone shift in Pacific/Easter has been corrected, fixing a 2015a
2835*bc421551SDag-Erling Smørgrav    regression.  (Thanks to Stuart Bishop for reporting the problem.)
2836*bc421551SDag-Erling Smørgrav
2837*bc421551SDag-Erling Smørgrav    Some more zones have been turned into links, when they differed
2838*bc421551SDag-Erling Smørgrav    from existing zones only for older timestamps.  As usual,
2839*bc421551SDag-Erling Smørgrav    these changes affect UT offsets in pre-1970 timestamps only.
2840*bc421551SDag-Erling Smørgrav    Their old contents have been moved to the 'backzone' file.
2841*bc421551SDag-Erling Smørgrav    The affected zones are: America/Antigua, America/Cayman,
2842*bc421551SDag-Erling Smørgrav    Pacific/Midway, and Pacific/Saipan.
2843*bc421551SDag-Erling Smørgrav
2844*bc421551SDag-Erling Smørgrav  Changes affecting time zone abbreviations
2845*bc421551SDag-Erling Smørgrav
2846*bc421551SDag-Erling Smørgrav    Correct the 1992-2010 DST abbreviation in Volgograd from "MSK" to "MSD".
2847*bc421551SDag-Erling Smørgrav    (Thanks to Hank W.)
2848*bc421551SDag-Erling Smørgrav
2849*bc421551SDag-Erling Smørgrav  Changes affecting code
2850*bc421551SDag-Erling Smørgrav
2851*bc421551SDag-Erling Smørgrav    Fix integer overflow bug in reference 'mktime' implementation.
2852*bc421551SDag-Erling Smørgrav    (Problem reported by Jörg Richter.)
2853*bc421551SDag-Erling Smørgrav
2854*bc421551SDag-Erling Smørgrav    Allow -Dtime_tz=time_t compilations, and allow -Dtime_tz=... libraries
2855*bc421551SDag-Erling Smørgrav    to be used in the same executable as standard-library time_t functions.
2856*bc421551SDag-Erling Smørgrav    (Problems reported by Bradley White.)
2857*bc421551SDag-Erling Smørgrav
2858*bc421551SDag-Erling Smørgrav  Changes affecting commentary
2859*bc421551SDag-Erling Smørgrav
2860*bc421551SDag-Erling Smørgrav    Cite the recent Mexican decree changing Quintana Roo's time zone.
2861*bc421551SDag-Erling Smørgrav    (Thanks to Carlos Raúl Perasso.)
2862*bc421551SDag-Erling Smørgrav
2863*bc421551SDag-Erling Smørgrav    Likewise for the recent Chilean decree.  (Thanks to Eduardo Romero Urra.)
2864*bc421551SDag-Erling Smørgrav
2865*bc421551SDag-Erling Smørgrav    Update info about Mars time.
2866*bc421551SDag-Erling Smørgrav
2867*bc421551SDag-Erling Smørgrav
2868*bc421551SDag-Erling SmørgravRelease 2015a - 2015-01-29 22:35:20 -0800
2869*bc421551SDag-Erling Smørgrav
2870*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
2871*bc421551SDag-Erling Smørgrav
2872*bc421551SDag-Erling Smørgrav    The Mexican state of Quintana Roo, represented by America/Cancun,
2873*bc421551SDag-Erling Smørgrav    will shift from Central Time with DST to Eastern Time without DST
2874*bc421551SDag-Erling Smørgrav    on 2015-02-01 at 02:00.  (Thanks to Steffen Thorsen and Gwillim Law.)
2875*bc421551SDag-Erling Smørgrav
2876*bc421551SDag-Erling Smørgrav    Chile will not change clocks in April or thereafter; its new standard time
2877*bc421551SDag-Erling Smørgrav    will be its old daylight saving time.  This affects America/Santiago,
2878*bc421551SDag-Erling Smørgrav    Pacific/Easter, and Antarctica/Palmer.  (Thanks to Juan Correa.)
2879*bc421551SDag-Erling Smørgrav
2880*bc421551SDag-Erling Smørgrav    New leap second 2015-06-30 23:59:60 UTC as per IERS Bulletin C 49.
2881*bc421551SDag-Erling Smørgrav    (Thanks to Tim Parenti.)
2882*bc421551SDag-Erling Smørgrav
2883*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
2884*bc421551SDag-Erling Smørgrav
2885*bc421551SDag-Erling Smørgrav    Iceland observed DST in 1919 and 1921, and its 1939 fallback
2886*bc421551SDag-Erling Smørgrav    transition was Oct. 29, not Nov. 29.  Remove incorrect data from
2887*bc421551SDag-Erling Smørgrav    Shanks about time in Iceland between 1837 and 1908.
2888*bc421551SDag-Erling Smørgrav
2889*bc421551SDag-Erling Smørgrav    Some more zones have been turned into links, when they differed
2890*bc421551SDag-Erling Smørgrav    from existing zones only for older timestamps.  As usual,
2891*bc421551SDag-Erling Smørgrav    these changes affect UT offsets in pre-1970 timestamps only.
2892*bc421551SDag-Erling Smørgrav    Their old contents have been moved to the 'backzone' file.
2893*bc421551SDag-Erling Smørgrav    The affected zones are: Asia/Aden, Asia/Bahrain, Asia/Kuwait,
2894*bc421551SDag-Erling Smørgrav    and Asia/Muscat.
2895*bc421551SDag-Erling Smørgrav
2896*bc421551SDag-Erling Smørgrav  Changes affecting code
2897*bc421551SDag-Erling Smørgrav
2898*bc421551SDag-Erling Smørgrav    tzalloc now scrubs time zone abbreviations compatibly with the way
2899*bc421551SDag-Erling Smørgrav    that tzset always has, by replacing invalid bytes with '_' and by
2900*bc421551SDag-Erling Smørgrav    shortening too-long abbreviations.
2901*bc421551SDag-Erling Smørgrav
2902*bc421551SDag-Erling Smørgrav    tzselect ports to POSIX awk implementations, no longer mishandles
2903*bc421551SDag-Erling Smørgrav    POSIX TZ settings when GNU awk is used, and reports POSIX TZ
2904*bc421551SDag-Erling Smørgrav    settings to the user.  (Thanks to Stefan Kuhn.)
2905*bc421551SDag-Erling Smørgrav
2906*bc421551SDag-Erling Smørgrav  Changes affecting build procedure
2907*bc421551SDag-Erling Smørgrav
2908*bc421551SDag-Erling Smørgrav    'make check' now checks for links to links in the data.
2909*bc421551SDag-Erling Smørgrav    One such link (for Africa/Asmera) has been fixed.
2910*bc421551SDag-Erling Smørgrav    (Thanks to Stephen Colebourne for pointing out the problem.)
2911*bc421551SDag-Erling Smørgrav
2912*bc421551SDag-Erling Smørgrav  Changes affecting commentary
2913*bc421551SDag-Erling Smørgrav
2914*bc421551SDag-Erling Smørgrav    The leapseconds file commentary now mentions the expiration date.
2915*bc421551SDag-Erling Smørgrav    (Problem reported by Martin Burnicki.)
2916*bc421551SDag-Erling Smørgrav
2917*bc421551SDag-Erling Smørgrav    Update Mexican Library of Congress URL.
2918*bc421551SDag-Erling Smørgrav
2919*bc421551SDag-Erling Smørgrav
2920*bc421551SDag-Erling SmørgravRelease 2014j - 2014-11-10 17:37:11 -0800
2921*bc421551SDag-Erling Smørgrav
2922*bc421551SDag-Erling Smørgrav  Changes affecting current and future timestamps
2923*bc421551SDag-Erling Smørgrav
2924*bc421551SDag-Erling Smørgrav    Turks & Caicos' switch from US eastern time to UT -04 year-round
2925*bc421551SDag-Erling Smørgrav    did not occur on 2014-11-02 at 02:00.  It's currently scheduled
2926*bc421551SDag-Erling Smørgrav    for 2015-11-01 at 02:00.  (Thanks to Chris Walton.)
2927*bc421551SDag-Erling Smørgrav
2928*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
2929*bc421551SDag-Erling Smørgrav
2930*bc421551SDag-Erling Smørgrav    Many pre-1989 timestamps have been corrected for Asia/Seoul and
2931*bc421551SDag-Erling Smørgrav    Asia/Pyongyang, based on sources for the Korean-language Wikipedia
2932*bc421551SDag-Erling Smørgrav    entry for time in Korea.  (Thanks to Sanghyuk Jung.)  Also, no
2933*bc421551SDag-Erling Smørgrav    longer guess that Pyongyang mimicked Seoul time after World War II,
2934*bc421551SDag-Erling Smørgrav    as this is politically implausible.
2935*bc421551SDag-Erling Smørgrav
2936*bc421551SDag-Erling Smørgrav    Some more zones have been turned into links, when they differed
2937*bc421551SDag-Erling Smørgrav    from existing zones only for older timestamps.  As usual,
2938*bc421551SDag-Erling Smørgrav    these changes affect UT offsets in pre-1970 timestamps only.
2939*bc421551SDag-Erling Smørgrav    Their old contents have been moved to the 'backzone' file.
2940*bc421551SDag-Erling Smørgrav    The affected zones are: Africa/Addis_Ababa, Africa/Asmara,
2941*bc421551SDag-Erling Smørgrav    Africa/Dar_es_Salaam, Africa/Djibouti, Africa/Kampala,
2942*bc421551SDag-Erling Smørgrav    Africa/Mogadishu, Indian/Antananarivo, Indian/Comoro, and
2943*bc421551SDag-Erling Smørgrav    Indian/Mayotte.
2944*bc421551SDag-Erling Smørgrav
2945*bc421551SDag-Erling Smørgrav  Changes affecting commentary
2946*bc421551SDag-Erling Smørgrav
2947*bc421551SDag-Erling Smørgrav    The commentary is less enthusiastic about Shanks as a source,
2948*bc421551SDag-Erling Smørgrav    and is more careful to distinguish UT from UTC.
2949*bc421551SDag-Erling Smørgrav
2950*bc421551SDag-Erling Smørgrav
2951*bc421551SDag-Erling SmørgravRelease 2014i - 2014-10-21 22:04:57 -0700
2952*bc421551SDag-Erling Smørgrav
2953*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
2954*bc421551SDag-Erling Smørgrav
2955*bc421551SDag-Erling Smørgrav    Pacific/Fiji will observe DST from 2014-11-02 02:00 to 2015-01-18 03:00.
2956*bc421551SDag-Erling Smørgrav    (Thanks to Ken Rylander for the heads-up.)  Guess that future
2957*bc421551SDag-Erling Smørgrav    years will use a similar pattern.
2958*bc421551SDag-Erling Smørgrav
2959*bc421551SDag-Erling Smørgrav    A new Zone Pacific/Bougainville, for the part of Papua New Guinea
2960*bc421551SDag-Erling Smørgrav    that plans to switch from UT +10 to +11 on 2014-12-28 at 02:00.
2961*bc421551SDag-Erling Smørgrav    (Thanks to Kiley Walbom for the heads-up.)
2962*bc421551SDag-Erling Smørgrav
2963*bc421551SDag-Erling Smørgrav  Changes affecting time zone abbreviations
2964*bc421551SDag-Erling Smørgrav
2965*bc421551SDag-Erling Smørgrav    Since Belarus is not changing its clocks even though Moscow is,
2966*bc421551SDag-Erling Smørgrav    the time zone abbreviation in Europe/Minsk is changing from FET
2967*bc421551SDag-Erling Smørgrav    to its more-traditional value MSK on 2014-10-26 at 01:00.
2968*bc421551SDag-Erling Smørgrav    (Thanks to Alexander Bokovoy for the heads-up about Belarus.)
2969*bc421551SDag-Erling Smørgrav
2970*bc421551SDag-Erling Smørgrav    The new abbreviation IDT stands for the pre-1976 use of UT +08 in
2971*bc421551SDag-Erling Smørgrav    Indochina, to distinguish it better from ICT (+07).
2972*bc421551SDag-Erling Smørgrav
2973*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
2974*bc421551SDag-Erling Smørgrav
2975*bc421551SDag-Erling Smørgrav    Many timestamps have been corrected for Asia/Ho_Chi_Minh before 1976
2976*bc421551SDag-Erling Smørgrav    (thanks to Trần Ngọc Quân for an indirect pointer to Trần Tiến Bình's
2977*bc421551SDag-Erling Smørgrav    authoritative book).  Asia/Ho_Chi_Minh has been added to
2978*bc421551SDag-Erling Smørgrav    zone1970.tab, to give tzselect users in Vietnam two choices,
2979*bc421551SDag-Erling Smørgrav    since north and south Vietnam disagreed after our 1970 cutoff.
2980*bc421551SDag-Erling Smørgrav
2981*bc421551SDag-Erling Smørgrav    Asia/Phnom_Penh and Asia/Vientiane have been turned into links, as
2982*bc421551SDag-Erling Smørgrav    they differed from existing zones only for older timestamps.  As
2983*bc421551SDag-Erling Smørgrav    usual, these changes affect pre-1970 timestamps only.  Their old
2984*bc421551SDag-Erling Smørgrav    contents have been moved to the 'backzone' file.
2985*bc421551SDag-Erling Smørgrav
2986*bc421551SDag-Erling Smørgrav  Changes affecting code
2987*bc421551SDag-Erling Smørgrav
2988*bc421551SDag-Erling Smørgrav    The time-related library functions now set errno on failure, and
2989*bc421551SDag-Erling Smørgrav    some crashes in the new tzalloc-related library functions have
2990*bc421551SDag-Erling Smørgrav    been fixed.  (Thanks to Christos Zoulas for reporting most of
2991*bc421551SDag-Erling Smørgrav    these problems and for suggesting fixes.)
2992*bc421551SDag-Erling Smørgrav
2993*bc421551SDag-Erling Smørgrav    If USG_COMPAT is defined and the requested timestamp is standard time,
2994*bc421551SDag-Erling Smørgrav    the tz library's localtime and mktime functions now set the extern
2995*bc421551SDag-Erling Smørgrav    variable timezone to a value appropriate for that timestamp; and
2996*bc421551SDag-Erling Smørgrav    similarly for ALTZONE, daylight saving time, and the altzone variable.
2997*bc421551SDag-Erling Smørgrav    This change is a companion to the tzname change in 2014h, and is
2998*bc421551SDag-Erling Smørgrav    designed to make timezone and altzone more compatible with tzname.
2999*bc421551SDag-Erling Smørgrav
3000*bc421551SDag-Erling Smørgrav    The tz library's functions now set errno to EOVERFLOW if they fail
3001*bc421551SDag-Erling Smørgrav    because the result cannot be represented.  ctime and ctime_r now
3002*bc421551SDag-Erling Smørgrav    return NULL and set errno when a timestamp is out of range, rather
3003*bc421551SDag-Erling Smørgrav    than having undefined behavior.
3004*bc421551SDag-Erling Smørgrav
3005*bc421551SDag-Erling Smørgrav    Some bugs associated with the new 2014g functions have been fixed.
3006*bc421551SDag-Erling Smørgrav    This includes a bug that largely incapacitated the new functions
3007*bc421551SDag-Erling Smørgrav    time2posix_z and posix2time_z.  (Thanks to Christos Zoulas.)
3008*bc421551SDag-Erling Smørgrav    It also includes some uses of uninitialized variables after tzalloc.
3009*bc421551SDag-Erling Smørgrav    The new code uses the standard type 'ssize_t', which the Makefile
3010*bc421551SDag-Erling Smørgrav    now gives porting advice about.
3011*bc421551SDag-Erling Smørgrav
3012*bc421551SDag-Erling Smørgrav  Changes affecting commentary
3013*bc421551SDag-Erling Smørgrav
3014*bc421551SDag-Erling Smørgrav    Updated URLs for NRC Canada (thanks to Matt Johnson and Brian Inglis).
3015*bc421551SDag-Erling Smørgrav
3016*bc421551SDag-Erling Smørgrav
3017*bc421551SDag-Erling SmørgravRelease 2014h - 2014-09-25 18:59:03 -0700
3018*bc421551SDag-Erling Smørgrav
3019*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
3020*bc421551SDag-Erling Smørgrav
3021*bc421551SDag-Erling Smørgrav    America/Jamaica's 1974 spring-forward transition was Jan. 6, not Apr. 28.
3022*bc421551SDag-Erling Smørgrav
3023*bc421551SDag-Erling Smørgrav    Shanks says Asia/Novokuznetsk switched from LMT (not "NMT") on 1924-05-01,
3024*bc421551SDag-Erling Smørgrav    not 1920-01-06.  The old entry was based on a misinterpretation of Shanks.
3025*bc421551SDag-Erling Smørgrav
3026*bc421551SDag-Erling Smørgrav    Some more zones have been turned into links, when they differed
3027*bc421551SDag-Erling Smørgrav    from existing zones only for older timestamps.  As usual,
3028*bc421551SDag-Erling Smørgrav    these changes affect UT offsets in pre-1970 timestamps only.
3029*bc421551SDag-Erling Smørgrav    Their old contents have been moved to the 'backzone' file.
3030*bc421551SDag-Erling Smørgrav    The affected zones are: Africa/Blantyre, Africa/Bujumbura,
3031*bc421551SDag-Erling Smørgrav    Africa/Gaborone, Africa/Harare, Africa/Kigali, Africa/Lubumbashi,
3032*bc421551SDag-Erling Smørgrav    Africa/Lusaka, Africa/Maseru, and Africa/Mbabane.
3033*bc421551SDag-Erling Smørgrav
3034*bc421551SDag-Erling Smørgrav  Changes affecting code
3035*bc421551SDag-Erling Smørgrav
3036*bc421551SDag-Erling Smørgrav    zdump -V and -v now output gmtoff= values on all platforms,
3037*bc421551SDag-Erling Smørgrav    not merely on platforms defining TM_GMTOFF.
3038*bc421551SDag-Erling Smørgrav
3039*bc421551SDag-Erling Smørgrav    The tz library's localtime and mktime functions now set tzname to a value
3040*bc421551SDag-Erling Smørgrav    appropriate for the requested timestamp, and zdump now uses this
3041*bc421551SDag-Erling Smørgrav    on platforms not defining TM_ZONE, fixing a 2014g regression.
3042*bc421551SDag-Erling Smørgrav    (Thanks to Tim Parenti for reporting the problem.)
3043*bc421551SDag-Erling Smørgrav
3044*bc421551SDag-Erling Smørgrav    The tz library no longer sets tzname if localtime or mktime fails.
3045*bc421551SDag-Erling Smørgrav
3046*bc421551SDag-Erling Smørgrav    zdump -c no longer mishandles transitions near year boundaries.
3047*bc421551SDag-Erling Smørgrav    (Thanks to Tim Parenti for reporting the problem.)
3048*bc421551SDag-Erling Smørgrav
3049*bc421551SDag-Erling Smørgrav    An access to uninitialized data has been fixed.
3050*bc421551SDag-Erling Smørgrav    (Thanks to Jörg Richter for reporting the problem.)
3051*bc421551SDag-Erling Smørgrav
3052*bc421551SDag-Erling Smørgrav    When THREAD_SAFE is defined, the code ports to the C11 memory model.
3053*bc421551SDag-Erling Smørgrav    A memory leak has been fixed if ALL_STATE and THREAD_SAFE are defined
3054*bc421551SDag-Erling Smørgrav    and two threads race to initialize data used by gmtime-like functions.
3055*bc421551SDag-Erling Smørgrav    (Thanks to Andy Heninger for reporting the problems.)
3056*bc421551SDag-Erling Smørgrav
3057*bc421551SDag-Erling Smørgrav  Changes affecting build procedure
3058*bc421551SDag-Erling Smørgrav
3059*bc421551SDag-Erling Smørgrav    'make check' now checks better for properly-sorted data.
3060*bc421551SDag-Erling Smørgrav
3061*bc421551SDag-Erling Smørgrav  Changes affecting documentation and commentary
3062*bc421551SDag-Erling Smørgrav
3063*bc421551SDag-Erling Smørgrav    zdump's gmtoff=N output is now documented, and its isdst=D output
3064*bc421551SDag-Erling Smørgrav    is now documented to possibly output D values other than 0 or 1.
3065*bc421551SDag-Erling Smørgrav
3066*bc421551SDag-Erling Smørgrav    zdump -c's treatment of years is now documented to use the
3067*bc421551SDag-Erling Smørgrav    Gregorian calendar and Universal Time without leap seconds,
3068*bc421551SDag-Erling Smørgrav    and its behavior at cutoff boundaries is now documented better.
3069*bc421551SDag-Erling Smørgrav    (Thanks to Arthur David Olson and Tim Parenti for reporting the problems.)
3070*bc421551SDag-Erling Smørgrav
3071*bc421551SDag-Erling Smørgrav    Programs are now documented to use the proleptic Gregorian calendar.
3072*bc421551SDag-Erling Smørgrav    (Thanks to Alan Barrett for the suggestion.)
3073*bc421551SDag-Erling Smørgrav
3074*bc421551SDag-Erling Smørgrav    Fractional-second GMT offsets have been documented for civil time
3075*bc421551SDag-Erling Smørgrav    in 19th-century Chennai, Jakarta, and New York.
3076*bc421551SDag-Erling Smørgrav
3077*bc421551SDag-Erling Smørgrav
3078*bc421551SDag-Erling SmørgravRelease 2014g - 2014-08-28 12:31:23 -0700
3079*bc421551SDag-Erling Smørgrav
3080*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
3081*bc421551SDag-Erling Smørgrav
3082*bc421551SDag-Erling Smørgrav    Turks & Caicos is switching from US eastern time to UT -04
3083*bc421551SDag-Erling Smørgrav    year-round, modeled as a switch on 2014-11-02 at 02:00.
3084*bc421551SDag-Erling Smørgrav    [As noted in 2014j, this switch was later delayed.]
3085*bc421551SDag-Erling Smørgrav
3086*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
3087*bc421551SDag-Erling Smørgrav
3088*bc421551SDag-Erling Smørgrav    Time in Russia or the USSR before 1926 or so has been corrected by
3089*bc421551SDag-Erling Smørgrav    a few seconds in the following zones: Asia/Irkutsk,
3090*bc421551SDag-Erling Smørgrav    Asia/Krasnoyarsk, Asia/Omsk, Asia/Samarkand, Asia/Tbilisi,
3091*bc421551SDag-Erling Smørgrav    Asia/Vladivostok, Asia/Yakutsk, Europe/Riga, Europe/Samara.  For
3092*bc421551SDag-Erling Smørgrav    Asia/Yekaterinburg the correction is a few minutes.  (Thanks to
3093*bc421551SDag-Erling Smørgrav    Vladimir Karpinsky.)
3094*bc421551SDag-Erling Smørgrav
3095*bc421551SDag-Erling Smørgrav    The Portuguese decree of 1911-05-26 took effect on 1912-01-01.
3096*bc421551SDag-Erling Smørgrav    This affects 1911 timestamps in Africa/Bissau, Africa/Luanda,
3097*bc421551SDag-Erling Smørgrav    Atlantic/Azores, and Atlantic/Madeira.  Also, Lisbon's pre-1912
3098*bc421551SDag-Erling Smørgrav    GMT offset was -0:36:45 (rounded from -0:36:44.68), not -0:36:32.
3099*bc421551SDag-Erling Smørgrav    (Thanks to Stephen Colebourne for pointing to the decree.)
3100*bc421551SDag-Erling Smørgrav
3101*bc421551SDag-Erling Smørgrav    Asia/Dhaka ended DST on 2009-12-31 at 24:00, not 23:59.
3102*bc421551SDag-Erling Smørgrav
3103*bc421551SDag-Erling Smørgrav    A new file 'backzone' contains data which may appeal to
3104*bc421551SDag-Erling Smørgrav    connoisseurs of old timestamps, although it is out of scope for
3105*bc421551SDag-Erling Smørgrav    the tz database, is often poorly sourced, and contains some data
3106*bc421551SDag-Erling Smørgrav    that is known to be incorrect.  The new file is not recommended
3107*bc421551SDag-Erling Smørgrav    for ordinary use and its entries are not installed by default.
3108*bc421551SDag-Erling Smørgrav    (Thanks to Lester Caine for the high-quality Jersey, Guernsey, and
3109*bc421551SDag-Erling Smørgrav    Isle of Man entries.)
3110*bc421551SDag-Erling Smørgrav
3111*bc421551SDag-Erling Smørgrav    Some more zones have been turned into links, when they differed
3112*bc421551SDag-Erling Smørgrav    from existing zones only for older timestamps.  As usual,
3113*bc421551SDag-Erling Smørgrav    these changes affect UT offsets in pre-1970 timestamps only.
3114*bc421551SDag-Erling Smørgrav    Their old contents have been moved to the 'backzone' file.
3115*bc421551SDag-Erling Smørgrav    The affected zones are: Africa/Bangui, Africa/Brazzaville,
3116*bc421551SDag-Erling Smørgrav    Africa/Douala, Africa/Kinshasa, Africa/Libreville, Africa/Luanda,
3117*bc421551SDag-Erling Smørgrav    Africa/Malabo, Africa/Niamey, and Africa/Porto-Novo.
3118*bc421551SDag-Erling Smørgrav
3119*bc421551SDag-Erling Smørgrav  Changes affecting code
3120*bc421551SDag-Erling Smørgrav
3121*bc421551SDag-Erling Smørgrav    Unless NETBSD_INSPIRED is defined to 0, the tz library now
3122*bc421551SDag-Erling Smørgrav    supplies functions for creating and using objects that represent
3123*bc421551SDag-Erling Smørgrav    timezones. The new functions are tzalloc, tzfree, localtime_rz,
3124*bc421551SDag-Erling Smørgrav    mktime_z, and (if STD_INSPIRED is also defined) posix2time_z and
3125*bc421551SDag-Erling Smørgrav    time2posix_z.  They are intended for performance: for example,
3126*bc421551SDag-Erling Smørgrav    localtime_rz (unlike localtime_r) is trivially thread-safe without
3127*bc421551SDag-Erling Smørgrav    locking.  (Thanks to Christos Zoulas for proposing NetBSD-inspired
3128*bc421551SDag-Erling Smørgrav    functions, and to Alan Barrett and Jonathan Lennox for helping to
3129*bc421551SDag-Erling Smørgrav    debug the change.)
3130*bc421551SDag-Erling Smørgrav
3131*bc421551SDag-Erling Smørgrav    zdump now builds with the tz library unless USE_LTZ is defined to 0,
3132*bc421551SDag-Erling Smørgrav    This lets zdump use tz features even if the system library lacks them.
3133*bc421551SDag-Erling Smørgrav    To build zdump with the system library, use 'make CFLAGS=-DUSE_LTZ=0
3134*bc421551SDag-Erling Smørgrav    TZDOBJS=zdump.o CHECK_TIME_T_ALTERNATIVES='.
3135*bc421551SDag-Erling Smørgrav
3136*bc421551SDag-Erling Smørgrav    zdump now uses localtime_rz if available, as it's significantly faster,
3137*bc421551SDag-Erling Smørgrav    and it can help zdump better diagnose invalid timezone names.
3138*bc421551SDag-Erling Smørgrav    Define HAVE_LOCALTIME_RZ to 0 to suppress this.  HAVE_LOCALTIME_RZ
3139*bc421551SDag-Erling Smørgrav    defaults to 1 if NETBSD_INSPIRED && USE_LTZ.  When localtime_rz is
3140*bc421551SDag-Erling Smørgrav    not available, zdump now uses localtime_r and tzset if available,
3141*bc421551SDag-Erling Smørgrav    as this is a bit cleaner and faster than plain localtime.  Compile
3142*bc421551SDag-Erling Smørgrav    with -DHAVE_LOCALTIME_R=0 and/or -DHAVE_TZSET=0 if your system
3143*bc421551SDag-Erling Smørgrav    lacks these two functions.
3144*bc421551SDag-Erling Smørgrav
3145*bc421551SDag-Erling Smørgrav    If THREAD_SAFE is defined to 1, the tz library is now thread-safe.
3146*bc421551SDag-Erling Smørgrav    Although not needed for tz's own applications, which are single-threaded,
3147*bc421551SDag-Erling Smørgrav    this supports POSIX better if the tz library is used in multithreaded apps.
3148*bc421551SDag-Erling Smørgrav
3149*bc421551SDag-Erling Smørgrav    Some crashes have been fixed when zdump or the tz library is given
3150*bc421551SDag-Erling Smørgrav    invalid or outlandish input.
3151*bc421551SDag-Erling Smørgrav
3152*bc421551SDag-Erling Smørgrav    The tz library no longer mishandles leap seconds on platforms with
3153*bc421551SDag-Erling Smørgrav    unsigned time_t in timezones that lack ordinary transitions after 1970.
3154*bc421551SDag-Erling Smørgrav
3155*bc421551SDag-Erling Smørgrav    The tz code now attempts to infer TM_GMTOFF and TM_ZONE if not
3156*bc421551SDag-Erling Smørgrav    already defined, to make it easier to configure on common platforms.
3157*bc421551SDag-Erling Smørgrav    Define NO_TM_GMTOFF and NO_TM_ZONE to suppress this.
3158*bc421551SDag-Erling Smørgrav
3159*bc421551SDag-Erling Smørgrav    Unless the new macro UNINIT_TRAP is defined to 1, the tz code now
3160*bc421551SDag-Erling Smørgrav    assumes that reading uninitialized memory yields garbage values
3161*bc421551SDag-Erling Smørgrav    but does not cause other problems such as traps.
3162*bc421551SDag-Erling Smørgrav
3163*bc421551SDag-Erling Smørgrav    If TM_GMTOFF is defined and UNINIT_TRAP is 0, mktime is now
3164*bc421551SDag-Erling Smørgrav    more likely to guess right for ambiguous timestamps near
3165*bc421551SDag-Erling Smørgrav    transitions where tm_isdst does not change.
3166*bc421551SDag-Erling Smørgrav
3167*bc421551SDag-Erling Smørgrav    If HAVE_STRFTIME_L is defined to 1, the tz library now defines
3168*bc421551SDag-Erling Smørgrav    strftime_l for compatibility with recent versions of POSIX.
3169*bc421551SDag-Erling Smørgrav    Only the C locale is supported, though.  HAVE_STRFTIME_L defaults
3170*bc421551SDag-Erling Smørgrav    to 1 on recent POSIX versions, and to 0 otherwise.
3171*bc421551SDag-Erling Smørgrav
3172*bc421551SDag-Erling Smørgrav    tzselect -c now uses a hybrid distance measure that works better
3173*bc421551SDag-Erling Smørgrav    in Africa.  (Thanks to Alan Barrett for noting the problem.)
3174*bc421551SDag-Erling Smørgrav
3175*bc421551SDag-Erling Smørgrav    The C source code now ports to NetBSD when GCC_DEBUG_FLAGS is used,
3176*bc421551SDag-Erling Smørgrav    or when time_tz is defined.
3177*bc421551SDag-Erling Smørgrav
3178*bc421551SDag-Erling Smørgrav    When HAVE_UTMPX_H is set the 'date' command now builds on systems
3179*bc421551SDag-Erling Smørgrav    whose <utmpx.h> file does not define WTMPX_FILE, and when setting
3180*bc421551SDag-Erling Smørgrav    the date it updates the wtmpx file if _PATH_WTMPX is defined.
3181*bc421551SDag-Erling Smørgrav    This affects GNU/Linux and similar systems.
3182*bc421551SDag-Erling Smørgrav
3183*bc421551SDag-Erling Smørgrav    For easier maintenance later, some C code has been simplified,
3184*bc421551SDag-Erling Smørgrav    some lint has been removed, and the code has been tweaked so that
3185*bc421551SDag-Erling Smørgrav    plain 'make' is more likely to work.
3186*bc421551SDag-Erling Smørgrav
3187*bc421551SDag-Erling Smørgrav    The C type 'bool' is now used for boolean values, instead of 'int'.
3188*bc421551SDag-Erling Smørgrav
3189*bc421551SDag-Erling Smørgrav    The long-obsolete LOCALE_HOME code has been removed.
3190*bc421551SDag-Erling Smørgrav
3191*bc421551SDag-Erling Smørgrav    The long-obsolete 'gtime' function has been removed.
3192*bc421551SDag-Erling Smørgrav
3193*bc421551SDag-Erling Smørgrav  Changes affecting build procedure
3194*bc421551SDag-Erling Smørgrav
3195*bc421551SDag-Erling Smørgrav    'zdump' no longer links in ialloc.o, as it's not needed.
3196*bc421551SDag-Erling Smørgrav
3197*bc421551SDag-Erling Smørgrav    'make check_time_t_alternatives' no longer assumes GNU diff.
3198*bc421551SDag-Erling Smørgrav
3199*bc421551SDag-Erling Smørgrav  Changes affecting distribution tarballs
3200*bc421551SDag-Erling Smørgrav
3201*bc421551SDag-Erling Smørgrav    The files checktab.awk and zoneinfo2tdf.pl are now distributed in
3202*bc421551SDag-Erling Smørgrav    the tzdata tarball instead of the tzcode tarball, since they help
3203*bc421551SDag-Erling Smørgrav    maintain the data.  The NEWS and Theory files are now also
3204*bc421551SDag-Erling Smørgrav    distributed in the tzdata tarball, as they're relevant for data.
3205*bc421551SDag-Erling Smørgrav    (Thanks to Alan Barrett for pointing this out.)  Also, the
3206*bc421551SDag-Erling Smørgrav    leapseconds.awk file is no longer distributed in the tzcode
3207*bc421551SDag-Erling Smørgrav    tarball, since it belongs in the tzdata tarball (where 2014f
3208*bc421551SDag-Erling Smørgrav    inadvertently also distributed it).
3209*bc421551SDag-Erling Smørgrav
3210*bc421551SDag-Erling Smørgrav  Changes affecting documentation and commentary
3211*bc421551SDag-Erling Smørgrav
3212*bc421551SDag-Erling Smørgrav    A new file CONTRIBUTING is distributed.  (Thanks to Tim Parenti for
3213*bc421551SDag-Erling Smørgrav    suggesting a CONTRIBUTING file, and to Tony Finch and Walter Harms
3214*bc421551SDag-Erling Smørgrav    for debugging it.)
3215*bc421551SDag-Erling Smørgrav
3216*bc421551SDag-Erling Smørgrav    The man pages have been updated to use function prototypes,
3217*bc421551SDag-Erling Smørgrav    to document thread-safe variants like localtime_r, and to document
3218*bc421551SDag-Erling Smørgrav    the NetBSD-inspired functions tzalloc, tzfree, localtime_rz, and
3219*bc421551SDag-Erling Smørgrav    mktime_z.
3220*bc421551SDag-Erling Smørgrav
3221*bc421551SDag-Erling Smørgrav    The fields in Link lines have been renamed to be more descriptive
3222*bc421551SDag-Erling Smørgrav    and more like the parameters of 'ln'.  LINK-FROM has become TARGET,
3223*bc421551SDag-Erling Smørgrav    and LINK-TO has become LINK-NAME.
3224*bc421551SDag-Erling Smørgrav
3225*bc421551SDag-Erling Smørgrav    tz-link.htm mentions the IETF's tzdist working group; Windows
3226*bc421551SDag-Erling Smørgrav    Runtime etc. (thanks to Matt Johnson); and HP-UX's tztab.
3227*bc421551SDag-Erling Smørgrav
3228*bc421551SDag-Erling Smørgrav    Some broken URLs have been fixed in the commentary.  (Thanks to
3229*bc421551SDag-Erling Smørgrav    Lester Caine.)
3230*bc421551SDag-Erling Smørgrav
3231*bc421551SDag-Erling Smørgrav    Commentary about Philippines DST has been updated, and commentary
3232*bc421551SDag-Erling Smørgrav    on pre-1970 time in India has been added.
3233*bc421551SDag-Erling Smørgrav
3234*bc421551SDag-Erling Smørgrav
3235*bc421551SDag-Erling SmørgravRelease 2014f - 2014-08-05 17:42:36 -0700
3236*bc421551SDag-Erling Smørgrav
3237*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps
3238*bc421551SDag-Erling Smørgrav
3239*bc421551SDag-Erling Smørgrav    Russia will subtract an hour from most of its time zones on 2014-10-26
3240*bc421551SDag-Erling Smørgrav    at 02:00 local time.  (Thanks to Alexander Krivenyshev.)
3241*bc421551SDag-Erling Smørgrav    There are a few exceptions: Magadan Oblast (Asia/Magadan) and Zabaykalsky
3242*bc421551SDag-Erling Smørgrav    Krai are subtracting two hours; conversely, Chukotka Autonomous Okrug
3243*bc421551SDag-Erling Smørgrav    (Asia/Anadyr), Kamchatka Krai (Asia/Kamchatka), Kemerovo Oblast
3244*bc421551SDag-Erling Smørgrav    (Asia/Novokuznetsk), and the Samara Oblast and the Udmurt Republic
3245*bc421551SDag-Erling Smørgrav    (Europe/Samara) are not changing their clocks.  The changed zones are
3246*bc421551SDag-Erling Smørgrav    Europe/Kaliningrad, Europe/Moscow, Europe/Simferopol, Europe/Volgograd,
3247*bc421551SDag-Erling Smørgrav    Asia/Yekaterinburg, Asia/Omsk, Asia/Novosibirsk, Asia/Krasnoyarsk,
3248*bc421551SDag-Erling Smørgrav    Asia/Irkutsk, Asia/Yakutsk, Asia/Vladivostok, Asia/Khandyga,
3249*bc421551SDag-Erling Smørgrav    Asia/Sakhalin, and Asia/Ust-Nera; Asia/Magadan will have two hours
3250*bc421551SDag-Erling Smørgrav    subtracted; and Asia/Novokuznetsk's time zone abbreviation is affected,
3251*bc421551SDag-Erling Smørgrav    but not its UTC offset.  Two zones are added: Asia/Chita (split
3252*bc421551SDag-Erling Smørgrav    from Asia/Yakutsk, and also with two hours subtracted) and
3253*bc421551SDag-Erling Smørgrav    Asia/Srednekolymsk (split from Asia/Magadan, but with only one hour
3254*bc421551SDag-Erling Smørgrav    subtracted).  (Thanks to Tim Parenti for much of the above.)
3255*bc421551SDag-Erling Smørgrav
3256*bc421551SDag-Erling Smørgrav  Changes affecting time zone abbreviations
3257*bc421551SDag-Erling Smørgrav
3258*bc421551SDag-Erling Smørgrav    Australian eastern time zone abbreviations are now AEST/AEDT not EST,
3259*bc421551SDag-Erling Smørgrav    and similarly for the other Australian zones.  That is, for eastern
3260*bc421551SDag-Erling Smørgrav    standard and daylight saving time the abbreviations are AEST and AEDT
3261*bc421551SDag-Erling Smørgrav    instead of the former EST for both; similarly, ACST/ACDT, ACWST/ACWDT,
3262*bc421551SDag-Erling Smørgrav    and AWST/AWDT are now used instead of the former CST, CWST, and WST.
3263*bc421551SDag-Erling Smørgrav    This change does not affect UT offsets, only time zone abbreviations.
3264*bc421551SDag-Erling Smørgrav    (Thanks to Rich Tibbett and many others.)
3265*bc421551SDag-Erling Smørgrav
3266*bc421551SDag-Erling Smørgrav    Asia/Novokuznetsk shifts from NOVT to KRAT (remaining on UT +07)
3267*bc421551SDag-Erling Smørgrav    effective 2014-10-26 at 02:00 local time.
3268*bc421551SDag-Erling Smørgrav
3269*bc421551SDag-Erling Smørgrav    The time zone abbreviation for Xinjiang Time (observed in Ürümqi)
3270*bc421551SDag-Erling Smørgrav    has been changed from URUT to XJT.  (Thanks to Luther Ma.)
3271*bc421551SDag-Erling Smørgrav
3272*bc421551SDag-Erling Smørgrav    Prefer MSK/MSD for Moscow time in Russia, even in other cities.
3273*bc421551SDag-Erling Smørgrav    Similarly, prefer EET/EEST for eastern European time in Russia.
3274*bc421551SDag-Erling Smørgrav
3275*bc421551SDag-Erling Smørgrav    Change time zone abbreviations in (western) Samoa to use "ST" and
3276*bc421551SDag-Erling Smørgrav    "DT" suffixes, as this is more likely to match common practice.
3277*bc421551SDag-Erling Smørgrav    Prefix "W" to (western) Samoa time when its standard-time offset
3278*bc421551SDag-Erling Smørgrav    disagrees with that of American Samoa.
3279*bc421551SDag-Erling Smørgrav
3280*bc421551SDag-Erling Smørgrav    America/Metlakatla now uses PST, not MeST, to abbreviate its time zone.
3281*bc421551SDag-Erling Smørgrav
3282*bc421551SDag-Erling Smørgrav    Time zone abbreviations have been updated for Japan's two time
3283*bc421551SDag-Erling Smørgrav    zones used 1896-1937.  JWST now stands for Western Standard
3284*bc421551SDag-Erling Smørgrav    Time, and JCST for Central Standard Time (formerly this was CJT).
3285*bc421551SDag-Erling Smørgrav    These abbreviations are now used for time in Korea, Taiwan,
3286*bc421551SDag-Erling Smørgrav    and Sakhalin while controlled by Japan.
3287*bc421551SDag-Erling Smørgrav
3288*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
3289*bc421551SDag-Erling Smørgrav
3290*bc421551SDag-Erling Smørgrav    China's five zones have been simplified to two, since the post-1970
3291*bc421551SDag-Erling Smørgrav    differences in the other three seem to have been imaginary.  The
3292*bc421551SDag-Erling Smørgrav    zones Asia/Harbin, Asia/Chongqing, and Asia/Kashgar have been
3293*bc421551SDag-Erling Smørgrav    removed; backwards-compatibility links still work, albeit with
3294*bc421551SDag-Erling Smørgrav    different behaviors for timestamps before May 1980.  Asia/Urumqi's
3295*bc421551SDag-Erling Smørgrav    1980 transition to UT +08 has been removed, so that it is now at
3296*bc421551SDag-Erling Smørgrav    +06 and not +08.  (Thanks to Luther Ma and to Alois Treindl;
3297*bc421551SDag-Erling Smørgrav    Treindl sent helpful translations of two papers by Guo Qingsheng.)
3298*bc421551SDag-Erling Smørgrav
3299*bc421551SDag-Erling Smørgrav    Some zones have been turned into links, when they differed from existing
3300*bc421551SDag-Erling Smørgrav    zones only for older UT offsets where data entries were likely invented.
3301*bc421551SDag-Erling Smørgrav    These changes affect UT offsets in pre-1970 timestamps only.  This is
3302*bc421551SDag-Erling Smørgrav    similar to the change in release 2013e, except this time for western
3303*bc421551SDag-Erling Smørgrav    Africa.  The affected zones are: Africa/Bamako, Africa/Banjul,
3304*bc421551SDag-Erling Smørgrav    Africa/Conakry, Africa/Dakar, Africa/Freetown, Africa/Lome,
3305*bc421551SDag-Erling Smørgrav    Africa/Nouakchott, Africa/Ouagadougou, Africa/Sao_Tome, and
3306*bc421551SDag-Erling Smørgrav    Atlantic/St_Helena.  This also affects the backwards-compatibility
3307*bc421551SDag-Erling Smørgrav    link Africa/Timbuktu.  (Thanks to Alan Barrett, Stephen Colebourne,
3308*bc421551SDag-Erling Smørgrav    Tim Parenti, and David Patte for reporting problems in earlier
3309*bc421551SDag-Erling Smørgrav    versions of this change.)
3310*bc421551SDag-Erling Smørgrav
3311*bc421551SDag-Erling Smørgrav    Asia/Shanghai's pre-standard-time UT offset has been changed from
3312*bc421551SDag-Erling Smørgrav    8:05:57 to 8:05:43, the location of Xujiahui Observatory.  Its
3313*bc421551SDag-Erling Smørgrav    transition to standard time has been changed from 1928 to 1901.
3314*bc421551SDag-Erling Smørgrav
3315*bc421551SDag-Erling Smørgrav    Asia/Taipei switched to JWST on 1896-01-01, then to JST on 1937-10-01,
3316*bc421551SDag-Erling Smørgrav    then to CST on 1945-09-21 at 01:00, and did not observe DST in 1945.
3317*bc421551SDag-Erling Smørgrav    In 1946 it observed DST from 05-15 through 09-30; in 1947
3318*bc421551SDag-Erling Smørgrav    from 04-15 through 10-31; and in 1979 from 07-01 through 09-30.
3319*bc421551SDag-Erling Smørgrav    (Thanks to Yu-Cheng Chuang.)
3320*bc421551SDag-Erling Smørgrav
3321*bc421551SDag-Erling Smørgrav    Asia/Riyadh's transition to standard time is now 1947-03-14, not 1950.
3322*bc421551SDag-Erling Smørgrav
3323*bc421551SDag-Erling Smørgrav    Europe/Helsinki's 1942 fall-back transition was 10-04 at 01:00, not
3324*bc421551SDag-Erling Smørgrav    10-03 at 00:00.  (Thanks to Konstantin Hyppönen.)
3325*bc421551SDag-Erling Smørgrav
3326*bc421551SDag-Erling Smørgrav    Pacific/Pago_Pago has been changed from UT -11:30 to -11 for the
3327*bc421551SDag-Erling Smørgrav    period from 1911 to 1950.
3328*bc421551SDag-Erling Smørgrav
3329*bc421551SDag-Erling Smørgrav    Pacific/Chatham has been changed to New Zealand standard time plus
3330*bc421551SDag-Erling Smørgrav    45 minutes for the period before 1957, reflecting a 1956 remark in
3331*bc421551SDag-Erling Smørgrav    the New Zealand parliament.
3332*bc421551SDag-Erling Smørgrav
3333*bc421551SDag-Erling Smørgrav    Europe/Budapest has several pre-1946 corrections: in 1918 the transition
3334*bc421551SDag-Erling Smørgrav    out of DST was on 09-16, not 09-29; in 1919 it was on 11-24, not 09-15; in
3335*bc421551SDag-Erling Smørgrav    1945 it was on 11-01, not 11-03; in 1941 the transition to DST was 04-08
3336*bc421551SDag-Erling Smørgrav    not 04-06 at 02:00; and there was no DST in 1920.
3337*bc421551SDag-Erling Smørgrav
3338*bc421551SDag-Erling Smørgrav    Africa/Accra is now assumed to have observed DST from 1920 through 1935.
3339*bc421551SDag-Erling Smørgrav
3340*bc421551SDag-Erling Smørgrav    Time in Russia before 1927 or so has been corrected by a few seconds in
3341*bc421551SDag-Erling Smørgrav    the following zones: Europe/Moscow, Asia/Irkutsk, Asia/Tbilisi,
3342*bc421551SDag-Erling Smørgrav    Asia/Tashkent, Asia/Vladivostok, Asia/Yekaterinburg, Europe/Helsinki, and
3343*bc421551SDag-Erling Smørgrav    Europe/Riga.  Also, Moscow's location has been changed to its Kilometer 0
3344*bc421551SDag-Erling Smørgrav    point.  (Thanks to Vladimir Karpinsky for the Moscow changes.)
3345*bc421551SDag-Erling Smørgrav
3346*bc421551SDag-Erling Smørgrav  Changes affecting data format
3347*bc421551SDag-Erling Smørgrav
3348*bc421551SDag-Erling Smørgrav    A new file 'zone1970.tab' supersedes 'zone.tab' in the installed data.
3349*bc421551SDag-Erling Smørgrav    The new file's extended format allows multiple country codes per zone.
3350*bc421551SDag-Erling Smørgrav    The older file is still installed but is deprecated; its format is
3351*bc421551SDag-Erling Smørgrav    not changing and it will still be distributed for a while, but new
3352*bc421551SDag-Erling Smørgrav    applications should use the new file.
3353*bc421551SDag-Erling Smørgrav
3354*bc421551SDag-Erling Smørgrav    The new file format simplifies maintenance of obscure locations.
3355*bc421551SDag-Erling Smørgrav    To test this, it adds coverage for the Crozet Islands and the
3356*bc421551SDag-Erling Smørgrav    Scattered Islands.  (Thanks to Tobias Conradi and Antoine Leca.)
3357*bc421551SDag-Erling Smørgrav
3358*bc421551SDag-Erling Smørgrav    The file 'iso3166.tab' is planned to switch from ASCII to UTF-8.
3359*bc421551SDag-Erling Smørgrav    It is still ASCII now, but commentary about the switch has been added.
3360*bc421551SDag-Erling Smørgrav    The new file 'zone1970.tab' already uses UTF-8.
3361*bc421551SDag-Erling Smørgrav
3362*bc421551SDag-Erling Smørgrav  Changes affecting code
3363*bc421551SDag-Erling Smørgrav
3364*bc421551SDag-Erling Smørgrav    'localtime', 'mktime', etc. now use much less stack space if ALL_STATE
3365*bc421551SDag-Erling Smørgrav    is defined.  (Thanks to Elliott Hughes for reporting the problem.)
3366*bc421551SDag-Erling Smørgrav
3367*bc421551SDag-Erling Smørgrav    'zic' no longer mishandles input when ignoring case in locales that
3368*bc421551SDag-Erling Smørgrav    are not compatible with English, e.g., unibyte Turkish locales when
3369*bc421551SDag-Erling Smørgrav    compiled with HAVE_GETTEXT.
3370*bc421551SDag-Erling Smørgrav
3371*bc421551SDag-Erling Smørgrav    Error diagnostics of 'zic' and 'yearistype' have been reworded so that
3372*bc421551SDag-Erling Smørgrav    they no longer use ASCII '-' as if it were a dash.
3373*bc421551SDag-Erling Smørgrav
3374*bc421551SDag-Erling Smørgrav    'zic' now rejects output file names that contain '.' or '..' components.
3375*bc421551SDag-Erling Smørgrav    (Thanks to Tim Parenti for reporting the problem.)
3376*bc421551SDag-Erling Smørgrav
3377*bc421551SDag-Erling Smørgrav    'zic -v' now warns about output file names that do not follow
3378*bc421551SDag-Erling Smørgrav    POSIX rules, or that contain a digit or '.'.  (Thanks to Arthur
3379*bc421551SDag-Erling Smørgrav    David Olson for starting the ball rolling on this.)
3380*bc421551SDag-Erling Smørgrav
3381*bc421551SDag-Erling Smørgrav    Some lint has been removed when using GCC_DEBUG_FLAGS with GCC 4.9.0.
3382*bc421551SDag-Erling Smørgrav
3383*bc421551SDag-Erling Smørgrav  Changes affecting build procedure
3384*bc421551SDag-Erling Smørgrav
3385*bc421551SDag-Erling Smørgrav    'zic' no longer links in localtime.o and asctime.o, as they're not needed.
3386*bc421551SDag-Erling Smørgrav    (Thanks to John Cochran.)
3387*bc421551SDag-Erling Smørgrav
3388*bc421551SDag-Erling Smørgrav  Changes affecting documentation and commentary
3389*bc421551SDag-Erling Smørgrav
3390*bc421551SDag-Erling Smørgrav    The 'Theory' file documents legacy names, the longstanding
3391*bc421551SDag-Erling Smørgrav    exceptions to the POSIX-inspired file name rules.
3392*bc421551SDag-Erling Smørgrav
3393*bc421551SDag-Erling Smørgrav    The 'zic' documentation clarifies the role of time types when
3394*bc421551SDag-Erling Smørgrav    interpreting dates.  (Thanks to Arthur David Olson.)
3395*bc421551SDag-Erling Smørgrav
3396*bc421551SDag-Erling Smørgrav    Documentation and commentary now prefer UTF-8 to US-ASCII,
3397*bc421551SDag-Erling Smørgrav    allowing the use of proper accents in foreign words and names.
3398*bc421551SDag-Erling Smørgrav    Code and data have not changed because of this.  (Thanks to
3399*bc421551SDag-Erling Smørgrav    Garrett Wollman, Ian Abbott, and Guy Harris for helping to debug
3400*bc421551SDag-Erling Smørgrav    this.)
3401*bc421551SDag-Erling Smørgrav
3402*bc421551SDag-Erling Smørgrav    Non-HTML documentation and commentary now use plain-text URLs instead of
3403*bc421551SDag-Erling Smørgrav    HTML insertions, and are more consistent about bracketing URLs when they
3404*bc421551SDag-Erling Smørgrav    are not already surrounded by white space.  (Thanks to suggestions by
3405*bc421551SDag-Erling Smørgrav    Steffen Nurpmeso.)
3406*bc421551SDag-Erling Smørgrav
3407*bc421551SDag-Erling Smørgrav    There is new commentary about Xujiahui Observatory, the five time-zone
3408*bc421551SDag-Erling Smørgrav    project in China from 1918 to 1949, timekeeping in Japanese-occupied
3409*bc421551SDag-Erling Smørgrav    Shanghai, and Tibet Time in the 1950s.  The sharp-eyed can spot the
3410*bc421551SDag-Erling Smørgrav    warlord Jin Shuren in the data.
3411*bc421551SDag-Erling Smørgrav
3412*bc421551SDag-Erling Smørgrav    Commentary about the coverage of each Russian zone has been standardized.
3413*bc421551SDag-Erling Smørgrav    (Thanks to Tim Parenti.)
3414*bc421551SDag-Erling Smørgrav
3415*bc421551SDag-Erling Smørgrav    There is new commentary about contemporary timekeeping in Ethiopia.
3416*bc421551SDag-Erling Smørgrav
3417*bc421551SDag-Erling Smørgrav    Obsolete comments about a 2007 proposal for DST in Kuwait has been removed.
3418*bc421551SDag-Erling Smørgrav
3419*bc421551SDag-Erling Smørgrav    There is new commentary about time in Poland in 1919.
3420*bc421551SDag-Erling Smørgrav
3421*bc421551SDag-Erling Smørgrav    Proper credit has been given to DST inventor George Vernon Hudson.
3422*bc421551SDag-Erling Smørgrav
3423*bc421551SDag-Erling Smørgrav    Commentary about time in Metlakatla, AK and Resolute, NU has been
3424*bc421551SDag-Erling Smørgrav    improved, with a new source for the former.
3425*bc421551SDag-Erling Smørgrav
3426*bc421551SDag-Erling Smørgrav    In zone.tab, Pacific/Easter no longer mentions Salas y Gómez, as it
3427*bc421551SDag-Erling Smørgrav    is uninhabited.
3428*bc421551SDag-Erling Smørgrav
3429*bc421551SDag-Erling Smørgrav    Commentary about permanent Antarctic bases has been updated.
3430*bc421551SDag-Erling Smørgrav
3431*bc421551SDag-Erling Smørgrav    Several typos have been corrected.  (Thanks to Tim Parenti for
3432*bc421551SDag-Erling Smørgrav    contributing some of these fixes.)
3433*bc421551SDag-Erling Smørgrav
3434*bc421551SDag-Erling Smørgrav    tz-link.htm now mentions the JavaScript libraries Moment Timezone,
3435*bc421551SDag-Erling Smørgrav    TimezoneJS.Date, Walltime-js, and Timezone.  (Thanks to a heads-up
3436*bc421551SDag-Erling Smørgrav    from Matt Johnson.)  Also, it mentions the Go 'latlong' package.
3437*bc421551SDag-Erling Smørgrav    (Thanks to a heads-up from Dirkjan Ochtman.)
3438*bc421551SDag-Erling Smørgrav
3439*bc421551SDag-Erling Smørgrav    The files usno1988, usno1989, usno1989a, usno1995, usno1997, and usno1998
3440*bc421551SDag-Erling Smørgrav    have been removed.  These obsolescent US Naval Observatory entries were no
3441*bc421551SDag-Erling Smørgrav    longer helpful for maintenance.  (Thanks to Tim Parenti for the suggestion.)
3442*bc421551SDag-Erling Smørgrav
3443*bc421551SDag-Erling Smørgrav
3444*bc421551SDag-Erling SmørgravRelease 2014e - 2014-06-12 21:53:52 -0700
3445*bc421551SDag-Erling Smørgrav
3446*bc421551SDag-Erling Smørgrav  Changes affecting near-future timestamps
3447*bc421551SDag-Erling Smørgrav
3448*bc421551SDag-Erling Smørgrav    Egypt's 2014 Ramadan-based transitions are June 26 and July 31 at 24:00.
3449*bc421551SDag-Erling Smørgrav    (Thanks to Imed Chihi.)  Guess that from 2015 on Egypt will temporarily
3450*bc421551SDag-Erling Smørgrav    switch to standard time at 24:00 the last Thursday before Ramadan, and
3451*bc421551SDag-Erling Smørgrav    back to DST at 00:00 the first Friday after Ramadan.
3452*bc421551SDag-Erling Smørgrav
3453*bc421551SDag-Erling Smørgrav    Similarly, Morocco's are June 28 at 03:00 and August 2 at 02:00.  (Thanks
3454*bc421551SDag-Erling Smørgrav    to Milamber Space Network.)  Guess that from 2015 on Morocco will
3455*bc421551SDag-Erling Smørgrav    temporarily switch to standard time at 03:00 the last Saturday before
3456*bc421551SDag-Erling Smørgrav    Ramadan, and back to DST at 02:00 the first Saturday after Ramadan.
3457*bc421551SDag-Erling Smørgrav
3458*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
3459*bc421551SDag-Erling Smørgrav
3460*bc421551SDag-Erling Smørgrav    The abbreviation "MSM" (Moscow Midsummer Time) is now used instead of
3461*bc421551SDag-Erling Smørgrav    "MSD" for Moscow's double daylight time in summer 1921.  Also, a typo
3462*bc421551SDag-Erling Smørgrav    "VLASST" has been repaired to be "VLAST" for Vladivostok summer time
3463*bc421551SDag-Erling Smørgrav    in 1991.  (Thanks to Hank W. for reporting the problems.)
3464*bc421551SDag-Erling Smørgrav
3465*bc421551SDag-Erling Smørgrav  Changes affecting commentary
3466*bc421551SDag-Erling Smørgrav
3467*bc421551SDag-Erling Smørgrav    tz-link.htm now cites RFC 7265 for jCal, mentions PTP and the
3468*bc421551SDag-Erling Smørgrav    draft CalDAV extension, updates URLs for TSP, TZInfo, IATA, and
3469*bc421551SDag-Erling Smørgrav    removes stale pointers to World Time Explorer and WORLDTIME.
3470*bc421551SDag-Erling Smørgrav
3471*bc421551SDag-Erling Smørgrav
3472*bc421551SDag-Erling SmørgravRelease 2014d - 2014-05-27 21:34:40 -0700
3473*bc421551SDag-Erling Smørgrav
3474*bc421551SDag-Erling Smørgrav  Changes affecting code
3475*bc421551SDag-Erling Smørgrav
3476*bc421551SDag-Erling Smørgrav    zic no longer generates files containing timestamps before the Big Bang.
3477*bc421551SDag-Erling Smørgrav    This works around GNOME glib bug 878
3478*bc421551SDag-Erling Smørgrav    <https://gitlab.gnome.org/GNOME/glib/issues/878>
3479*bc421551SDag-Erling Smørgrav    (Thanks to Leonardo Chiquitto for reporting the bug, and to
3480*bc421551SDag-Erling Smørgrav    Arthur David Olson and James Cloos for suggesting improvements to the fix.)
3481*bc421551SDag-Erling Smørgrav
3482*bc421551SDag-Erling Smørgrav  Changes affecting documentation
3483*bc421551SDag-Erling Smørgrav
3484*bc421551SDag-Erling Smørgrav    tz-link.htm now mentions GNOME.
3485*bc421551SDag-Erling Smørgrav
3486*bc421551SDag-Erling Smørgrav
3487*bc421551SDag-Erling SmørgravRelease 2014c - 2014-05-13 07:44:13 -0700
3488*bc421551SDag-Erling Smørgrav
3489*bc421551SDag-Erling Smørgrav  Changes affecting near-future timestamps
3490*bc421551SDag-Erling Smørgrav
3491*bc421551SDag-Erling Smørgrav    Egypt observes DST starting 2014-05-15 at 24:00.
3492*bc421551SDag-Erling Smørgrav    (Thanks to Ahmad El-Dardiry and Gunther Vermier.)
3493*bc421551SDag-Erling Smørgrav    Details have not been announced, except that DST will not be observed
3494*bc421551SDag-Erling Smørgrav    during Ramadan.  Guess that DST will stop during the same Ramadan dates as
3495*bc421551SDag-Erling Smørgrav    Morocco, and that Egypt's future spring and fall transitions will be the
3496*bc421551SDag-Erling Smørgrav    same as 2010 when it last observed DST, namely April's last Friday at
3497*bc421551SDag-Erling Smørgrav    00:00 to September's last Thursday at 23:00 standard time.  Also, guess
3498*bc421551SDag-Erling Smørgrav    that Ramadan transitions will be at 00:00 standard time.
3499*bc421551SDag-Erling Smørgrav
3500*bc421551SDag-Erling Smørgrav  Changes affecting code
3501*bc421551SDag-Erling Smørgrav
3502*bc421551SDag-Erling Smørgrav    zic now generates transitions for minimum time values, eliminating guesswork
3503*bc421551SDag-Erling Smørgrav    when handling low-valued timestamps.  (Thanks to Arthur David Olson.)
3504*bc421551SDag-Erling Smørgrav
3505*bc421551SDag-Erling Smørgrav    Port to Cygwin sans glibc.  (Thanks to Arthur David Olson.)
3506*bc421551SDag-Erling Smørgrav
3507*bc421551SDag-Erling Smørgrav  Changes affecting commentary and documentation
3508*bc421551SDag-Erling Smørgrav
3509*bc421551SDag-Erling Smørgrav    Remove now-confusing comment about Jordan.  (Thanks to Oleksii Nochovnyi.)
3510*bc421551SDag-Erling Smørgrav
3511*bc421551SDag-Erling Smørgrav
3512*bc421551SDag-Erling SmørgravRelease 2014b - 2014-03-24 21:28:50 -0700
3513*bc421551SDag-Erling Smørgrav
3514*bc421551SDag-Erling Smørgrav  Changes affecting near-future timestamps
3515*bc421551SDag-Erling Smørgrav
3516*bc421551SDag-Erling Smørgrav    Crimea switches to Moscow time on 2014-03-30 at 02:00 local time.
3517*bc421551SDag-Erling Smørgrav    (Thanks to Alexander Krivenyshev.)  Move its zone.tab entry from UA to RU.
3518*bc421551SDag-Erling Smørgrav
3519*bc421551SDag-Erling Smørgrav    New entry for Troll station, Antarctica.  (Thanks to Paul-Inge Flakstad and
3520*bc421551SDag-Erling Smørgrav    Bengt-Inge Larsson.)  This is currently an approximation; a better version
3521*bc421551SDag-Erling Smørgrav    will require the zic and localtime fixes mentioned below, and the plan is
3522*bc421551SDag-Erling Smørgrav    to wait for a while until at least the zic fixes propagate.
3523*bc421551SDag-Erling Smørgrav
3524*bc421551SDag-Erling Smørgrav  Changes affecting code
3525*bc421551SDag-Erling Smørgrav
3526*bc421551SDag-Erling Smørgrav    'zic' and 'localtime' no longer reject locations needing four transitions
3527*bc421551SDag-Erling Smørgrav    per year for the foreseeable future.  (Thanks to Andrew Main (Zefram).)
3528*bc421551SDag-Erling Smørgrav    Also, 'zic' avoids some unlikely failures due to integer overflow.
3529*bc421551SDag-Erling Smørgrav
3530*bc421551SDag-Erling Smørgrav  Changes affecting build procedure
3531*bc421551SDag-Erling Smørgrav
3532*bc421551SDag-Erling Smørgrav    'make check' now detects Rule lines defined but never used.
3533*bc421551SDag-Erling Smørgrav    The NZAQ rules, an instance of this problem, have been removed.
3534*bc421551SDag-Erling Smørgrav
3535*bc421551SDag-Erling Smørgrav  Changes affecting commentary and documentation
3536*bc421551SDag-Erling Smørgrav
3537*bc421551SDag-Erling Smørgrav    Fix Tuesday/Thursday typo in description of time in Israel.
3538*bc421551SDag-Erling Smørgrav    (Thanks to Bert Katz via Pavel Kharitonov and Mike Frysinger.)
3539*bc421551SDag-Erling Smørgrav
3540*bc421551SDag-Erling Smørgrav    Microsoft Windows 8.1 doesn't support tz database names.  (Thanks
3541*bc421551SDag-Erling Smørgrav    to Donald MacQueen.)  Instead, the Microsoft Windows Store app
3542*bc421551SDag-Erling Smørgrav    library supports them.
3543*bc421551SDag-Erling Smørgrav
3544*bc421551SDag-Erling Smørgrav    Add comments about Johnston Island time in the 1960s.
3545*bc421551SDag-Erling Smørgrav    (Thanks to Lyle McElhaney.)
3546*bc421551SDag-Erling Smørgrav
3547*bc421551SDag-Erling Smørgrav    Morocco's 2014 DST start will be as predicted.
3548*bc421551SDag-Erling Smørgrav    (Thanks to Sebastien Willemijns.)
3549*bc421551SDag-Erling Smørgrav
3550*bc421551SDag-Erling Smørgrav
3551*bc421551SDag-Erling SmørgravRelease 2014a - 2014-03-07 23:30:29 -0800
3552*bc421551SDag-Erling Smørgrav
3553*bc421551SDag-Erling Smørgrav  Changes affecting near-future timestamps
3554*bc421551SDag-Erling Smørgrav
3555*bc421551SDag-Erling Smørgrav    Turkey begins DST on 2014-03-31, not 03-30.  (Thanks to Faruk Pasin for
3556*bc421551SDag-Erling Smørgrav    the heads-up, and to Tim Parenti for simplifying the update.)
3557*bc421551SDag-Erling Smørgrav
3558*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps
3559*bc421551SDag-Erling Smørgrav
3560*bc421551SDag-Erling Smørgrav    Fiji ended DST on 2014-01-19 at 02:00, not the previously-scheduled 03:00.
3561*bc421551SDag-Erling Smørgrav    (Thanks to Steffen Thorsen.)
3562*bc421551SDag-Erling Smørgrav
3563*bc421551SDag-Erling Smørgrav    Ukraine switched from Moscow to Eastern European time on 1990-07-01
3564*bc421551SDag-Erling Smørgrav    (not 1992-01-01), and observed DST during the entire next winter.
3565*bc421551SDag-Erling Smørgrav    (Thanks to Vladimir in Moscow via Alois Treindl.)
3566*bc421551SDag-Erling Smørgrav
3567*bc421551SDag-Erling Smørgrav    In 1988 Israel observed DST from 04-10 to 09-04, not 04-09 to 09-03.
3568*bc421551SDag-Erling Smørgrav    (Thanks to Avigdor Finkelstein.)
3569*bc421551SDag-Erling Smørgrav
3570*bc421551SDag-Erling Smørgrav  Changes affecting code
3571*bc421551SDag-Erling Smørgrav
3572*bc421551SDag-Erling Smørgrav    A uninitialized-storage bug in 'localtime' has been fixed.
3573*bc421551SDag-Erling Smørgrav    (Thanks to Logan Chien.)
3574*bc421551SDag-Erling Smørgrav
3575*bc421551SDag-Erling Smørgrav  Changes affecting the build procedure
3576*bc421551SDag-Erling Smørgrav
3577*bc421551SDag-Erling Smørgrav    The settings for 'make check_web' now default to Ubuntu 13.10.
3578*bc421551SDag-Erling Smørgrav
3579*bc421551SDag-Erling Smørgrav  Changes affecting commentary and documentation
3580*bc421551SDag-Erling Smørgrav
3581*bc421551SDag-Erling Smørgrav    The boundary of the US Pacific time zone is given more accurately.
3582*bc421551SDag-Erling Smørgrav    (Thanks to Alan Mintz.)
3583*bc421551SDag-Erling Smørgrav
3584*bc421551SDag-Erling Smørgrav    Chile's 2014 DST will be as predicted.  (Thanks to José Miguel Garrido.)
3585*bc421551SDag-Erling Smørgrav
3586*bc421551SDag-Erling Smørgrav    Paraguay's 2014 DST will be as predicted.  (Thanks to Carlos Raúl Perasso.)
3587*bc421551SDag-Erling Smørgrav
3588*bc421551SDag-Erling Smørgrav    Better descriptions of countries with same time zone history as
3589*bc421551SDag-Erling Smørgrav    Trinidad and Tobago since 1970.  (Thanks to Alan Barrett for suggestion.)
3590*bc421551SDag-Erling Smørgrav
3591*bc421551SDag-Erling Smørgrav    Several changes affect tz-link.htm, the main web page.
3592*bc421551SDag-Erling Smørgrav
3593*bc421551SDag-Erling Smørgrav      Mention Time.is (thanks to Even Scharning) and WX-now (thanks to
3594*bc421551SDag-Erling Smørgrav      David Braverman).
3595*bc421551SDag-Erling Smørgrav
3596*bc421551SDag-Erling Smørgrav      Mention xCal (Internet RFC 6321) and jCal.
3597*bc421551SDag-Erling Smørgrav
3598*bc421551SDag-Erling Smørgrav      Microsoft has some support for tz database names.
3599*bc421551SDag-Erling Smørgrav
3600*bc421551SDag-Erling Smørgrav      CLDR data formats include both XML and JSON.
3601*bc421551SDag-Erling Smørgrav
3602*bc421551SDag-Erling Smørgrav      Mention Maggiolo's map of solar vs standard time.
3603*bc421551SDag-Erling Smørgrav      (Thanks to Arthur David Olson.)
3604*bc421551SDag-Erling Smørgrav
3605*bc421551SDag-Erling Smørgrav      Mention TZ4Net.  (Thanks to Matt Johnson.)
3606*bc421551SDag-Erling Smørgrav
3607*bc421551SDag-Erling Smørgrav      Mention the timezone-olson Haskell package.
3608*bc421551SDag-Erling Smørgrav
3609*bc421551SDag-Erling Smørgrav      Mention zeitverschiebung.net.  (Thanks to Martin Jäger.)
3610*bc421551SDag-Erling Smørgrav
3611*bc421551SDag-Erling Smørgrav      Remove moribund links to daylight-savings-time.info and to
3612*bc421551SDag-Erling Smørgrav      Simple Timer + Clocks.
3613*bc421551SDag-Erling Smørgrav
3614*bc421551SDag-Erling Smørgrav      Update two links.  (Thanks to Oscar van Vlijmen.)
3615*bc421551SDag-Erling Smørgrav
3616*bc421551SDag-Erling Smørgrav      Fix some formatting glitches, e.g., remove random newlines from
3617*bc421551SDag-Erling Smørgrav      abbr elements' title attributes.
3618*bc421551SDag-Erling Smørgrav
3619*bc421551SDag-Erling Smørgrav
3620*bc421551SDag-Erling SmørgravRelease 2013i - 2013-12-17 07:25:23 -0800
3621*bc421551SDag-Erling Smørgrav
3622*bc421551SDag-Erling Smørgrav  Changes affecting near-future timestamps:
3623*bc421551SDag-Erling Smørgrav
3624*bc421551SDag-Erling Smørgrav    Jordan switches back to standard time at 00:00 on December 20, 2013.
3625*bc421551SDag-Erling Smørgrav    The 2006-2011 transition schedule is planned to resume in 2014.
3626*bc421551SDag-Erling Smørgrav    (Thanks to Steffen Thorsen.)
3627*bc421551SDag-Erling Smørgrav
3628*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps:
3629*bc421551SDag-Erling Smørgrav
3630*bc421551SDag-Erling Smørgrav    In 2004, Cuba began DST on March 28, not April 4.
3631*bc421551SDag-Erling Smørgrav    (Thanks to Steffen Thorsen.)
3632*bc421551SDag-Erling Smørgrav
3633*bc421551SDag-Erling Smørgrav  Changes affecting code
3634*bc421551SDag-Erling Smørgrav
3635*bc421551SDag-Erling Smørgrav    The compile-time flag NOSOLAR has been removed, as nowadays the
3636*bc421551SDag-Erling Smørgrav    benefit of slightly shrinking runtime table size is outweighed by the
3637*bc421551SDag-Erling Smørgrav    cost of disallowing potential future updates that exceed old limits.
3638*bc421551SDag-Erling Smørgrav
3639*bc421551SDag-Erling Smørgrav  Changes affecting documentation and commentary
3640*bc421551SDag-Erling Smørgrav
3641*bc421551SDag-Erling Smørgrav    The files solar87, solar88, and solar89 are no longer distributed.
3642*bc421551SDag-Erling Smørgrav    They were a negative experiment - that is, a demonstration that
3643*bc421551SDag-Erling Smørgrav    tz data can represent solar time only with some difficulty and error.
3644*bc421551SDag-Erling Smørgrav    Their presence in the distribution caused confusion, as Riyadh
3645*bc421551SDag-Erling Smørgrav    civil time was generally not solar time in those years.
3646*bc421551SDag-Erling Smørgrav
3647*bc421551SDag-Erling Smørgrav    tz-link.htm now mentions Noda Time.  (Thanks to Matt Johnson.)
3648*bc421551SDag-Erling Smørgrav
3649*bc421551SDag-Erling Smørgrav
3650*bc421551SDag-Erling SmørgravRelease 2013h - 2013-10-25 15:32:32 -0700
3651*bc421551SDag-Erling Smørgrav
3652*bc421551SDag-Erling Smørgrav  Changes affecting current and future timestamps:
3653*bc421551SDag-Erling Smørgrav
3654*bc421551SDag-Erling Smørgrav    Libya has switched its UT offset back to +02 without DST, instead
3655*bc421551SDag-Erling Smørgrav    of +01 with DST.  (Thanks to Even Scharning.)
3656*bc421551SDag-Erling Smørgrav
3657*bc421551SDag-Erling Smørgrav    Western Sahara (Africa/El_Aaiun) uses Morocco's DST rules.
3658*bc421551SDag-Erling Smørgrav    (Thanks to Gwillim Law.)
3659*bc421551SDag-Erling Smørgrav
3660*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps:
3661*bc421551SDag-Erling Smørgrav
3662*bc421551SDag-Erling Smørgrav    Acre and (we guess) western Amazonas will switch from UT -04 to -05
3663*bc421551SDag-Erling Smørgrav    on 2013-11-10.  This affects America/Rio_Branco and America/Eirunepe.
3664*bc421551SDag-Erling Smørgrav    (Thanks to Steffen Thorsen.)
3665*bc421551SDag-Erling Smørgrav
3666*bc421551SDag-Erling Smørgrav    Add entries for DST transitions in Morocco in the year 2038.
3667*bc421551SDag-Erling Smørgrav    This avoids some year-2038 glitches introduced in 2013g.
3668*bc421551SDag-Erling Smørgrav    (Thanks to Yoshito Umaoka for reporting the problem.)
3669*bc421551SDag-Erling Smørgrav
3670*bc421551SDag-Erling Smørgrav  Changes affecting API
3671*bc421551SDag-Erling Smørgrav
3672*bc421551SDag-Erling Smørgrav    The 'tzselect' command no longer requires the 'select' command,
3673*bc421551SDag-Erling Smørgrav    and should now work with /bin/sh on more platforms.  It also works
3674*bc421551SDag-Erling Smørgrav    around a bug in BusyBox awk before version 1.21.0.  (Thanks to
3675*bc421551SDag-Erling Smørgrav    Patrick 'P. J.' McDermott and Alan Barrett.)
3676*bc421551SDag-Erling Smørgrav
3677*bc421551SDag-Erling Smørgrav  Changes affecting code
3678*bc421551SDag-Erling Smørgrav
3679*bc421551SDag-Erling Smørgrav    Fix localtime overflow bugs with 32-bit unsigned time_t.
3680*bc421551SDag-Erling Smørgrav
3681*bc421551SDag-Erling Smørgrav    zdump no longer assumes sscanf returns maximal values on overflow.
3682*bc421551SDag-Erling Smørgrav
3683*bc421551SDag-Erling Smørgrav  Changes affecting the build procedure
3684*bc421551SDag-Erling Smørgrav
3685*bc421551SDag-Erling Smørgrav    The builder can specify which programs to use, if any, instead of
3686*bc421551SDag-Erling Smørgrav    'ar' and 'ranlib', and libtz.a is now built locally before being
3687*bc421551SDag-Erling Smørgrav    installed.  (Thanks to Michael Forney.)
3688*bc421551SDag-Erling Smørgrav
3689*bc421551SDag-Erling Smørgrav    A dependency typo in the 'zdump' rule has been fixed.
3690*bc421551SDag-Erling Smørgrav    (Thanks to Andrew Paprocki.)
3691*bc421551SDag-Erling Smørgrav
3692*bc421551SDag-Erling Smørgrav    The Makefile has been simplified by assuming that 'mkdir -p' and 'cp -f'
3693*bc421551SDag-Erling Smørgrav    work as specified by POSIX.2-1992 or later; this is portable nowadays.
3694*bc421551SDag-Erling Smørgrav
3695*bc421551SDag-Erling Smørgrav    'make clean' no longer removes 'leapseconds', since it's
3696*bc421551SDag-Erling Smørgrav    host-independent and is part of the distribution.
3697*bc421551SDag-Erling Smørgrav
3698*bc421551SDag-Erling Smørgrav    The unused makefile macros TZCSRCS, TZDSRCS, DATESRCS have been removed.
3699*bc421551SDag-Erling Smørgrav
3700*bc421551SDag-Erling Smørgrav  Changes affecting documentation and commentary
3701*bc421551SDag-Erling Smørgrav
3702*bc421551SDag-Erling Smørgrav    tz-link.htm now mentions TC TIMEZONE's draft time zone service protocol
3703*bc421551SDag-Erling Smørgrav    (thanks to Mike Douglass) and TimezoneJS.Date (thanks to Jim Fehrle).
3704*bc421551SDag-Erling Smørgrav
3705*bc421551SDag-Erling Smørgrav    Update URLs in tz-link page.  Add URLs for Microsoft Windows, since
3706*bc421551SDag-Erling Smørgrav    8.1 introduces tz support.  Remove URLs for Tru64 and UnixWare (no
3707*bc421551SDag-Erling Smørgrav    longer maintained) and for old advisories.  SOFA now does C.
3708*bc421551SDag-Erling Smørgrav
3709*bc421551SDag-Erling SmørgravRelease 2013g - 2013-09-30 21:08:26 -0700
3710*bc421551SDag-Erling Smørgrav
3711*bc421551SDag-Erling Smørgrav  Changes affecting current and near-future timestamps
3712*bc421551SDag-Erling Smørgrav
3713*bc421551SDag-Erling Smørgrav    Morocco now observes DST from the last Sunday in March to the last
3714*bc421551SDag-Erling Smørgrav    Sunday in October, not April to September respectively.  (Thanks
3715*bc421551SDag-Erling Smørgrav    to Steffen Thorsen.)
3716*bc421551SDag-Erling Smørgrav
3717*bc421551SDag-Erling Smørgrav  Changes affecting 'zic'
3718*bc421551SDag-Erling Smørgrav
3719*bc421551SDag-Erling Smørgrav    'zic' now runs on platforms that lack both hard links and symlinks.
3720*bc421551SDag-Erling Smørgrav    (Thanks to Theo Veenker for reporting the problem, for MinGW.)
3721*bc421551SDag-Erling Smørgrav    Also, fix some bugs on platforms that lack hard links but have symlinks.
3722*bc421551SDag-Erling Smørgrav
3723*bc421551SDag-Erling Smørgrav    'zic -v' again warns that Asia/Tehran has no POSIX environment variable
3724*bc421551SDag-Erling Smørgrav    to predict the far future, fixing a bug introduced in 2013e.
3725*bc421551SDag-Erling Smørgrav
3726*bc421551SDag-Erling Smørgrav  Changes affecting the build procedure
3727*bc421551SDag-Erling Smørgrav
3728*bc421551SDag-Erling Smørgrav    The 'leapseconds' file is again put into the tzdata tarball.
3729*bc421551SDag-Erling Smørgrav    Also, 'leapseconds.awk', so tzdata is self-contained.  (Thanks to
3730*bc421551SDag-Erling Smørgrav    Matt Burgess and Ian Abbott.)  The timestamps of these and other
3731*bc421551SDag-Erling Smørgrav    dependent files in tarballs are adjusted more consistently.
3732*bc421551SDag-Erling Smørgrav
3733*bc421551SDag-Erling Smørgrav  Changes affecting documentation and commentary
3734*bc421551SDag-Erling Smørgrav
3735*bc421551SDag-Erling Smørgrav    The README file is now part of the data tarball as well as the code.
3736*bc421551SDag-Erling Smørgrav    It now states that files are public domain unless otherwise specified.
3737*bc421551SDag-Erling Smørgrav    (Thanks to Andrew Main (Zefram) for asking for clarifications.)
3738*bc421551SDag-Erling Smørgrav    Its details about the 1989 release moved to a place of honor near
3739*bc421551SDag-Erling Smørgrav    the end of NEWS.
3740*bc421551SDag-Erling Smørgrav
3741*bc421551SDag-Erling Smørgrav
3742*bc421551SDag-Erling SmørgravRelease 2013f - 2013-09-24 23:37:36 -0700
3743*bc421551SDag-Erling Smørgrav
3744*bc421551SDag-Erling Smørgrav  Changes affecting near-future timestamps
3745*bc421551SDag-Erling Smørgrav
3746*bc421551SDag-Erling Smørgrav    Tocantins will very likely not observe DST starting this spring.
3747*bc421551SDag-Erling Smørgrav    (Thanks to Steffen Thorsen.)
3748*bc421551SDag-Erling Smørgrav
3749*bc421551SDag-Erling Smørgrav    Jordan will likely stay at UT +03 indefinitely, and will not fall
3750*bc421551SDag-Erling Smørgrav    back this fall.
3751*bc421551SDag-Erling Smørgrav
3752*bc421551SDag-Erling Smørgrav    Palestine will fall back at 00:00, not 01:00.  (Thanks to Steffen Thorsen.)
3753*bc421551SDag-Erling Smørgrav
3754*bc421551SDag-Erling Smørgrav  Changes affecting API
3755*bc421551SDag-Erling Smørgrav
3756*bc421551SDag-Erling Smørgrav    The types of the global variables 'timezone' and 'altzone' (if present)
3757*bc421551SDag-Erling Smørgrav    have been changed back to 'long'.  This is required for 'timezone'
3758*bc421551SDag-Erling Smørgrav    by POSIX, and for 'altzone' by common practice, e.g., Solaris 11.
3759*bc421551SDag-Erling Smørgrav    These variables were originally 'long' in the tz code, but were
3760*bc421551SDag-Erling Smørgrav    mistakenly changed to 'time_t' in 1987; nobody reported the
3761*bc421551SDag-Erling Smørgrav    incompatibility until now.  The difference matters on x32, where
3762*bc421551SDag-Erling Smørgrav    'long' is 32 bits and 'time_t' is 64.  (Thanks to Elliott Hughes.)
3763*bc421551SDag-Erling Smørgrav
3764*bc421551SDag-Erling Smørgrav  Changes affecting the build procedure
3765*bc421551SDag-Erling Smørgrav
3766*bc421551SDag-Erling Smørgrav    Avoid long strings in leapseconds.awk to work around a mawk bug.
3767*bc421551SDag-Erling Smørgrav    (Thanks to Cyril Baurand.)
3768*bc421551SDag-Erling Smørgrav
3769*bc421551SDag-Erling Smørgrav  Changes affecting documentation and commentary
3770*bc421551SDag-Erling Smørgrav
3771*bc421551SDag-Erling Smørgrav    New file 'NEWS' that contains release notes like this one.
3772*bc421551SDag-Erling Smørgrav
3773*bc421551SDag-Erling Smørgrav    Paraguay's law does not specify DST transition time; 00:00 is customary.
3774*bc421551SDag-Erling Smørgrav    (Thanks to Waldemar Villamayor-Venialbo.)
3775*bc421551SDag-Erling Smørgrav
3776*bc421551SDag-Erling Smørgrav    Minor capitalization fixes.
3777*bc421551SDag-Erling Smørgrav
3778*bc421551SDag-Erling Smørgrav  Changes affecting version-control only
3779*bc421551SDag-Erling Smørgrav
3780*bc421551SDag-Erling Smørgrav    The experimental GitHub repository now contains annotated and
3781*bc421551SDag-Erling Smørgrav    signed tags for recent releases, e.g., '2013e' for Release 2013e.
3782*bc421551SDag-Erling Smørgrav    Releases are tagged starting with 2012e; earlier releases were
3783*bc421551SDag-Erling Smørgrav    done differently, and tags would either not have a simple name or
3784*bc421551SDag-Erling Smørgrav    not exactly match what was released.
3785*bc421551SDag-Erling Smørgrav
3786*bc421551SDag-Erling Smørgrav    'make set-timestamps' is now simpler and a bit more portable.
3787*bc421551SDag-Erling Smørgrav
3788*bc421551SDag-Erling Smørgrav
3789*bc421551SDag-Erling SmørgravRelease 2013e - 2013-09-19 23:50:04 -0700
3790*bc421551SDag-Erling Smørgrav
3791*bc421551SDag-Erling Smørgrav  Changes affecting near-future timestamps
3792*bc421551SDag-Erling Smørgrav
3793*bc421551SDag-Erling Smørgrav    This year Fiji will start DST on October 27, not October 20.
3794*bc421551SDag-Erling Smørgrav    (Thanks to David Wheeler for the heads-up.)  For now, guess that
3795*bc421551SDag-Erling Smørgrav    Fiji will continue to spring forward the Sunday before the fourth
3796*bc421551SDag-Erling Smørgrav    Monday in October.
3797*bc421551SDag-Erling Smørgrav
3798*bc421551SDag-Erling Smørgrav  Changes affecting current and future time zone abbreviations
3799*bc421551SDag-Erling Smørgrav
3800*bc421551SDag-Erling Smørgrav    Use WIB/WITA/WIT rather than WIT/CIT/EIT for alphabetic Indonesian
3801*bc421551SDag-Erling Smørgrav    time zone abbreviations since 1932.  (Thanks to George Ziegler,
3802*bc421551SDag-Erling Smørgrav    Priyadi Iman Nurcahyo, Zakaria, Jason Grimes, Martin Pitt, and
3803*bc421551SDag-Erling Smørgrav    Benny Lin.)  This affects Asia/Dili, Asia/Jakarta, Asia/Jayapura,
3804*bc421551SDag-Erling Smørgrav    Asia/Makassar, and Asia/Pontianak.
3805*bc421551SDag-Erling Smørgrav
3806*bc421551SDag-Erling Smørgrav    Use ART (UT -03, standard time), rather than WARST (also -03, but
3807*bc421551SDag-Erling Smørgrav    daylight saving time) for San Luis, Argentina since 2009.
3808*bc421551SDag-Erling Smørgrav
3809*bc421551SDag-Erling Smørgrav  Changes affecting Godthåb timestamps after 2037 if version mismatch
3810*bc421551SDag-Erling Smørgrav
3811*bc421551SDag-Erling Smørgrav    Allow POSIX-like TZ strings where the transition time's hour can
3812*bc421551SDag-Erling Smørgrav    range from -167 through 167, instead of the POSIX-required 0
3813*bc421551SDag-Erling Smørgrav    through 24.  E.g., TZ='FJT-12FJST,M10.3.1/146,M1.3.4/75' for the
3814*bc421551SDag-Erling Smørgrav    new Fiji rules.  This is a more-compact way to represent
3815*bc421551SDag-Erling Smørgrav    far-future timestamps for America/Godthab, America/Santiago,
3816*bc421551SDag-Erling Smørgrav    Antarctica/Palmer, Asia/Gaza, Asia/Hebron, Asia/Jerusalem,
3817*bc421551SDag-Erling Smørgrav    Pacific/Easter, and Pacific/Fiji.  Other zones are unaffected by
3818*bc421551SDag-Erling Smørgrav    this change.  (Derived from a suggestion by Arthur David Olson.)
3819*bc421551SDag-Erling Smørgrav
3820*bc421551SDag-Erling Smørgrav    Allow POSIX-like TZ strings where daylight saving time is in
3821*bc421551SDag-Erling Smørgrav    effect all year.  E.g., TZ='WART4WARST,J1/0,J365/25' for Western
3822*bc421551SDag-Erling Smørgrav    Argentina Summer Time all year.  This supports a more-compact way
3823*bc421551SDag-Erling Smørgrav    to represent the 2013d data for America/Argentina/San_Luis.
3824*bc421551SDag-Erling Smørgrav    Because of the change for San Luis noted above this change does not
3825*bc421551SDag-Erling Smørgrav    affect the current data.  (Thanks to Andrew Main (Zefram) for
3826*bc421551SDag-Erling Smørgrav    suggestions that improved this change.)
3827*bc421551SDag-Erling Smørgrav
3828*bc421551SDag-Erling Smørgrav    Where these two TZ changes take effect, there is a minor extension
3829*bc421551SDag-Erling Smørgrav    to the tz file format in that it allows new values for the
3830*bc421551SDag-Erling Smørgrav    embedded TZ-format string, and the tz file format version number
3831*bc421551SDag-Erling Smørgrav    has therefore been increased from 2 to 3 as a precaution.
3832*bc421551SDag-Erling Smørgrav    Version-2-based client code should continue to work as before for
3833*bc421551SDag-Erling Smørgrav    all timestamps before 2038.  Existing version-2-based client code
3834*bc421551SDag-Erling Smørgrav    (tzcode, GNU/Linux, Solaris) has been tested on version-3-format
3835*bc421551SDag-Erling Smørgrav    files, and typically works in practice even for timestamps after
3836*bc421551SDag-Erling Smørgrav    2037; the only known exception is America/Godthab.
3837*bc421551SDag-Erling Smørgrav
3838*bc421551SDag-Erling Smørgrav  Changes affecting timestamps before 1970
3839*bc421551SDag-Erling Smørgrav
3840*bc421551SDag-Erling Smørgrav    Pacific/Johnston is now a link to Pacific/Honolulu.  This corrects
3841*bc421551SDag-Erling Smørgrav    some errors before 1947.
3842*bc421551SDag-Erling Smørgrav
3843*bc421551SDag-Erling Smørgrav    Some zones have been turned into links, when they differ from existing
3844*bc421551SDag-Erling Smørgrav    zones only in older data entries that were likely invented or that
3845*bc421551SDag-Erling Smørgrav    differ only in LMT or transitions from LMT.  These changes affect
3846*bc421551SDag-Erling Smørgrav    only timestamps before 1943.  The affected zones are:
3847*bc421551SDag-Erling Smørgrav    Africa/Juba, America/Anguilla, America/Aruba, America/Dominica,
3848*bc421551SDag-Erling Smørgrav    America/Grenada, America/Guadeloupe, America/Marigot,
3849*bc421551SDag-Erling Smørgrav    America/Montserrat, America/St_Barthelemy, America/St_Kitts,
3850*bc421551SDag-Erling Smørgrav    America/St_Lucia, America/St_Thomas, America/St_Vincent,
3851*bc421551SDag-Erling Smørgrav    America/Tortola, and Europe/Vaduz.  (Thanks to Alois Treindl for
3852*bc421551SDag-Erling Smørgrav    confirming that the old Europe/Vaduz zone was wrong and the new
3853*bc421551SDag-Erling Smørgrav    link is better for WWII-era times.)
3854*bc421551SDag-Erling Smørgrav
3855*bc421551SDag-Erling Smørgrav    Change Kingston Mean Time from -5:07:12 to -5:07:11.  This affects
3856*bc421551SDag-Erling Smørgrav    America/Cayman, America/Jamaica and America/Grand_Turk timestamps
3857*bc421551SDag-Erling Smørgrav    from 1890 to 1912.
3858*bc421551SDag-Erling Smørgrav
3859*bc421551SDag-Erling Smørgrav    Change the UT offset of Bern Mean Time from 0:29:44 to 0:29:46.
3860*bc421551SDag-Erling Smørgrav    This affects Europe/Zurich timestamps from 1853 to 1894.  (Thanks
3861*bc421551SDag-Erling Smørgrav    to Alois Treindl.)
3862*bc421551SDag-Erling Smørgrav
3863*bc421551SDag-Erling Smørgrav    Change the date of the circa-1850 Zurich transition from 1849-09-12
3864*bc421551SDag-Erling Smørgrav    to 1853-07-16, overriding Shanks with data from Messerli about
3865*bc421551SDag-Erling Smørgrav    postal and telegraph time in Switzerland.
3866*bc421551SDag-Erling Smørgrav
3867*bc421551SDag-Erling Smørgrav  Changes affecting time zone abbreviations before 1970
3868*bc421551SDag-Erling Smørgrav
3869*bc421551SDag-Erling Smørgrav    For Asia/Jakarta, use BMT (not JMT) for mean time from 1923 to 1932,
3870*bc421551SDag-Erling Smørgrav    as Jakarta was called Batavia back then.
3871*bc421551SDag-Erling Smørgrav
3872*bc421551SDag-Erling Smørgrav  Changes affecting API
3873*bc421551SDag-Erling Smørgrav
3874*bc421551SDag-Erling Smørgrav    The 'zic' command now outputs a dummy transition when far-future
3875*bc421551SDag-Erling Smørgrav    data can't be summarized using a TZ string, and uses a 402-year
3876*bc421551SDag-Erling Smørgrav    window rather than a 400-year window.  For the current data, this
3877*bc421551SDag-Erling Smørgrav    affects only the Asia/Tehran file.  It does not affect any of the
3878*bc421551SDag-Erling Smørgrav    timestamps that this file represents, so zdump outputs the same
3879*bc421551SDag-Erling Smørgrav    information as before.  (Thanks to Andrew Main (Zefram).)
3880*bc421551SDag-Erling Smørgrav
3881*bc421551SDag-Erling Smørgrav    The 'date' command has a new '-r' option, which lets you specify
3882*bc421551SDag-Erling Smørgrav    the integer time to display, a la FreeBSD.
3883*bc421551SDag-Erling Smørgrav
3884*bc421551SDag-Erling Smørgrav    The 'tzselect' command has two new options '-c' and '-n', which lets you
3885*bc421551SDag-Erling Smørgrav    select a zone based on latitude and longitude.
3886*bc421551SDag-Erling Smørgrav
3887*bc421551SDag-Erling Smørgrav    The 'zic' command's '-v' option now warns about constructs that
3888*bc421551SDag-Erling Smørgrav    require the new version-3 binary file format.  (Thanks to Arthur
3889*bc421551SDag-Erling Smørgrav    David Olson for the suggestion.)
3890*bc421551SDag-Erling Smørgrav
3891*bc421551SDag-Erling Smørgrav    Support for floating-point time_t has been removed.
3892*bc421551SDag-Erling Smørgrav    It was always dicey, and POSIX no longer requires it.
3893*bc421551SDag-Erling Smørgrav    (Thanks to Eric Blake for suggesting to the POSIX committee to
3894*bc421551SDag-Erling Smørgrav    remove it, and thanks to Alan Barrett, Clive D.W. Feather, Andy
3895*bc421551SDag-Erling Smørgrav    Heninger, Arthur David Olson, and Alois Treindl, for reporting
3896*bc421551SDag-Erling Smørgrav    bugs and elucidating some of the corners of the old floating-point
3897*bc421551SDag-Erling Smørgrav    implementation.)
3898*bc421551SDag-Erling Smørgrav
3899*bc421551SDag-Erling Smørgrav    The signatures of 'offtime', 'timeoff', and 'gtime' have been
3900*bc421551SDag-Erling Smørgrav    changed back to the old practice of using 'long' to represent UT
3901*bc421551SDag-Erling Smørgrav    offsets.  This had been inadvertently and mistakenly changed to
3902*bc421551SDag-Erling Smørgrav    'int_fast32_t'.  (Thanks to Christos Zoulas.)
3903*bc421551SDag-Erling Smørgrav
3904*bc421551SDag-Erling Smørgrav    The code avoids undefined behavior on integer overflow in some
3905*bc421551SDag-Erling Smørgrav    more places, including gmtime, localtime, mktime and zdump.
3906*bc421551SDag-Erling Smørgrav
3907*bc421551SDag-Erling Smørgrav  Changes affecting the zdump utility
3908*bc421551SDag-Erling Smørgrav
3909*bc421551SDag-Erling Smørgrav    zdump now outputs "UT" when referring to Universal Time, not "UTC".
3910*bc421551SDag-Erling Smørgrav    "UTC" does not make sense for timestamps that predate the introduction
3911*bc421551SDag-Erling Smørgrav    of UTC, whereas "UT", a more-generic term, does.  (Thanks to Steve Allen
3912*bc421551SDag-Erling Smørgrav    for clarifying UT vs UTC.)
3913*bc421551SDag-Erling Smørgrav
3914*bc421551SDag-Erling Smørgrav  Data changes affecting behavior of tzselect and similar programs
3915*bc421551SDag-Erling Smørgrav
3916*bc421551SDag-Erling Smørgrav    Country code BQ is now called the more-common name "Caribbean Netherlands"
3917*bc421551SDag-Erling Smørgrav    rather than the more-official "Bonaire, St Eustatius & Saba".
3918*bc421551SDag-Erling Smørgrav
3919*bc421551SDag-Erling Smørgrav    Remove from zone.tab the names America/Montreal, America/Shiprock,
3920*bc421551SDag-Erling Smørgrav    and Antarctica/South_Pole, as they are equivalent to existing
3921*bc421551SDag-Erling Smørgrav    same-country-code zones for post-1970 timestamps.  The data entries for
3922*bc421551SDag-Erling Smørgrav    these names are unchanged, so the names continue to work as before.
3923*bc421551SDag-Erling Smørgrav
3924*bc421551SDag-Erling Smørgrav  Changes affecting code internals
3925*bc421551SDag-Erling Smørgrav
3926*bc421551SDag-Erling Smørgrav    zic -c now runs way faster on 64-bit hosts when given large numbers.
3927*bc421551SDag-Erling Smørgrav
3928*bc421551SDag-Erling Smørgrav    zic now uses vfprintf to avoid allocating and freeing some memory.
3929*bc421551SDag-Erling Smørgrav
3930*bc421551SDag-Erling Smørgrav    tzselect now computes the list of continents from the data,
3931*bc421551SDag-Erling Smørgrav    rather than have it hard-coded.
3932*bc421551SDag-Erling Smørgrav
3933*bc421551SDag-Erling Smørgrav    Minor changes pacify GCC 4.7.3 and GCC 4.8.1.
3934*bc421551SDag-Erling Smørgrav
3935*bc421551SDag-Erling Smørgrav  Changes affecting the build procedure
3936*bc421551SDag-Erling Smørgrav
3937*bc421551SDag-Erling Smørgrav    The 'leapseconds' file is now generated automatically from a
3938*bc421551SDag-Erling Smørgrav    new file 'leap-seconds.list', which is a copy of
3939*bc421551SDag-Erling Smørgrav    <ftp://ftp.nist.gov/pub/time/leap-seconds.list>
3940*bc421551SDag-Erling Smørgrav    A new source file 'leapseconds.awk' implements this.
3941*bc421551SDag-Erling Smørgrav    The goal is simplification of the future maintenance of 'leapseconds'.
3942*bc421551SDag-Erling Smørgrav
3943*bc421551SDag-Erling Smørgrav    When building the 'posix' or 'right' subdirectories, if the
3944*bc421551SDag-Erling Smørgrav    subdirectory would be a copy of the default subdirectory, it is
3945*bc421551SDag-Erling Smørgrav    now made a symbolic link if that is supported.  This saves about
3946*bc421551SDag-Erling Smørgrav    2 MB of file system space.
3947*bc421551SDag-Erling Smørgrav
3948*bc421551SDag-Erling Smørgrav    The links America/Shiprock and Antarctica/South_Pole have been
3949*bc421551SDag-Erling Smørgrav    moved to the 'backward' file.  This affects only nondefault builds
3950*bc421551SDag-Erling Smørgrav    that omit 'backward'.
3951*bc421551SDag-Erling Smørgrav
3952*bc421551SDag-Erling Smørgrav  Changes affecting version-control only
3953*bc421551SDag-Erling Smørgrav
3954*bc421551SDag-Erling Smørgrav    .gitignore now ignores 'date'.
3955*bc421551SDag-Erling Smørgrav
3956*bc421551SDag-Erling Smørgrav  Changes affecting documentation and commentary
3957*bc421551SDag-Erling Smørgrav
3958*bc421551SDag-Erling Smørgrav    Changes to the 'tzfile' man page
3959*bc421551SDag-Erling Smørgrav
3960*bc421551SDag-Erling Smørgrav      It now mentions that the binary file format may be extended in
3961*bc421551SDag-Erling Smørgrav      future versions by appending data.
3962*bc421551SDag-Erling Smørgrav
3963*bc421551SDag-Erling Smørgrav      It now refers to the 'zdump' and 'zic' man pages.
3964*bc421551SDag-Erling Smørgrav
3965*bc421551SDag-Erling Smørgrav    Changes to the 'zic' man page
3966*bc421551SDag-Erling Smørgrav
3967*bc421551SDag-Erling Smørgrav      It lists conditions that elicit a warning with '-v'.
3968*bc421551SDag-Erling Smørgrav
3969*bc421551SDag-Erling Smørgrav      It says that the behavior is unspecified when duplicate names
3970*bc421551SDag-Erling Smørgrav      are given, or if the source of one link is the target of another.
3971*bc421551SDag-Erling Smørgrav
3972*bc421551SDag-Erling Smørgrav      Its examples are updated to match the latest data.
3973*bc421551SDag-Erling Smørgrav
3974*bc421551SDag-Erling Smørgrav      The definition of white space has been clarified slightly.
3975*bc421551SDag-Erling Smørgrav      (Thanks to Michael Deckers.)
3976*bc421551SDag-Erling Smørgrav
3977*bc421551SDag-Erling Smørgrav    Changes to the 'Theory' file
3978*bc421551SDag-Erling Smørgrav
3979*bc421551SDag-Erling Smørgrav      There is a new section about the accuracy of the tz database,
3980*bc421551SDag-Erling Smørgrav      describing the many ways that errors can creep in, and
3981*bc421551SDag-Erling Smørgrav      explaining why so many of the pre-1970 timestamps are wrong or
3982*bc421551SDag-Erling Smørgrav      misleading (thanks to Steve Allen, Lester Caine, and Garrett
3983*bc421551SDag-Erling Smørgrav      Wollman for discussions that contributed to this).
3984*bc421551SDag-Erling Smørgrav
3985*bc421551SDag-Erling Smørgrav      The 'Theory' file describes LMT better (this follows a
3986*bc421551SDag-Erling Smørgrav      suggestion by Guy Harris).
3987*bc421551SDag-Erling Smørgrav
3988*bc421551SDag-Erling Smørgrav      It refers to the 2013 edition of POSIX rather than the 2004 edition.
3989*bc421551SDag-Erling Smørgrav
3990*bc421551SDag-Erling Smørgrav      It's mentioned that excluding 'backward' should not affect the
3991*bc421551SDag-Erling Smørgrav      other data, and it suggests at least one zone.tab name per
3992*bc421551SDag-Erling Smørgrav      inhabited country (thanks to Stephen Colebourne).
3993*bc421551SDag-Erling Smørgrav
3994*bc421551SDag-Erling Smørgrav      Some longstanding restrictions on names are documented, e.g.,
3995*bc421551SDag-Erling Smørgrav      'America/New_York' precludes 'America/New_York/Bronx'.
3996*bc421551SDag-Erling Smørgrav
3997*bc421551SDag-Erling Smørgrav      It gives more reasons for the 1970 cutoff.
3998*bc421551SDag-Erling Smørgrav
3999*bc421551SDag-Erling Smørgrav      It now mentions which time_t variants are supported, such as
4000*bc421551SDag-Erling Smørgrav      signed integer time_t.  (Thanks to Paul Goyette for reporting
4001*bc421551SDag-Erling Smørgrav      typos in an experimental version of this change.)
4002*bc421551SDag-Erling Smørgrav
4003*bc421551SDag-Erling Smørgrav      (Thanks to Philip Newton for correcting typos in these changes.)
4004*bc421551SDag-Erling Smørgrav
4005*bc421551SDag-Erling Smørgrav    Documentation and commentary is more careful to distinguish UT in
4006*bc421551SDag-Erling Smørgrav    general from UTC in particular.  (Thanks to Steve Allen.)
4007*bc421551SDag-Erling Smørgrav
4008*bc421551SDag-Erling Smørgrav    Add a better source for the Zurich 1894 transition.
4009*bc421551SDag-Erling Smørgrav    (Thanks to Pierre-Yves Berger.)
4010*bc421551SDag-Erling Smørgrav
4011*bc421551SDag-Erling Smørgrav    Update shapefile citations in tz-link.htm.  (Thanks to Guy Harris.)
4012*bc421551SDag-Erling Smørgrav
4013*bc421551SDag-Erling Smørgrav
4014*bc421551SDag-Erling SmørgravRelease 2013d - 2013-07-05 07:38:01 -0700
4015*bc421551SDag-Erling Smørgrav
4016*bc421551SDag-Erling Smørgrav  Changes affecting future timestamps:
4017*bc421551SDag-Erling Smørgrav
4018*bc421551SDag-Erling Smørgrav    Morocco's midsummer transitions this year are July 7 and August 10,
4019*bc421551SDag-Erling Smørgrav    not July 9 and August 8.  (Thanks to Andrew Paprocki.)
4020*bc421551SDag-Erling Smørgrav
4021*bc421551SDag-Erling Smørgrav    Israel now falls back on the last Sunday of October.
4022*bc421551SDag-Erling Smørgrav    (Thanks to Ephraim Silverberg.)
4023*bc421551SDag-Erling Smørgrav
4024*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps:
4025*bc421551SDag-Erling Smørgrav
4026*bc421551SDag-Erling Smørgrav    Specify Jerusalem's location more precisely; this changes the pre-1880
4027*bc421551SDag-Erling Smørgrav    times by 2 s.
4028*bc421551SDag-Erling Smørgrav
4029*bc421551SDag-Erling Smørgrav  Changing affecting metadata only:
4030*bc421551SDag-Erling Smørgrav
4031*bc421551SDag-Erling Smørgrav    Fix typos in the entries for country codes BQ and SX.
4032*bc421551SDag-Erling Smørgrav
4033*bc421551SDag-Erling Smørgrav  Changes affecting code:
4034*bc421551SDag-Erling Smørgrav
4035*bc421551SDag-Erling Smørgrav    Rework the code to fix a bug with handling Australia/Macquarie on
4036*bc421551SDag-Erling Smørgrav    32-bit hosts (thanks to Arthur David Olson).
4037*bc421551SDag-Erling Smørgrav
4038*bc421551SDag-Erling Smørgrav    Port to platforms like NetBSD, where time_t can be wider than long.
4039*bc421551SDag-Erling Smørgrav
4040*bc421551SDag-Erling Smørgrav    Add support for testing time_t types other than the system's.
4041*bc421551SDag-Erling Smørgrav    Run 'make check_time_t_alternatives' to try this out.
4042*bc421551SDag-Erling Smørgrav    Currently, the tests fail for unsigned time_t;
4043*bc421551SDag-Erling Smørgrav    this should get fixed at some point.
4044*bc421551SDag-Erling Smørgrav
4045*bc421551SDag-Erling Smørgrav  Changes affecting documentation and commentary:
4046*bc421551SDag-Erling Smørgrav
4047*bc421551SDag-Erling Smørgrav    Deemphasize the significance of national borders.
4048*bc421551SDag-Erling Smørgrav
4049*bc421551SDag-Erling Smørgrav    Update the zdump man page.
4050*bc421551SDag-Erling Smørgrav
4051*bc421551SDag-Erling Smørgrav    Remove obsolete NOID comment (thanks to Denis Excoffier).
4052*bc421551SDag-Erling Smørgrav
4053*bc421551SDag-Erling Smørgrav    Update several URLs and comments in the web pages.
4054*bc421551SDag-Erling Smørgrav
4055*bc421551SDag-Erling Smørgrav    Spelling fixes (thanks to Kevin Lyda and Jonathan Leffler).
4056*bc421551SDag-Erling Smørgrav
4057*bc421551SDag-Erling Smørgrav    Update URL for CLDR Zone->Tzid table (thanks to Yoshito Umaoka).
4058*bc421551SDag-Erling Smørgrav
4059*bc421551SDag-Erling Smørgrav
4060*bc421551SDag-Erling SmørgravRelease 2013c - 2013-04-19 16:17:40 -0700
4061*bc421551SDag-Erling Smørgrav
4062*bc421551SDag-Erling Smørgrav  Changes affecting current and future timestamps:
4063*bc421551SDag-Erling Smørgrav
4064*bc421551SDag-Erling Smørgrav    Palestine observed DST starting March 29, 2013.  (Thanks to
4065*bc421551SDag-Erling Smørgrav    Steffen Thorsen.)  From 2013 on, Gaza and Hebron both observe DST,
4066*bc421551SDag-Erling Smørgrav    with the predicted rules being the last Thursday in March at 24:00
4067*bc421551SDag-Erling Smørgrav    to the first Friday on or after September 21 at 01:00.
4068*bc421551SDag-Erling Smørgrav
4069*bc421551SDag-Erling Smørgrav    Assume that the recent change to Paraguay's DST rules is permanent,
4070*bc421551SDag-Erling Smørgrav    by moving the end of DST to the 4th Sunday in March every year.
4071*bc421551SDag-Erling Smørgrav    (Thanks to Carlos Raúl Perasso.)
4072*bc421551SDag-Erling Smørgrav
4073*bc421551SDag-Erling Smørgrav  Changes affecting past timestamps:
4074*bc421551SDag-Erling Smørgrav
4075*bc421551SDag-Erling Smørgrav    Fix some historical data for Palestine to agree with that of
4076*bc421551SDag-Erling Smørgrav    timeanddate.com, as follows:
4077*bc421551SDag-Erling Smørgrav
4078*bc421551SDag-Erling Smørgrav	  The spring 2008 change in Gaza and Hebron was on 00:00 Mar 28, not
4079*bc421551SDag-Erling Smørgrav	  00:00 Apr 1.
4080*bc421551SDag-Erling Smørgrav
4081*bc421551SDag-Erling Smørgrav	  The fall 2009 change in Gaza and Hebron on Sep 4 was at 01:00, not
4082*bc421551SDag-Erling Smørgrav	  02:00.
4083*bc421551SDag-Erling Smørgrav
4084*bc421551SDag-Erling Smørgrav	  The spring 2010 change in Hebron was 00:00 Mar 26, not 00:01 Mar 27.
4085*bc421551SDag-Erling Smørgrav
4086*bc421551SDag-Erling Smørgrav	  The spring 2011 change in Gaza was 00:01 Apr 1, not 12:01 Apr 2.
4087*bc421551SDag-Erling Smørgrav
4088*bc421551SDag-Erling Smørgrav	  The spring 2011 change in Hebron on Apr 1 was at 00:01, not 12:01.
4089*bc421551SDag-Erling Smørgrav
4090*bc421551SDag-Erling Smørgrav	  The fall 2011 change in Hebron on Sep 30 was at 00:00, not 03:00.
4091*bc421551SDag-Erling Smørgrav
4092*bc421551SDag-Erling Smørgrav    Fix times of habitation for Macquarie to agree with the Tasmania
4093*bc421551SDag-Erling Smørgrav    Parks & Wildlife Service history, which indicates that permanent
4094*bc421551SDag-Erling Smørgrav    habitation was 1899-1919 and 1948 on.
4095*bc421551SDag-Erling Smørgrav
4096*bc421551SDag-Erling Smørgrav  Changing affecting metadata only:
4097*bc421551SDag-Erling Smørgrav
4098*bc421551SDag-Erling Smørgrav    Macquarie Island is politically part of Australia, not Antarctica.
4099*bc421551SDag-Erling Smørgrav    (Thanks to Tobias Conradi.)
4100*bc421551SDag-Erling Smørgrav
4101*bc421551SDag-Erling Smørgrav    Sort Macquarie more-consistently with other parts of Australia.
4102*bc421551SDag-Erling Smørgrav    (Thanks to Tim Parenti.)
4103*bc421551SDag-Erling Smørgrav
4104*bc421551SDag-Erling Smørgrav
4105*bc421551SDag-Erling SmørgravRelease 2013b - 2013-03-10 22:33:40 -0700
4106*bc421551SDag-Erling Smørgrav
4107*bc421551SDag-Erling Smørgrav  Changes affecting current and future timestamps:
4108*bc421551SDag-Erling Smørgrav
4109*bc421551SDag-Erling Smørgrav    Haiti uses US daylight-saving rules this year, and presumably future years.
4110*bc421551SDag-Erling Smørgrav    This changes timestamps starting today.  (Thanks to Steffen Thorsen.)
4111*bc421551SDag-Erling Smørgrav
4112*bc421551SDag-Erling Smørgrav    Paraguay will end DST on March 24 this year.
4113*bc421551SDag-Erling Smørgrav    (Thanks to Steffen Thorsen.)  For now, assume it's just this year.
4114*bc421551SDag-Erling Smørgrav
4115*bc421551SDag-Erling Smørgrav    Morocco does not observe DST during Ramadan;
4116*bc421551SDag-Erling Smørgrav    try to predict Ramadan in Morocco as best we can.
4117*bc421551SDag-Erling Smørgrav    (Thanks to Erik Homoet for the heads-up.)
4118*bc421551SDag-Erling Smørgrav
4119*bc421551SDag-Erling Smørgrav  Changes affecting commentary:
4120*bc421551SDag-Erling Smørgrav
4121*bc421551SDag-Erling Smørgrav    Update URLs in tz-link page.  Add URLs for webOS, BB10, iOS.
4122*bc421551SDag-Erling Smørgrav    Update URL for Solaris.  Mention Internet RFC 6557.
4123*bc421551SDag-Erling Smørgrav    Update Internet RFCs 2445->5545, 2822->5322.
4124*bc421551SDag-Erling Smørgrav    Switch from FTP to HTTP for Internet RFCs.
4125*bc421551SDag-Erling Smørgrav
4126*bc421551SDag-Erling Smørgrav
4127*bc421551SDag-Erling SmørgravRelease 2013a - 2013-02-27 09:20:35 -0800
4128*bc421551SDag-Erling Smørgrav
4129*bc421551SDag-Erling Smørgrav  Change affecting binary data format:
4130*bc421551SDag-Erling Smørgrav
4131*bc421551SDag-Erling Smørgrav    The zone offset at the end of version-2-format zone files is now
4132*bc421551SDag-Erling Smørgrav    allowed to be 24:00, as per POSIX.1-2008.  (Thanks to Arthur David Olson.)
4133*bc421551SDag-Erling Smørgrav
4134*bc421551SDag-Erling Smørgrav  Changes affecting current and future timestamps:
4135*bc421551SDag-Erling Smørgrav
4136*bc421551SDag-Erling Smørgrav    Chile's 2013 rules, and we guess rules for 2014 and later, will be
4137*bc421551SDag-Erling Smørgrav    the same as 2012, namely Apr Sun>=23 03:00 UTC to Sep Sun>=2 04:00 UTC.
4138*bc421551SDag-Erling Smørgrav    (Thanks to Steffen Thorsen and Robert Elz.)
4139*bc421551SDag-Erling Smørgrav
4140*bc421551SDag-Erling Smørgrav    New Zones Asia/Khandyga, Asia/Ust-Nera, Europe/Busingen.
4141*bc421551SDag-Erling Smørgrav    (Thanks to Tobias Conradi and Arthur David Olson.)
4142*bc421551SDag-Erling Smørgrav
4143*bc421551SDag-Erling Smørgrav  Many changes affect historical timestamps before 1940.
4144*bc421551SDag-Erling Smørgrav  These were deduced from: Milne J. Civil time. Geogr J. 1899
4145*bc421551SDag-Erling Smørgrav  Feb;13(2):173-94 <https://www.jstor.org/stable/1774359>.
4146*bc421551SDag-Erling Smørgrav
4147*bc421551SDag-Erling Smørgrav  Changes affecting the code:
4148*bc421551SDag-Erling Smørgrav
4149*bc421551SDag-Erling Smørgrav    Fix zic bug that mishandled Egypt's 2010 changes (this also affected
4150*bc421551SDag-Erling Smørgrav    the data).  (Thanks to Arthur David Olson.)
4151*bc421551SDag-Erling Smørgrav
4152*bc421551SDag-Erling Smørgrav    Fix localtime bug when time_t is unsigned and data files were generated
4153*bc421551SDag-Erling Smørgrav    by a signed time_t system.  (Thanks to Doug Bailey for reporting and
4154*bc421551SDag-Erling Smørgrav    to Arthur David Olson for fixing.)
4155*bc421551SDag-Erling Smørgrav
4156*bc421551SDag-Erling Smørgrav    Allow the email address for bug reports to be set by the packager.
4157*bc421551SDag-Erling Smørgrav    The default is tz@iana.org, as before.  (Thanks to Joseph S. Myers.)
4158*bc421551SDag-Erling Smørgrav
4159*bc421551SDag-Erling Smørgrav    Update HTML checking to be compatible with Ubuntu 12.10.
4160*bc421551SDag-Erling Smørgrav
4161*bc421551SDag-Erling Smørgrav    Check that files are a safe subset of ASCII.  At some point we may
4162*bc421551SDag-Erling Smørgrav    relax this requirement to a safe subset of UTF-8.  Without the
4163*bc421551SDag-Erling Smørgrav    check, some non-UTF-8 encodings were leaking into the distribution.
4164*bc421551SDag-Erling Smørgrav
4165*bc421551SDag-Erling Smørgrav  Commentary changes:
4166*bc421551SDag-Erling Smørgrav
4167*bc421551SDag-Erling Smørgrav    Restore a comment about copyright notices that was inadvertently deleted.
4168*bc421551SDag-Erling Smørgrav    (Thanks to Arthur David Olson.)
4169*bc421551SDag-Erling Smørgrav
4170*bc421551SDag-Erling Smørgrav    Improve the commentary about which districts observe what times
4171*bc421551SDag-Erling Smørgrav    in Russia.  (Thanks to Oscar van Vlijmen and Arthur David Olson.)
4172*bc421551SDag-Erling Smørgrav
4173*bc421551SDag-Erling Smørgrav    Add web page links to tz.js.
4174*bc421551SDag-Erling Smørgrav
4175*bc421551SDag-Erling Smørgrav    Add "Run by the Monkeys" to tz-art.  (Thanks to Arthur David Olson.)
4176*bc421551SDag-Erling Smørgrav
4177*bc421551SDag-Erling Smørgrav
4178*bc421551SDag-Erling SmørgravRelease 2012j - 2012-11-12 18:34:49 -0800
4179*bc421551SDag-Erling Smørgrav
4180*bc421551SDag-Erling Smørgrav  Libya moved to CET this weekend, but with DST planned next year.
4181*bc421551SDag-Erling Smørgrav  (Thanks to Even Scharning, Steffen Thorsen, and Tim Parenti.)
4182*bc421551SDag-Erling Smørgrav
4183*bc421551SDag-Erling Smørgrav  Signatures now have the extension .asc, not .sign, as that's more
4184*bc421551SDag-Erling Smørgrav  standard.  (Thanks to Phil Pennock.)
4185*bc421551SDag-Erling Smørgrav
4186*bc421551SDag-Erling Smørgrav  The output of 'zdump --version', and of 'zic --version', now
4187*bc421551SDag-Erling Smørgrav  uses a format that is more typical for --version.
4188*bc421551SDag-Erling Smørgrav  (Thanks to Joseph S. Myers.)
4189*bc421551SDag-Erling Smørgrav
4190*bc421551SDag-Erling Smørgrav  The output of 'tzselect --help', 'zdump --help', and 'zic --help'
4191*bc421551SDag-Erling Smørgrav  now uses tz@iana.org rather than the old elsie address.
4192*bc421551SDag-Erling Smørgrav
4193*bc421551SDag-Erling Smørgrav  zic -v now complains about abbreviations that are less than 3
4194*bc421551SDag-Erling Smørgrav  or more than 6 characters, as per Posix.  Formerly, it checked
4195*bc421551SDag-Erling Smørgrav  for abbreviations that were more than 3.
4196*bc421551SDag-Erling Smørgrav
4197*bc421551SDag-Erling Smørgrav  'make public' no longer puts its temporary directory under /tmp,
4198*bc421551SDag-Erling Smørgrav  and uses the just-built zic rather than the system zic.
4199*bc421551SDag-Erling Smørgrav
4200*bc421551SDag-Erling Smørgrav  Various fixes to documentation and commentary.
4201*bc421551SDag-Erling Smørgrav
4202*bc421551SDag-Erling Smørgrav
4203*bc421551SDag-Erling SmørgravRelease 2012i - 2012-11-03 12:57:09 -0700
4204*bc421551SDag-Erling Smørgrav
4205*bc421551SDag-Erling Smørgrav  Cuba switches from DST tomorrow at 01:00.  (Thanks to Steffen Thorsen.)
4206*bc421551SDag-Erling Smørgrav
4207*bc421551SDag-Erling Smørgrav  Linker flags can now be specified via LDFLAGS.
4208*bc421551SDag-Erling Smørgrav  AWK now defaults to 'awk', not 'nawk'.
4209*bc421551SDag-Erling Smørgrav  The shell in tzselect now defaults to /bin/bash, but this can
4210*bc421551SDag-Erling Smørgrav  be overridden by specifying KSHELL.
4211*bc421551SDag-Erling Smørgrav  The main web page now mentions the unofficial GitHub repository.
4212*bc421551SDag-Erling Smørgrav  (Thanks to Mike Frysinger.)
4213*bc421551SDag-Erling Smørgrav
4214*bc421551SDag-Erling Smørgrav  Tarball signatures can now be built by running 'make signatures'.
4215*bc421551SDag-Erling Smørgrav  There are also new makefile rules 'tarballs', 'check_public', and
4216*bc421551SDag-Erling Smørgrav  separate makefile rules for each tarball and signature file.
4217*bc421551SDag-Erling Smørgrav  A few makefile rules are now more portable to strict POSIX.
4218*bc421551SDag-Erling Smørgrav
4219*bc421551SDag-Erling Smørgrav  The main web page now lists the canonical IANA URL.
4220*bc421551SDag-Erling Smørgrav
4221*bc421551SDag-Erling Smørgrav
4222*bc421551SDag-Erling SmørgravRelease 2012h - 2012-10-26 22:49:10 -0700
4223*bc421551SDag-Erling Smørgrav
4224*bc421551SDag-Erling Smørgrav  Bahia no longer has DST.  (Thanks to Kelley Cook.)
4225*bc421551SDag-Erling Smørgrav
4226*bc421551SDag-Erling Smørgrav  Tocantins has DST.  (Thanks to Rodrigo Severo.)
4227*bc421551SDag-Erling Smørgrav
4228*bc421551SDag-Erling Smørgrav  Israel has new DST rules next year.  (Thanks to Ephraim Silverberg.)
4229*bc421551SDag-Erling Smørgrav
4230*bc421551SDag-Erling Smørgrav  Jordan stays on DST this winter.  (Thanks to Steffen Thorsen.)
4231*bc421551SDag-Erling Smørgrav
4232*bc421551SDag-Erling Smørgrav  Web page updates.
4233*bc421551SDag-Erling Smørgrav
4234*bc421551SDag-Erling Smørgrav  More C modernization, except that at Arthur David Olson's suggestion
4235*bc421551SDag-Erling Smørgrav  the instances of 'register' were kept.
4236*bc421551SDag-Erling Smørgrav
4237*bc421551SDag-Erling Smørgrav
4238*bc421551SDag-Erling SmørgravRelease 2012g - 2012-10-17 20:59:45 -0700
4239*bc421551SDag-Erling Smørgrav
4240*bc421551SDag-Erling Smørgrav  Samoa fall 2012 and later.  (Thanks to Nicholas Pereira and Robert Elz.)
4241*bc421551SDag-Erling Smørgrav
4242*bc421551SDag-Erling Smørgrav  Palestine fall 2012.  (Thanks to Steffen Thorsen.)
4243*bc421551SDag-Erling Smørgrav
4244*bc421551SDag-Erling Smørgrav  Assume C89.
4245*bc421551SDag-Erling Smørgrav
4246*bc421551SDag-Erling Smørgrav  To attack the version-number problem, this release ships the file
4247*bc421551SDag-Erling Smørgrav  'Makefile' (which contains the release number) in both the tzcode and
4248*bc421551SDag-Erling Smørgrav  the tzdata tarballs.  The two Makefiles are identical, and should be
4249*bc421551SDag-Erling Smørgrav  identical in any matching pair of tarballs, so it shouldn't matter
4250*bc421551SDag-Erling Smørgrav  which order you extract the tarballs.  Perhaps we can come up with a
4251*bc421551SDag-Erling Smørgrav  better version-number scheme at some point; this scheme does have the
4252*bc421551SDag-Erling Smørgrav  virtue of not adding more files.
4253*bc421551SDag-Erling Smørgrav
4254*bc421551SDag-Erling Smørgrav
4255*bc421551SDag-Erling SmørgravRelease 2012f - 2012-09-12 23:17:03 -0700
4256*bc421551SDag-Erling Smørgrav
4257*bc421551SDag-Erling Smørgrav  * australasia (Pacific/Fiji): Fiji DST is October 21 through January
4258*bc421551SDag-Erling Smørgrav    20 this year.  (Thanks to Steffen Thorsen.)
4259*bc421551SDag-Erling Smørgrav
4260*bc421551SDag-Erling Smørgrav
4261*bc421551SDag-Erling SmørgravRelease 2012e - 2012-08-02 20:44:55 -0700
4262*bc421551SDag-Erling Smørgrav
4263*bc421551SDag-Erling Smørgrav  * australasia (Pacific/Fakaofo): Tokelau is UT +13, not +14.
4264*bc421551SDag-Erling Smørgrav    (Thanks to Steffen Thorsen.)
4265*bc421551SDag-Erling Smørgrav
4266*bc421551SDag-Erling Smørgrav  * Use a single version number for both code and data.
4267*bc421551SDag-Erling Smørgrav
4268*bc421551SDag-Erling Smørgrav  * .gitignore: New file.
4269*bc421551SDag-Erling Smørgrav
4270*bc421551SDag-Erling Smørgrav  * Remove trailing white space.
4271*bc421551SDag-Erling Smørgrav
4272*bc421551SDag-Erling Smørgrav
4273*bc421551SDag-Erling SmørgravRelease code2012c-data2012d - 2012-07-19 16:35:33 -0700
4274*bc421551SDag-Erling Smørgrav
4275*bc421551SDag-Erling Smørgrav  Changes for Morocco's timestamps, which take effect in a couple of
4276*bc421551SDag-Erling Smørgrav  hours, along with infrastructure changes to accommodate how the tz
4277*bc421551SDag-Erling Smørgrav  code and data are released on IANA.
4278*bc421551SDag-Erling Smørgrav
4279*bc421551SDag-Erling Smørgrav
4280*bc421551SDag-Erling SmørgravRelease data2012c - 2012-03-27 12:17:25 -0400
4281*bc421551SDag-Erling Smørgrav
4282*bc421551SDag-Erling Smørgrav  africa
4283*bc421551SDag-Erling Smørgrav	Summer time changes for Morocco (to start late April 2012)
4284*bc421551SDag-Erling Smørgrav
4285*bc421551SDag-Erling Smørgrav  asia
4286*bc421551SDag-Erling Smørgrav	Changes for 2012 for Gaza & the West Bank (Hebron) and Syria
4287*bc421551SDag-Erling Smørgrav
4288*bc421551SDag-Erling Smørgrav  northamerica
4289*bc421551SDag-Erling Smørgrav	Haiti following US/Canada rules for 2012 (and we're assuming,
4290*bc421551SDag-Erling Smørgrav	for now anyway, for the future).
4291*bc421551SDag-Erling Smørgrav
4292*bc421551SDag-Erling Smørgrav
4293*bc421551SDag-Erling SmørgravRelease 2012b - 2012-03-02 12:29:15 +0700
4294*bc421551SDag-Erling Smørgrav
4295*bc421551SDag-Erling Smørgrav  There is just one change to tzcode2012b (compared with 2012a):
4296*bc421551SDag-Erling Smørgrav  the Makefile that was accidentally included with 2012a has been
4297*bc421551SDag-Erling Smørgrav  replaced with the version that should have been there, which is
4298*bc421551SDag-Erling Smørgrav  identical with the previous version (from tzcode2011i).
4299*bc421551SDag-Erling Smørgrav
4300*bc421551SDag-Erling Smørgrav  There are just two changes in tzdata2012b compared with 2012a.
4301*bc421551SDag-Erling Smørgrav
4302*bc421551SDag-Erling Smørgrav  Most significantly, summer time in Cuba has been delayed 3 weeks
4303*bc421551SDag-Erling Smørgrav  (now starts April 1 rather than March 11).   Since Mar 11 (the old start
4304*bc421551SDag-Erling Smørgrav  date, as listed in 2012a) is just a little over a week away, this
4305*bc421551SDag-Erling Smørgrav  change is urgent.
4306*bc421551SDag-Erling Smørgrav
4307*bc421551SDag-Erling Smørgrav  Less importantly, an excess tab in one of the changes in zone.tab
4308*bc421551SDag-Erling Smørgrav  in 2012a has been removed.
4309*bc421551SDag-Erling Smørgrav
4310*bc421551SDag-Erling Smørgrav
4311*bc421551SDag-Erling SmørgravRelease 2012a - 2012-03-01 18:28:10 +0700
4312*bc421551SDag-Erling Smørgrav
4313*bc421551SDag-Erling Smørgrav  The changes in tzcode2012a (compared to the previous version, 2011i)
4314*bc421551SDag-Erling Smørgrav  are entirely to the README and tz-art.htm and tz-link.htm files, if
4315*bc421551SDag-Erling Smørgrav  none of those concern you, you can ignore the code update.  The changes
4316*bc421551SDag-Erling Smørgrav  reflect the changed addresses for the mailing list and the code and
4317*bc421551SDag-Erling Smørgrav  data distribution points & methods (and a link to DateTime::TimeZone::Tzfile
4318*bc421551SDag-Erling Smørgrav  has been added to tz-link.htm).
4319*bc421551SDag-Erling Smørgrav
4320*bc421551SDag-Erling Smørgrav  In tzdata2012a (compared to the previous release, which was 2011n)
4321*bc421551SDag-Erling Smørgrav  the major changes are:
4322*bc421551SDag-Erling Smørgrav	Chile 2011/2012 and 2012/2013 summer time date adjustments.
4323*bc421551SDag-Erling Smørgrav	Falkland Islands onto permanent summer time (we're assuming for the
4324*bc421551SDag-Erling Smørgrav		foreseeable future, though 2012 is all we're fairly certain of.)
4325*bc421551SDag-Erling Smørgrav	Armenia has abolished Summer Time.
4326*bc421551SDag-Erling Smørgrav	Tokelau jumped the International Date Line back last December
4327*bc421551SDag-Erling Smørgrav		(just the same as their near neighbour, Samoa).
4328*bc421551SDag-Erling Smørgrav	America/Creston is a new zone for a small area of British Columbia
4329*bc421551SDag-Erling Smørgrav	There will be a leapsecond 2012-06-30 23:59:60 UTC.
4330*bc421551SDag-Erling Smørgrav
4331*bc421551SDag-Erling Smørgrav  Other minor changes are:
4332*bc421551SDag-Erling Smørgrav	Corrections to 1918 Canadian summer time end dates.
4333*bc421551SDag-Erling Smørgrav	Updated URL for UK time zone history (in comments)
4334*bc421551SDag-Erling Smørgrav	A few typos in Le Corre's list of free French place names (comments)
4335*bc421551SDag-Erling Smørgrav
4336*bc421551SDag-Erling Smørgrav
4337*bc421551SDag-Erling SmørgravRelease data2011n - 2011-10-30 14:57:54 +0700
4338*bc421551SDag-Erling Smørgrav
4339*bc421551SDag-Erling Smørgrav  There are three changes of note - most urgently, Cuba (America/Havana)
4340*bc421551SDag-Erling Smørgrav  has extended summer time by two weeks, now to end on Nov 13, rather than
4341*bc421551SDag-Erling Smørgrav  the (already past) Oct 30.   Second, the Pridnestrovian Moldavian Republic
4342*bc421551SDag-Erling Smørgrav  (Europe/Tiraspol) decided not to split from the rest of Moldova after
4343*bc421551SDag-Erling Smørgrav  all, and consequently that zone has been removed (again) and reinstated
4344*bc421551SDag-Erling Smørgrav  in the "backward" file as a link to Europe/Chisinau.   And third, the
4345*bc421551SDag-Erling Smørgrav  end date for Fiji's summer time this summer was moved forward from the
4346*bc421551SDag-Erling Smørgrav  earlier planned Feb 26, to Jan 22.
4347*bc421551SDag-Erling Smørgrav
4348*bc421551SDag-Erling Smørgrav  Apart from that, Moldova (MD) returns to a single entry in zone.tab
4349*bc421551SDag-Erling Smørgrav  (and the incorrect syntax that was in the 2011m version of that file
4350*bc421551SDag-Erling Smørgrav  is so fixed - it would have been fixed in a different way had this
4351*bc421551SDag-Erling Smørgrav  change not happened - that's the "missing" sccs version id).
4352*bc421551SDag-Erling Smørgrav
4353*bc421551SDag-Erling Smørgrav
4354*bc421551SDag-Erling SmørgravRelease data2011m - 2011-10-24 21:42:16 +0700
4355*bc421551SDag-Erling Smørgrav
4356*bc421551SDag-Erling Smørgrav  In particular, the typos in comments in the data (2011-11-17 should have
4357*bc421551SDag-Erling Smørgrav  been 2011-10-17 as Alan Barrett noted, and spelling of Tiraspol that
4358*bc421551SDag-Erling Smørgrav  Tim Parenti noted) have been fixed, and the change for Ukraine has been
4359*bc421551SDag-Erling Smørgrav  made in all 4 Ukrainian zones, rather than just Kiev (again, thanks to
4360*bc421551SDag-Erling Smørgrav  Tim Parenti, and also Denys Gavrysh)
4361*bc421551SDag-Erling Smørgrav
4362*bc421551SDag-Erling Smørgrav  In addition, I added Europe/Tiraspol to zone.tab.
4363*bc421551SDag-Erling Smørgrav
4364*bc421551SDag-Erling Smørgrav  This time, all the files have new version numbers...  (including the files
4365*bc421551SDag-Erling Smørgrav  otherwise unchanged in 2011m that were changed in 2011l but didn't get new
4366*bc421551SDag-Erling Smørgrav  version numbers there...)
4367*bc421551SDag-Erling Smørgrav
4368*bc421551SDag-Erling Smørgrav
4369*bc421551SDag-Erling SmørgravRelease data2011l - 2011-10-10 11:15:43 +0700
4370*bc421551SDag-Erling Smørgrav
4371*bc421551SDag-Erling Smørgrav  There are just 2 changes that cause different generated tzdata files from
4372*bc421551SDag-Erling Smørgrav  zic, to Asia/Hebron and Pacific/Fiji - the possible change for Bahia, Brazil
4373*bc421551SDag-Erling Smørgrav  is included, but commented out.  Compared with the diff I sent out last week,
4374*bc421551SDag-Erling Smørgrav  this version also includes attributions for the sources for the changes
4375*bc421551SDag-Erling Smørgrav  (in much the same format as ado used, but the html tags have not been
4376*bc421551SDag-Erling Smørgrav  checked, verified, or used in any way at all, so if there are errors there,
4377*bc421551SDag-Erling Smørgrav  please let me know.)
4378*bc421551SDag-Erling Smørgrav
4379*bc421551SDag-Erling Smørgrav
4380*bc421551SDag-Erling SmørgravRelease data2011k - 2011-09-20 17:54:03 -0400
4381*bc421551SDag-Erling Smørgrav
4382*bc421551SDag-Erling Smørgrav  [not summarized]
4383*bc421551SDag-Erling Smørgrav
4384*bc421551SDag-Erling Smørgrav
4385*bc421551SDag-Erling SmørgravRelease data2011j - 2011-09-12 09:22:49 -0400
4386*bc421551SDag-Erling Smørgrav
4387*bc421551SDag-Erling Smørgrav  (contemporary changes for Samoa; past changes for Kenya, Uganda, and
4388*bc421551SDag-Erling Smørgrav  Tanzania); there are also two spelling corrections to comments in
4389*bc421551SDag-Erling Smørgrav  the australasia file (with thanks to Christos Zoulas).
4390*bc421551SDag-Erling Smørgrav
4391*bc421551SDag-Erling Smørgrav
4392*bc421551SDag-Erling SmørgravRelease 2011i - 2011-08-29 05:56:32 -0400
4393*bc421551SDag-Erling Smørgrav
4394*bc421551SDag-Erling Smørgrav  [not summarized]
4395*bc421551SDag-Erling Smørgrav
4396*bc421551SDag-Erling Smørgrav
4397*bc421551SDag-Erling SmørgravRelease data2011h - 2011-06-15 18:41:48 -0400
4398*bc421551SDag-Erling Smørgrav
4399*bc421551SDag-Erling Smørgrav  Russia and Curaçao changes
4400*bc421551SDag-Erling Smørgrav
4401*bc421551SDag-Erling Smørgrav
4402*bc421551SDag-Erling SmørgravRelease 2011g - 2011-04-25 09:07:22 -0400
4403*bc421551SDag-Erling Smørgrav
4404*bc421551SDag-Erling Smørgrav  update the rules for Egypt to reflect its abandonment of DST this year
4405*bc421551SDag-Erling Smørgrav
4406*bc421551SDag-Erling Smørgrav
4407*bc421551SDag-Erling SmørgravRelease 2011f - 2011-04-06 17:14:53 -0400
4408*bc421551SDag-Erling Smørgrav
4409*bc421551SDag-Erling Smørgrav  [not summarized]
4410*bc421551SDag-Erling Smørgrav
4411*bc421551SDag-Erling Smørgrav
4412*bc421551SDag-Erling SmørgravRelease 2011e - 2011-03-31 16:04:38 -0400
4413*bc421551SDag-Erling Smørgrav
4414*bc421551SDag-Erling Smørgrav  Morocco, Chile, and tz-link changes
4415*bc421551SDag-Erling Smørgrav
4416*bc421551SDag-Erling Smørgrav
4417*bc421551SDag-Erling SmørgravRelease 2011d - 2011-03-14 09:18:01 -0400
4418*bc421551SDag-Erling Smørgrav
4419*bc421551SDag-Erling Smørgrav  changes that impact present-day timestamps in Cuba, Samoa, and Turkey
4420*bc421551SDag-Erling Smørgrav
4421*bc421551SDag-Erling Smørgrav
4422*bc421551SDag-Erling SmørgravRelease 2011c - 2011-03-07 09:30:09 -0500
4423*bc421551SDag-Erling Smørgrav
4424*bc421551SDag-Erling Smørgrav  These do affect current timestamps in Chile and Annette Island, Canada.
4425*bc421551SDag-Erling Smørgrav
4426*bc421551SDag-Erling Smørgrav
4427*bc421551SDag-Erling SmørgravRelease 2011b - 2011-02-07 08:44:50 -0500
4428*bc421551SDag-Erling Smørgrav
4429*bc421551SDag-Erling Smørgrav  [not summarized]
4430*bc421551SDag-Erling Smørgrav
4431*bc421551SDag-Erling Smørgrav
4432*bc421551SDag-Erling SmørgravRelease 2011a - 2011-01-24 10:30:16 -0500
4433*bc421551SDag-Erling Smørgrav
4434*bc421551SDag-Erling Smørgrav  [not summarized]
4435*bc421551SDag-Erling Smørgrav
4436*bc421551SDag-Erling Smørgrav
4437*bc421551SDag-Erling SmørgravRelease data2010o - 2010-11-01 09:18:23 -0400
4438*bc421551SDag-Erling Smørgrav
4439*bc421551SDag-Erling Smørgrav  change to the end of DST in Fiji in 2011
4440*bc421551SDag-Erling Smørgrav
4441*bc421551SDag-Erling Smørgrav
4442*bc421551SDag-Erling SmørgravRelease 2010n - 2010-10-25 08:19:17 -0400
4443*bc421551SDag-Erling Smørgrav
4444*bc421551SDag-Erling Smørgrav  [not summarized]
4445*bc421551SDag-Erling Smørgrav
4446*bc421551SDag-Erling Smørgrav
4447*bc421551SDag-Erling SmørgravRelease 2010m - 2010-09-27 09:24:48 -0400
4448*bc421551SDag-Erling Smørgrav
4449*bc421551SDag-Erling Smørgrav  Hong Kong, Vostok, and zic.c changes
4450*bc421551SDag-Erling Smørgrav
4451*bc421551SDag-Erling Smørgrav
4452*bc421551SDag-Erling SmørgravRelease 2010l - 2010-08-16 06:57:25 -0400
4453*bc421551SDag-Erling Smørgrav
4454*bc421551SDag-Erling Smørgrav  [not summarized]
4455*bc421551SDag-Erling Smørgrav
4456*bc421551SDag-Erling Smørgrav
4457*bc421551SDag-Erling SmørgravRelease 2010k - 2010-07-26 10:42:27 -0400
4458*bc421551SDag-Erling Smørgrav
4459*bc421551SDag-Erling Smørgrav  [not summarized]
4460*bc421551SDag-Erling Smørgrav
4461*bc421551SDag-Erling Smørgrav
4462*bc421551SDag-Erling SmørgravRelease 2010j - 2010-05-10 09:07:48 -0400
4463*bc421551SDag-Erling Smørgrav
4464*bc421551SDag-Erling Smørgrav  changes for Bahía de Banderas and for version naming
4465*bc421551SDag-Erling Smørgrav
4466*bc421551SDag-Erling Smørgrav
4467*bc421551SDag-Erling SmørgravRelease data2010i - 2010-04-16 18:50:45 -0400
4468*bc421551SDag-Erling Smørgrav
4469*bc421551SDag-Erling Smørgrav  the end of DST in Morocco on 2010-08-08
4470*bc421551SDag-Erling Smørgrav
4471*bc421551SDag-Erling Smørgrav
4472*bc421551SDag-Erling SmørgravRelease data2010h - 2010-04-05 09:58:56 -0400
4473*bc421551SDag-Erling Smørgrav
4474*bc421551SDag-Erling Smørgrav  [not summarized]
4475*bc421551SDag-Erling Smørgrav
4476*bc421551SDag-Erling Smørgrav
4477*bc421551SDag-Erling SmørgravRelease data2010g - 2010-03-24 11:14:53 -0400
4478*bc421551SDag-Erling Smørgrav
4479*bc421551SDag-Erling Smørgrav  [not summarized]
4480*bc421551SDag-Erling Smørgrav
4481*bc421551SDag-Erling Smørgrav
4482*bc421551SDag-Erling SmørgravRelease 2010f - 2010-03-22 09:45:46 -0400
4483*bc421551SDag-Erling Smørgrav
4484*bc421551SDag-Erling Smørgrav  [not summarized]
4485*bc421551SDag-Erling Smørgrav
4486*bc421551SDag-Erling Smørgrav
4487*bc421551SDag-Erling SmørgravRelease data2010e - 2010-03-08 14:24:27 -0500
4488*bc421551SDag-Erling Smørgrav
4489*bc421551SDag-Erling Smørgrav  corrects the Dhaka bug found by Danvin Ruangchan
4490*bc421551SDag-Erling Smørgrav
4491*bc421551SDag-Erling Smørgrav
4492*bc421551SDag-Erling SmørgravRelease data2010d - 2010-03-06 07:26:01 -0500
4493*bc421551SDag-Erling Smørgrav
4494*bc421551SDag-Erling Smørgrav  [not summarized]
4495*bc421551SDag-Erling Smørgrav
4496*bc421551SDag-Erling Smørgrav
4497*bc421551SDag-Erling SmørgravRelease 2010c - 2010-03-01 09:20:58 -0500
4498*bc421551SDag-Erling Smørgrav
4499*bc421551SDag-Erling Smørgrav  changes including KRE's suggestion for earlier initialization of
4500*bc421551SDag-Erling Smørgrav  "goahead" and "goback" structure elements
4501*bc421551SDag-Erling Smørgrav
4502*bc421551SDag-Erling Smørgrav
4503*bc421551SDag-Erling SmørgravRelease code2010a - 2010-02-16 10:40:04 -0500
4504*bc421551SDag-Erling Smørgrav
4505*bc421551SDag-Erling Smørgrav  [not summarized]
4506*bc421551SDag-Erling Smørgrav
4507*bc421551SDag-Erling Smørgrav
4508*bc421551SDag-Erling SmørgravRelease data2010b - 2010-01-20 12:37:01 -0500
4509*bc421551SDag-Erling Smørgrav
4510*bc421551SDag-Erling Smørgrav  Mexico changes
4511*bc421551SDag-Erling Smørgrav
4512*bc421551SDag-Erling Smørgrav
4513*bc421551SDag-Erling SmørgravRelease data2010a - 2010-01-18 08:30:04 -0500
4514*bc421551SDag-Erling Smørgrav
4515*bc421551SDag-Erling Smørgrav  changes to Dhaka
4516*bc421551SDag-Erling Smørgrav
4517*bc421551SDag-Erling Smørgrav
4518*bc421551SDag-Erling SmørgravRelease data2009u - 2009-12-26 08:32:28 -0500
4519*bc421551SDag-Erling Smørgrav
4520*bc421551SDag-Erling Smørgrav  changes to DST in Bangladesh
4521*bc421551SDag-Erling Smørgrav
4522*bc421551SDag-Erling Smørgrav
4523*bc421551SDag-Erling SmørgravRelease 2009t - 2009-12-21 13:24:27 -0500
4524*bc421551SDag-Erling Smørgrav
4525*bc421551SDag-Erling Smørgrav  [not summarized]
4526*bc421551SDag-Erling Smørgrav
4527*bc421551SDag-Erling Smørgrav
4528*bc421551SDag-Erling SmørgravRelease data2009s - 2009-11-14 10:26:32 -0500
4529*bc421551SDag-Erling Smørgrav
4530*bc421551SDag-Erling Smørgrav  (cosmetic) Antarctica change and the DST-in-Fiji-in-2009-and-2010 change
4531*bc421551SDag-Erling Smørgrav
4532*bc421551SDag-Erling Smørgrav
4533*bc421551SDag-Erling SmørgravRelease 2009r - 2009-11-09 10:10:31 -0500
4534*bc421551SDag-Erling Smørgrav
4535*bc421551SDag-Erling Smørgrav  "antarctica" and "tz-link.htm" changes
4536*bc421551SDag-Erling Smørgrav
4537*bc421551SDag-Erling Smørgrav
4538*bc421551SDag-Erling SmørgravRelease 2009q - 2009-11-02 09:12:40 -0500
4539*bc421551SDag-Erling Smørgrav
4540*bc421551SDag-Erling Smørgrav  with two corrections as reported by Eric Muller and Philip Newton
4541*bc421551SDag-Erling Smørgrav
4542*bc421551SDag-Erling Smørgrav
4543*bc421551SDag-Erling SmørgravRelease data2009p - 2009-10-23 15:05:27 -0400
4544*bc421551SDag-Erling Smørgrav
4545*bc421551SDag-Erling Smørgrav  Argentina (including San Luis) changes (with the correction from
4546*bc421551SDag-Erling Smørgrav  Mariano Absatz)
4547*bc421551SDag-Erling Smørgrav
4548*bc421551SDag-Erling Smørgrav
4549*bc421551SDag-Erling SmørgravRelease data2009o - 2009-10-14 16:49:38 -0400
4550*bc421551SDag-Erling Smørgrav
4551*bc421551SDag-Erling Smørgrav  Samoa (commentary only), Pakistan, and Bangladesh changes
4552*bc421551SDag-Erling Smørgrav
4553*bc421551SDag-Erling Smørgrav
4554*bc421551SDag-Erling SmørgravRelease data2009n - 2009-09-22 15:13:38 -0400
4555*bc421551SDag-Erling Smørgrav
4556*bc421551SDag-Erling Smørgrav  added commentary for Argentina and a change to the end of DST in
4557*bc421551SDag-Erling Smørgrav  2009 in Pakistan
4558*bc421551SDag-Erling Smørgrav
4559*bc421551SDag-Erling Smørgrav
4560*bc421551SDag-Erling SmørgravRelease data2009m - 2009-09-03 10:23:43 -0400
4561*bc421551SDag-Erling Smørgrav
4562*bc421551SDag-Erling Smørgrav  Samoa and Palestine changes
4563*bc421551SDag-Erling Smørgrav
4564*bc421551SDag-Erling Smørgrav
4565*bc421551SDag-Erling SmørgravRelease data2009l - 2009-08-14 09:13:07 -0400
4566*bc421551SDag-Erling Smørgrav
4567*bc421551SDag-Erling Smørgrav  Samoa (comments only) and Egypt
4568*bc421551SDag-Erling Smørgrav
4569*bc421551SDag-Erling Smørgrav
4570*bc421551SDag-Erling SmørgravRelease 2009k - 2009-07-20 09:46:08 -0400
4571*bc421551SDag-Erling Smørgrav
4572*bc421551SDag-Erling Smørgrav  [not summarized]
4573*bc421551SDag-Erling Smørgrav
4574*bc421551SDag-Erling Smørgrav
4575*bc421551SDag-Erling SmørgravRelease data2009j - 2009-06-15 06:43:59 -0400
4576*bc421551SDag-Erling Smørgrav
4577*bc421551SDag-Erling Smørgrav  Bangladesh change (with a short turnaround since the DST change is
4578*bc421551SDag-Erling Smørgrav  impending)
4579*bc421551SDag-Erling Smørgrav
4580*bc421551SDag-Erling Smørgrav
4581*bc421551SDag-Erling SmørgravRelease 2009i - 2009-06-08 09:21:22 -0400
4582*bc421551SDag-Erling Smørgrav
4583*bc421551SDag-Erling Smørgrav  updating for DST in Bangladesh this year
4584*bc421551SDag-Erling Smørgrav
4585*bc421551SDag-Erling Smørgrav
4586*bc421551SDag-Erling SmørgravRelease 2009h - 2009-05-26 09:19:14 -0400
4587*bc421551SDag-Erling Smørgrav
4588*bc421551SDag-Erling Smørgrav  [not summarized]
4589*bc421551SDag-Erling Smørgrav
4590*bc421551SDag-Erling Smørgrav
4591*bc421551SDag-Erling SmørgravRelease data2009g - 2009-04-20 16:34:07 -0400
4592*bc421551SDag-Erling Smørgrav
4593*bc421551SDag-Erling Smørgrav  Cairo
4594*bc421551SDag-Erling Smørgrav
4595*bc421551SDag-Erling Smørgrav
4596*bc421551SDag-Erling SmørgravRelease data2009f - 2009-04-10 11:00:52 -0400
4597*bc421551SDag-Erling Smørgrav
4598*bc421551SDag-Erling Smørgrav  correct DST in Pakistan
4599*bc421551SDag-Erling Smørgrav
4600*bc421551SDag-Erling Smørgrav
4601*bc421551SDag-Erling SmørgravRelease 2009e - 2009-04-06 09:08:11 -0400
4602*bc421551SDag-Erling Smørgrav
4603*bc421551SDag-Erling Smørgrav  [not summarized]
4604*bc421551SDag-Erling Smørgrav
4605*bc421551SDag-Erling Smørgrav
4606*bc421551SDag-Erling SmørgravRelease 2009d - 2009-03-23 09:38:12 -0400
4607*bc421551SDag-Erling Smørgrav
4608*bc421551SDag-Erling Smørgrav  Morocco, Tunisia, Argentina, and American Astronomical Society changes
4609*bc421551SDag-Erling Smørgrav
4610*bc421551SDag-Erling Smørgrav
4611*bc421551SDag-Erling SmørgravRelease data2009c - 2009-03-16 09:47:51 -0400
4612*bc421551SDag-Erling Smørgrav
4613*bc421551SDag-Erling Smørgrav  change to the start of Cuban DST
4614*bc421551SDag-Erling Smørgrav
4615*bc421551SDag-Erling Smørgrav
4616*bc421551SDag-Erling SmørgravRelease 2009b - 2009-02-09 11:15:22 -0500
4617*bc421551SDag-Erling Smørgrav
4618*bc421551SDag-Erling Smørgrav  [not summarized]
4619*bc421551SDag-Erling Smørgrav
4620*bc421551SDag-Erling Smørgrav
4621*bc421551SDag-Erling SmørgravRelease 2009a - 2009-01-21 10:09:39 -0500
4622*bc421551SDag-Erling Smørgrav
4623*bc421551SDag-Erling Smørgrav  [not summarized]
4624*bc421551SDag-Erling Smørgrav
4625*bc421551SDag-Erling Smørgrav
4626*bc421551SDag-Erling SmørgravRelease data2008i - 2008-10-21 12:10:25 -0400
4627*bc421551SDag-Erling Smørgrav
4628*bc421551SDag-Erling Smørgrav  southamerica and zone.tab files, with Argentina DST rule changes and
4629*bc421551SDag-Erling Smørgrav  United States zone reordering and recommenting
4630*bc421551SDag-Erling Smørgrav
4631*bc421551SDag-Erling Smørgrav
4632*bc421551SDag-Erling SmørgravRelease 2008h - 2008-10-13 07:33:56 -0400
4633*bc421551SDag-Erling Smørgrav
4634*bc421551SDag-Erling Smørgrav  [not summarized]
4635*bc421551SDag-Erling Smørgrav
4636*bc421551SDag-Erling Smørgrav
4637*bc421551SDag-Erling SmørgravRelease 2008g - 2008-10-06 09:03:18 -0400
4638*bc421551SDag-Erling Smørgrav
4639*bc421551SDag-Erling Smørgrav  Fix a broken HTML anchor and update Brazil's DST transitions;
4640*bc421551SDag-Erling Smørgrav  there's also a slight reordering of information in tz-art.htm.
4641*bc421551SDag-Erling Smørgrav
4642*bc421551SDag-Erling Smørgrav
4643*bc421551SDag-Erling SmørgravRelease data2008f - 2008-09-09 22:33:26 -0400
4644*bc421551SDag-Erling Smørgrav
4645*bc421551SDag-Erling Smørgrav  [not summarized]
4646*bc421551SDag-Erling Smørgrav
4647*bc421551SDag-Erling Smørgrav
4648*bc421551SDag-Erling SmørgravRelease 2008e - 2008-07-28 14:11:17 -0400
4649*bc421551SDag-Erling Smørgrav
4650*bc421551SDag-Erling Smørgrav  changes by Arthur David Olson and Jesper Nørgaard Welen
4651*bc421551SDag-Erling Smørgrav
4652*bc421551SDag-Erling Smørgrav
4653*bc421551SDag-Erling SmørgravRelease data2008d - 2008-07-07 09:51:38 -0400
4654*bc421551SDag-Erling Smørgrav
4655*bc421551SDag-Erling Smørgrav  changes by Arthur David Olson, Paul Eggert, and Rodrigo Severo
4656*bc421551SDag-Erling Smørgrav
4657*bc421551SDag-Erling Smørgrav
4658*bc421551SDag-Erling SmørgravRelease data2008c - 2008-05-19 17:48:03 -0400
4659*bc421551SDag-Erling Smørgrav
4660*bc421551SDag-Erling Smørgrav  Pakistan, Morocco, and Mongolia
4661*bc421551SDag-Erling Smørgrav
4662*bc421551SDag-Erling Smørgrav
4663*bc421551SDag-Erling SmørgravRelease data2008b - 2008-03-24 08:30:59 -0400
4664*bc421551SDag-Erling Smørgrav
4665*bc421551SDag-Erling Smørgrav  including renaming Asia/Calcutta to Asia/Kolkata, with a backward
4666*bc421551SDag-Erling Smørgrav  link provided
4667*bc421551SDag-Erling Smørgrav
4668*bc421551SDag-Erling Smørgrav
4669*bc421551SDag-Erling SmørgravRelease 2008a - 2008-03-08 05:42:16 -0500
4670*bc421551SDag-Erling Smørgrav
4671*bc421551SDag-Erling Smørgrav  [not summarized]
4672*bc421551SDag-Erling Smørgrav
4673*bc421551SDag-Erling Smørgrav
4674*bc421551SDag-Erling SmørgravRelease 2007k - 2007-12-31 10:25:22 -0500
4675*bc421551SDag-Erling Smørgrav
4676*bc421551SDag-Erling Smørgrav  most importantly, changes to the "southamerica" file based on
4677*bc421551SDag-Erling Smørgrav  Argentina's readoption of daylight saving time
4678*bc421551SDag-Erling Smørgrav
4679*bc421551SDag-Erling Smørgrav
4680*bc421551SDag-Erling SmørgravRelease 2007j - 2007-12-03 09:51:01 -0500
4681*bc421551SDag-Erling Smørgrav
4682*bc421551SDag-Erling Smørgrav  1. eliminate the "P" (parameter) macro;
4683*bc421551SDag-Erling Smørgrav
4684*bc421551SDag-Erling Smørgrav  2. the "noncontroversial" changes circulated on the time zone
4685*bc421551SDag-Erling Smørgrav  mailing list (less the changes to "logwtmp.c");
4686*bc421551SDag-Erling Smørgrav
4687*bc421551SDag-Erling Smørgrav  3. eliminate "too many transition" errors when "min" is used in time
4688*bc421551SDag-Erling Smørgrav  zone rules;
4689*bc421551SDag-Erling Smørgrav
4690*bc421551SDag-Erling Smørgrav  4. changes by Paul Eggert (including updated information for Venezuela).
4691*bc421551SDag-Erling Smørgrav
4692*bc421551SDag-Erling Smørgrav
4693*bc421551SDag-Erling SmørgravRelease data2007i - 2007-10-30 10:28:11 -0400
4694*bc421551SDag-Erling Smørgrav
4695*bc421551SDag-Erling Smørgrav  changes for Cuba and Syria
4696*bc421551SDag-Erling Smørgrav
4697*bc421551SDag-Erling Smørgrav
4698*bc421551SDag-Erling SmørgravRelease 2007h - 2007-10-01 10:05:51 -0400
4699*bc421551SDag-Erling Smørgrav
4700*bc421551SDag-Erling Smørgrav  changes by Paul Eggert, as well as an updated link to the ICU
4701*bc421551SDag-Erling Smørgrav  project in tz-link.htm
4702*bc421551SDag-Erling Smørgrav
4703*bc421551SDag-Erling Smørgrav
4704*bc421551SDag-Erling SmørgravRelease 2007g - 2007-08-20 10:47:59 -0400
4705*bc421551SDag-Erling Smørgrav
4706*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
4707*bc421551SDag-Erling Smørgrav
4708*bc421551SDag-Erling Smørgrav  The "leapseconds" file has been updated to incorporate the most
4709*bc421551SDag-Erling Smørgrav  recent International Earth Rotation and Reference Systems Service
4710*bc421551SDag-Erling Smørgrav  (IERS) bulletin.
4711*bc421551SDag-Erling Smørgrav
4712*bc421551SDag-Erling Smørgrav  There's an addition to tz-art.htm regarding the television show "Medium".
4713*bc421551SDag-Erling Smørgrav
4714*bc421551SDag-Erling Smørgrav
4715*bc421551SDag-Erling SmørgravRelease 2007f - 2007-05-07 10:46:46 -0400
4716*bc421551SDag-Erling Smørgrav
4717*bc421551SDag-Erling Smørgrav  changes by Paul Eggert (including Haiti, Turks and Caicos, and New
4718*bc421551SDag-Erling Smørgrav  Zealand)
4719*bc421551SDag-Erling Smørgrav
4720*bc421551SDag-Erling Smørgrav  changes to zic.c to allow hour values greater than 24 (along with
4721*bc421551SDag-Erling Smørgrav  Paul's improved time value overflow checking)
4722*bc421551SDag-Erling Smørgrav
4723*bc421551SDag-Erling Smørgrav
4724*bc421551SDag-Erling SmørgravRelease 2007e - 2007-04-02 10:11:52 -0400
4725*bc421551SDag-Erling Smørgrav
4726*bc421551SDag-Erling Smørgrav  Syria and Honduras changes by Paul Eggert
4727*bc421551SDag-Erling Smørgrav
4728*bc421551SDag-Erling Smørgrav  zic.c variable renaming changes by Arthur David Olson
4729*bc421551SDag-Erling Smørgrav
4730*bc421551SDag-Erling Smørgrav
4731*bc421551SDag-Erling SmørgravRelease 2007d - 2007-03-20 08:48:30 -0400
4732*bc421551SDag-Erling Smørgrav
4733*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
4734*bc421551SDag-Erling Smørgrav
4735*bc421551SDag-Erling Smørgrav  the elimination of white space at the ends of lines
4736*bc421551SDag-Erling Smørgrav
4737*bc421551SDag-Erling Smørgrav
4738*bc421551SDag-Erling SmørgravRelease 2007c - 2007-02-26 09:09:37 -0500
4739*bc421551SDag-Erling Smørgrav
4740*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
4741*bc421551SDag-Erling Smørgrav
4742*bc421551SDag-Erling Smørgrav
4743*bc421551SDag-Erling SmørgravRelease 2007b - 2007-02-12 09:34:20 -0500
4744*bc421551SDag-Erling Smørgrav
4745*bc421551SDag-Erling Smørgrav  Paul Eggert's proposed change to the quotation handling logic in zic.c.
4746*bc421551SDag-Erling Smørgrav
4747*bc421551SDag-Erling Smørgrav  changes to the commentary in "leapseconds" reflecting the IERS
4748*bc421551SDag-Erling Smørgrav  announcement that there is to be no positive leap second at the end
4749*bc421551SDag-Erling Smørgrav  of June 2007.
4750*bc421551SDag-Erling Smørgrav
4751*bc421551SDag-Erling Smørgrav
4752*bc421551SDag-Erling SmørgravRelease 2007a - 2007-01-08 12:28:29 -0500
4753*bc421551SDag-Erling Smørgrav
4754*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
4755*bc421551SDag-Erling Smørgrav
4756*bc421551SDag-Erling Smørgrav  Derick Rethans's Asmara change
4757*bc421551SDag-Erling Smørgrav
4758*bc421551SDag-Erling Smørgrav  Oscar van Vlijmen's Easter Island local mean time change
4759*bc421551SDag-Erling Smørgrav
4760*bc421551SDag-Erling Smørgrav  symbolic link changes
4761*bc421551SDag-Erling Smørgrav
4762*bc421551SDag-Erling Smørgrav
4763*bc421551SDag-Erling SmørgravRelease 2006p - 2006-11-27 08:54:27 -0500
4764*bc421551SDag-Erling Smørgrav
4765*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
4766*bc421551SDag-Erling Smørgrav
4767*bc421551SDag-Erling Smørgrav
4768*bc421551SDag-Erling SmørgravRelease 2006o - 2006-11-06 09:18:07 -0500
4769*bc421551SDag-Erling Smørgrav
4770*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
4771*bc421551SDag-Erling Smørgrav
4772*bc421551SDag-Erling Smørgrav
4773*bc421551SDag-Erling SmørgravRelease 2006n - 2006-10-10 11:32:06 -0400
4774*bc421551SDag-Erling Smørgrav
4775*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
4776*bc421551SDag-Erling Smørgrav
4777*bc421551SDag-Erling Smørgrav
4778*bc421551SDag-Erling SmørgravRelease 2006m - 2006-10-02 15:32:35 -0400
4779*bc421551SDag-Erling Smørgrav
4780*bc421551SDag-Erling Smørgrav  changes for Uruguay, Palestine, and Egypt by Paul Eggert
4781*bc421551SDag-Erling Smørgrav
4782*bc421551SDag-Erling Smørgrav  (minimalist) changes to zic.8 to clarify "until" information
4783*bc421551SDag-Erling Smørgrav
4784*bc421551SDag-Erling Smørgrav
4785*bc421551SDag-Erling SmørgravRelease data2006l - 2006-09-18 12:58:11 -0400
4786*bc421551SDag-Erling Smørgrav
4787*bc421551SDag-Erling Smørgrav  Paul's best-effort work on this coming weekend's Egypt time change
4788*bc421551SDag-Erling Smørgrav
4789*bc421551SDag-Erling Smørgrav
4790*bc421551SDag-Erling SmørgravRelease 2006k - 2006-08-28 12:19:09 -0400
4791*bc421551SDag-Erling Smørgrav
4792*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
4793*bc421551SDag-Erling Smørgrav
4794*bc421551SDag-Erling Smørgrav
4795*bc421551SDag-Erling SmørgravRelease 2006j - 2006-08-21 09:56:32 -0400
4796*bc421551SDag-Erling Smørgrav
4797*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
4798*bc421551SDag-Erling Smørgrav
4799*bc421551SDag-Erling Smørgrav
4800*bc421551SDag-Erling SmørgravRelease code2006i - 2006-08-07 12:30:55 -0400
4801*bc421551SDag-Erling Smørgrav
4802*bc421551SDag-Erling Smørgrav  localtime.c fixes
4803*bc421551SDag-Erling Smørgrav
4804*bc421551SDag-Erling Smørgrav  Ken Pizzini's conversion script
4805*bc421551SDag-Erling Smørgrav
4806*bc421551SDag-Erling Smørgrav
4807*bc421551SDag-Erling SmørgravRelease code2006h - 2006-07-24 09:19:37 -0400
4808*bc421551SDag-Erling Smørgrav
4809*bc421551SDag-Erling Smørgrav  adds public domain notices to four files
4810*bc421551SDag-Erling Smørgrav
4811*bc421551SDag-Erling Smørgrav  includes a fix for transition times being off by a second
4812*bc421551SDag-Erling Smørgrav
4813*bc421551SDag-Erling Smørgrav  adds a new recording to the "arts" file (information courtesy Colin Bowern)
4814*bc421551SDag-Erling Smørgrav
4815*bc421551SDag-Erling Smørgrav
4816*bc421551SDag-Erling SmørgravRelease 2006g - 2006-05-08 17:18:09 -0400
4817*bc421551SDag-Erling Smørgrav
4818*bc421551SDag-Erling Smørgrav  northamerica changes by Paul Eggert
4819*bc421551SDag-Erling Smørgrav
4820*bc421551SDag-Erling Smørgrav
4821*bc421551SDag-Erling SmørgravRelease 2006f - 2006-05-01 11:46:00 -0400
4822*bc421551SDag-Erling Smørgrav
4823*bc421551SDag-Erling Smørgrav  a missing version number problem is fixed (with thanks to Bradley
4824*bc421551SDag-Erling Smørgrav  White for catching the problem)
4825*bc421551SDag-Erling Smørgrav
4826*bc421551SDag-Erling Smørgrav
4827*bc421551SDag-Erling SmørgravRelease 2006d - 2006-04-17 14:33:43 -0400
4828*bc421551SDag-Erling Smørgrav
4829*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
4830*bc421551SDag-Erling Smørgrav
4831*bc421551SDag-Erling Smørgrav  added new items to tz-arts.htm that were found by Paul
4832*bc421551SDag-Erling Smørgrav
4833*bc421551SDag-Erling Smørgrav
4834*bc421551SDag-Erling SmørgravRelease 2006c - 2006-04-03 10:09:32 -0400
4835*bc421551SDag-Erling Smørgrav
4836*bc421551SDag-Erling Smørgrav  two sets of data changes by Paul Eggert
4837*bc421551SDag-Erling Smørgrav
4838*bc421551SDag-Erling Smørgrav  a fencepost error fix in zic.c
4839*bc421551SDag-Erling Smørgrav
4840*bc421551SDag-Erling Smørgrav  changes to zic.c and the "europe" file to minimize differences
4841*bc421551SDag-Erling Smørgrav  between output produced by the old 32-bit zic and the new 64-bit
4842*bc421551SDag-Erling Smørgrav  version
4843*bc421551SDag-Erling Smørgrav
4844*bc421551SDag-Erling Smørgrav
4845*bc421551SDag-Erling SmørgravRelease 2006b - 2006-02-20 10:08:18 -0500
4846*bc421551SDag-Erling Smørgrav  [tz32code2006b + tz64code2006b + tzdata2006b]
4847*bc421551SDag-Erling Smørgrav
4848*bc421551SDag-Erling Smørgrav  64-bit code
4849*bc421551SDag-Erling Smørgrav
4850*bc421551SDag-Erling Smørgrav  All SCCS IDs were bumped to "8.1" for this release.
4851*bc421551SDag-Erling Smørgrav
4852*bc421551SDag-Erling Smørgrav
4853*bc421551SDag-Erling SmørgravRelease 2006a - 2006-01-30 08:59:31 -0500
4854*bc421551SDag-Erling Smørgrav
4855*bc421551SDag-Erling Smørgrav  changes by Paul Eggert (in particular, Indiana time zone moves)
4856*bc421551SDag-Erling Smørgrav
4857*bc421551SDag-Erling Smørgrav  an addition to the zic manual page to describe how special-case
4858*bc421551SDag-Erling Smørgrav  transitions are handled
4859*bc421551SDag-Erling Smørgrav
4860*bc421551SDag-Erling Smørgrav
4861*bc421551SDag-Erling SmørgravRelease 2005r - 2005-12-27 09:27:13 -0500
4862*bc421551SDag-Erling Smørgrav
4863*bc421551SDag-Erling Smørgrav  Canadian changes by Paul Eggert
4864*bc421551SDag-Erling Smørgrav
4865*bc421551SDag-Erling Smørgrav  They also add "<pre>" directives to time zone data files and reflect
4866*bc421551SDag-Erling Smørgrav  changes to warning message logic in "zdump.c" (but with calls to
4867*bc421551SDag-Erling Smørgrav  "gettext" kept unbundled at the suggestion of Ken Pizzini).
4868*bc421551SDag-Erling Smørgrav
4869*bc421551SDag-Erling Smørgrav
4870*bc421551SDag-Erling SmørgravRelease 2005q - 2005-12-13 09:17:09 -0500
4871*bc421551SDag-Erling Smørgrav
4872*bc421551SDag-Erling Smørgrav  Nothing earth-shaking here:
4873*bc421551SDag-Erling Smørgrav	1.  Electronic mail addresses have been removed.
4874*bc421551SDag-Erling Smørgrav	2.  Casts of the return value of exit have been removed.
4875*bc421551SDag-Erling Smørgrav	3.  Casts of the argument of is.* macros have been added.
4876*bc421551SDag-Erling Smørgrav	4.  Indentation in one section of zic.c has been fixed.
4877*bc421551SDag-Erling Smørgrav	5.  References to dead URLs in the data files have been dealt with.
4878*bc421551SDag-Erling Smørgrav
4879*bc421551SDag-Erling Smørgrav
4880*bc421551SDag-Erling SmørgravRelease 2005p - 2005-12-05 10:30:53 -0500
4881*bc421551SDag-Erling Smørgrav
4882*bc421551SDag-Erling Smørgrav  "systemv", "tz-link.htm", and "zdump.c" changes
4883*bc421551SDag-Erling Smørgrav  (less the casts of arguments to the is* macros)
4884*bc421551SDag-Erling Smørgrav
4885*bc421551SDag-Erling Smørgrav
4886*bc421551SDag-Erling SmørgravRelease 2005o - 2005-11-28 10:55:26 -0500
4887*bc421551SDag-Erling Smørgrav
4888*bc421551SDag-Erling Smørgrav  Georgia, Cuba, Nicaragua, and Jordan changes by Paul Eggert
4889*bc421551SDag-Erling Smørgrav
4890*bc421551SDag-Erling Smørgrav  zdump.c lint fixes by Arthur David Olson
4891*bc421551SDag-Erling Smørgrav
4892*bc421551SDag-Erling Smørgrav
4893*bc421551SDag-Erling SmørgravRelease 2005n - 2005-10-03 09:44:09 -0400
4894*bc421551SDag-Erling Smørgrav
4895*bc421551SDag-Erling Smørgrav  changes by Paul Eggert (both the Uruguay changes and the Kyrgyzstan
4896*bc421551SDag-Erling Smørgrav  et al. changes)
4897*bc421551SDag-Erling Smørgrav
4898*bc421551SDag-Erling Smørgrav
4899*bc421551SDag-Erling SmørgravRelease 2005m - 2005-08-29 12:15:40 -0400
4900*bc421551SDag-Erling Smørgrav
4901*bc421551SDag-Erling Smørgrav  changes by Paul Eggert (with a small tweak to the tz-art change)
4902*bc421551SDag-Erling Smørgrav
4903*bc421551SDag-Erling Smørgrav  a declaration of an unused variable has been removed from zdump.c
4904*bc421551SDag-Erling Smørgrav
4905*bc421551SDag-Erling Smørgrav
4906*bc421551SDag-Erling SmørgravRelease 2005l - 2005-08-22 12:06:39 -0400
4907*bc421551SDag-Erling Smørgrav
4908*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
4909*bc421551SDag-Erling Smørgrav
4910*bc421551SDag-Erling Smørgrav  overflow/underflow checks by Arthur David Olson, minus changes to
4911*bc421551SDag-Erling Smørgrav  the "Theory" file about the pending addition of 64-bit data (I grow
4912*bc421551SDag-Erling Smørgrav  less confident of the changes being accepted with each passing day,
4913*bc421551SDag-Erling Smørgrav  and the changes no longer increase the data files nine-fold--there's
4914*bc421551SDag-Erling Smørgrav  less than a doubling in size by my local Sun's reckoning)
4915*bc421551SDag-Erling Smørgrav
4916*bc421551SDag-Erling Smørgrav
4917*bc421551SDag-Erling SmørgravRelease 2005k - 2005-07-14 14:14:24 -0400
4918*bc421551SDag-Erling Smørgrav
4919*bc421551SDag-Erling Smørgrav  The "leapseconds" file has been edited to reflect the recently
4920*bc421551SDag-Erling Smørgrav  announced leap second at the end of 2005.
4921*bc421551SDag-Erling Smørgrav
4922*bc421551SDag-Erling Smørgrav  I've also deleted electronic mail addresses from the files as an
4923*bc421551SDag-Erling Smørgrav  anti-spam measure.
4924*bc421551SDag-Erling Smørgrav
4925*bc421551SDag-Erling Smørgrav
4926*bc421551SDag-Erling SmørgravRelease 2005j - 2005-06-13 14:34:13 -0400
4927*bc421551SDag-Erling Smørgrav
4928*bc421551SDag-Erling Smørgrav  These reflect changes to limit the length of time zone abbreviations
4929*bc421551SDag-Erling Smørgrav  and the characters used in those abbreviations.
4930*bc421551SDag-Erling Smørgrav
4931*bc421551SDag-Erling Smørgrav  There are also changes to handle POSIX-style "quoted" timezone
4932*bc421551SDag-Erling Smørgrav  environment variables.
4933*bc421551SDag-Erling Smørgrav
4934*bc421551SDag-Erling Smørgrav  The changes were circulated on the time zone mailing list; the only
4935*bc421551SDag-Erling Smørgrav  change since then was the removal of a couple of minimum-length of
4936*bc421551SDag-Erling Smørgrav  abbreviation checks.
4937*bc421551SDag-Erling Smørgrav
4938*bc421551SDag-Erling Smørgrav
4939*bc421551SDag-Erling SmørgravRelease data2005i - 2005-04-21 15:04:16 -0400
4940*bc421551SDag-Erling Smørgrav
4941*bc421551SDag-Erling Smørgrav  changes (most importantly to Nicaragua and Haiti) by Paul Eggert
4942*bc421551SDag-Erling Smørgrav
4943*bc421551SDag-Erling Smørgrav
4944*bc421551SDag-Erling SmørgravRelease 2005h - 2005-04-04 11:24:47 -0400
4945*bc421551SDag-Erling Smørgrav
4946*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
4947*bc421551SDag-Erling Smørgrav
4948*bc421551SDag-Erling Smørgrav  minor changes to Makefile and zdump.c to produce more useful output
4949*bc421551SDag-Erling Smørgrav  when doing a "make typecheck"
4950*bc421551SDag-Erling Smørgrav
4951*bc421551SDag-Erling Smørgrav
4952*bc421551SDag-Erling SmørgravRelease 2005g - 2005-03-14 10:11:21 -0500
4953*bc421551SDag-Erling Smørgrav
4954*bc421551SDag-Erling Smørgrav  changes by Paul Eggert (a change to current DST rules in Uruguay and
4955*bc421551SDag-Erling Smørgrav  an update to a link to time zone software)
4956*bc421551SDag-Erling Smørgrav
4957*bc421551SDag-Erling Smørgrav
4958*bc421551SDag-Erling SmørgravRelease 2005f - 2005-03-01 08:45:32 -0500
4959*bc421551SDag-Erling Smørgrav
4960*bc421551SDag-Erling Smørgrav  data and documentation changes by Paul Eggert
4961*bc421551SDag-Erling Smørgrav
4962*bc421551SDag-Erling Smørgrav
4963*bc421551SDag-Erling SmørgravRelease 2005e - 2005-02-10 15:59:44 -0500
4964*bc421551SDag-Erling Smørgrav
4965*bc421551SDag-Erling Smørgrav  [not summarized]
4966*bc421551SDag-Erling Smørgrav
4967*bc421551SDag-Erling Smørgrav
4968*bc421551SDag-Erling SmørgravRelease code2005d - 2005-01-31 09:21:47 -0500
4969*bc421551SDag-Erling Smørgrav
4970*bc421551SDag-Erling Smørgrav  make zic complain about links to links if the -v flag is used
4971*bc421551SDag-Erling Smørgrav
4972*bc421551SDag-Erling Smørgrav  have "make public" do more code checking
4973*bc421551SDag-Erling Smørgrav
4974*bc421551SDag-Erling Smørgrav  add an include to "localtime.c" for the benefit of gcc systems
4975*bc421551SDag-Erling Smørgrav
4976*bc421551SDag-Erling Smørgrav
4977*bc421551SDag-Erling SmørgravRelease 2005c - 2005-01-17 18:36:29 -0500
4978*bc421551SDag-Erling Smørgrav
4979*bc421551SDag-Erling Smørgrav  get better results when mktime runs on a system where time_t is double
4980*bc421551SDag-Erling Smørgrav
4981*bc421551SDag-Erling Smørgrav  changes to the data files (most importantly to Paraguay)
4982*bc421551SDag-Erling Smørgrav
4983*bc421551SDag-Erling Smørgrav
4984*bc421551SDag-Erling SmørgravRelease 2005b - 2005-01-10 09:19:54 -0500
4985*bc421551SDag-Erling Smørgrav
4986*bc421551SDag-Erling Smørgrav  Get localtime and gmtime working on systems with exotic time_t types.
4987*bc421551SDag-Erling Smørgrav
4988*bc421551SDag-Erling Smørgrav  Update the leap second commentary in the "leapseconds" file.
4989*bc421551SDag-Erling Smørgrav
4990*bc421551SDag-Erling Smørgrav
4991*bc421551SDag-Erling SmørgravRelease 2005a - 2005-01-01 13:13:44 -0500
4992*bc421551SDag-Erling Smørgrav
4993*bc421551SDag-Erling Smørgrav  [not summarized]
4994*bc421551SDag-Erling Smørgrav
4995*bc421551SDag-Erling Smørgrav
4996*bc421551SDag-Erling SmørgravRelease code2004i - 2004-12-14 13:42:58 -0500
4997*bc421551SDag-Erling Smørgrav
4998*bc421551SDag-Erling Smørgrav  Deal with systems where time_t is unsigned.
4999*bc421551SDag-Erling Smørgrav
5000*bc421551SDag-Erling Smørgrav
5001*bc421551SDag-Erling SmørgravRelease code2004h - 2004-12-07 11:40:18 -0500
5002*bc421551SDag-Erling Smørgrav
5003*bc421551SDag-Erling Smørgrav  64-bit-time_t changes
5004*bc421551SDag-Erling Smørgrav
5005*bc421551SDag-Erling Smørgrav
5006*bc421551SDag-Erling SmørgravRelease 2004g - 2004-11-02 09:06:01 -0500
5007*bc421551SDag-Erling Smørgrav
5008*bc421551SDag-Erling Smørgrav  update to Cuba (taking effect this weekend)
5009*bc421551SDag-Erling Smørgrav
5010*bc421551SDag-Erling Smørgrav  other changes by Paul Eggert
5011*bc421551SDag-Erling Smørgrav
5012*bc421551SDag-Erling Smørgrav  correction of the spelling of Oslo
5013*bc421551SDag-Erling Smørgrav
5014*bc421551SDag-Erling Smørgrav  changed versions of difftime.c and private.h
5015*bc421551SDag-Erling Smørgrav
5016*bc421551SDag-Erling Smørgrav
5017*bc421551SDag-Erling SmørgravRelease code2004f - 2004-10-21 10:25:22 -0400
5018*bc421551SDag-Erling Smørgrav
5019*bc421551SDag-Erling Smørgrav  Cope with wide-ranging tm_year values.
5020*bc421551SDag-Erling Smørgrav
5021*bc421551SDag-Erling Smørgrav
5022*bc421551SDag-Erling SmørgravRelease 2004e - 2004-10-11 14:47:21 -0400
5023*bc421551SDag-Erling Smørgrav
5024*bc421551SDag-Erling Smørgrav  Brazil/Argentina/Israel changes by Paul Eggert
5025*bc421551SDag-Erling Smørgrav
5026*bc421551SDag-Erling Smørgrav  changes to tz-link.htm by Paul
5027*bc421551SDag-Erling Smørgrav
5028*bc421551SDag-Erling Smørgrav  one small fix to Makefile
5029*bc421551SDag-Erling Smørgrav
5030*bc421551SDag-Erling Smørgrav
5031*bc421551SDag-Erling SmørgravRelease 2004d - 2004-09-22 08:27:29 -0400
5032*bc421551SDag-Erling Smørgrav
5033*bc421551SDag-Erling Smørgrav  Avoid overflow problems when TM_YEAR_BASE is added to an integer.
5034*bc421551SDag-Erling Smørgrav
5035*bc421551SDag-Erling Smørgrav
5036*bc421551SDag-Erling SmørgravRelease 2004c - 2004-08-11 12:06:26 -0400
5037*bc421551SDag-Erling Smørgrav
5038*bc421551SDag-Erling Smørgrav  asctime-related changes
5039*bc421551SDag-Erling Smørgrav
5040*bc421551SDag-Erling Smørgrav  (variants of) some of the documentation changes suggested by Paul Eggert
5041*bc421551SDag-Erling Smørgrav
5042*bc421551SDag-Erling Smørgrav
5043*bc421551SDag-Erling SmørgravRelease 2004b - 2004-07-19 14:33:35 -0400
5044*bc421551SDag-Erling Smørgrav
5045*bc421551SDag-Erling Smørgrav  data changes by Paul Eggert - most importantly, updates for Argentina
5046*bc421551SDag-Erling Smørgrav
5047*bc421551SDag-Erling Smørgrav
5048*bc421551SDag-Erling SmørgravRelease 2004a - 2004-05-27 12:00:47 -0400
5049*bc421551SDag-Erling Smørgrav
5050*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5051*bc421551SDag-Erling Smørgrav
5052*bc421551SDag-Erling Smørgrav  Handle DST transitions that occur at the end of a month in some
5053*bc421551SDag-Erling Smørgrav  years but at the start of the following month in other years.
5054*bc421551SDag-Erling Smørgrav
5055*bc421551SDag-Erling Smørgrav  Add a copy of the correspondence that's the basis for claims about
5056*bc421551SDag-Erling Smørgrav  DST in the Navajo Nation.
5057*bc421551SDag-Erling Smørgrav
5058*bc421551SDag-Erling Smørgrav
5059*bc421551SDag-Erling SmørgravRelease 2003e - 2003-12-15 09:36:47 -0500
5060*bc421551SDag-Erling Smørgrav
5061*bc421551SDag-Erling Smørgrav  changes by Arthur David Olson (primarily code changes)
5062*bc421551SDag-Erling Smørgrav
5063*bc421551SDag-Erling Smørgrav  changes by Paul Eggert (primarily data changes)
5064*bc421551SDag-Erling Smørgrav
5065*bc421551SDag-Erling Smørgrav  minor changes to "Makefile" and "northamerica" (in the latter case,
5066*bc421551SDag-Erling Smørgrav  optimization of the "Toronto" rules)
5067*bc421551SDag-Erling Smørgrav
5068*bc421551SDag-Erling Smørgrav
5069*bc421551SDag-Erling SmørgravRelease 2003d - 2003-10-06 09:34:44 -0400
5070*bc421551SDag-Erling Smørgrav
5071*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5072*bc421551SDag-Erling Smørgrav
5073*bc421551SDag-Erling Smørgrav
5074*bc421551SDag-Erling SmørgravRelease 2003c - 2003-09-16 10:47:05 -0400
5075*bc421551SDag-Erling Smørgrav
5076*bc421551SDag-Erling Smørgrav  Fix bad returns in zic.c's inleap function.
5077*bc421551SDag-Erling Smørgrav  Thanks to Bradley White for catching the problem!
5078*bc421551SDag-Erling Smørgrav
5079*bc421551SDag-Erling Smørgrav
5080*bc421551SDag-Erling SmørgravRelease 2003b - 2003-09-16 07:13:44 -0400
5081*bc421551SDag-Erling Smørgrav
5082*bc421551SDag-Erling Smørgrav  Add a "--version" option (and documentation) to the zic and zdump commands.
5083*bc421551SDag-Erling Smørgrav
5084*bc421551SDag-Erling Smørgrav  changes to overflow/underflow checking in zic
5085*bc421551SDag-Erling Smørgrav
5086*bc421551SDag-Erling Smørgrav  a localtime typo fix.
5087*bc421551SDag-Erling Smørgrav
5088*bc421551SDag-Erling Smørgrav  Update the leapseconds and tz-art.htm files.
5089*bc421551SDag-Erling Smørgrav
5090*bc421551SDag-Erling Smørgrav
5091*bc421551SDag-Erling SmørgravRelease 2003a - 2003-03-24 09:30:54 -0500
5092*bc421551SDag-Erling Smørgrav
5093*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5094*bc421551SDag-Erling Smørgrav
5095*bc421551SDag-Erling Smørgrav  a few additions and modifications to the tz-art.htm file
5096*bc421551SDag-Erling Smørgrav
5097*bc421551SDag-Erling Smørgrav
5098*bc421551SDag-Erling SmørgravRelease 2002d - 2002-10-15 13:12:42 -0400
5099*bc421551SDag-Erling Smørgrav
5100*bc421551SDag-Erling Smørgrav  changes by Paul Eggert, less the "Britain (UK)" change in iso3166.tab
5101*bc421551SDag-Erling Smørgrav
5102*bc421551SDag-Erling Smørgrav  There's also a new time zone quote in "tz-art.htm".
5103*bc421551SDag-Erling Smørgrav
5104*bc421551SDag-Erling Smørgrav
5105*bc421551SDag-Erling SmørgravRelease 2002c - 2002-04-04 11:55:20 -0500
5106*bc421551SDag-Erling Smørgrav
5107*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5108*bc421551SDag-Erling Smørgrav
5109*bc421551SDag-Erling Smørgrav  Change zic.c to avoid creating symlinks to files that don't exist.
5110*bc421551SDag-Erling Smørgrav
5111*bc421551SDag-Erling Smørgrav
5112*bc421551SDag-Erling SmørgravRelease 2002b - 2002-01-28 12:56:03 -0500
5113*bc421551SDag-Erling Smørgrav
5114*bc421551SDag-Erling Smørgrav  [These change notes are for Release 2002a, which was corrupted.
5115*bc421551SDag-Erling Smørgrav  2002b was a corrected version of 2002a.]
5116*bc421551SDag-Erling Smørgrav
5117*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5118*bc421551SDag-Erling Smørgrav
5119*bc421551SDag-Erling Smørgrav  Update the "leapseconds" file to note that there'll be no leap
5120*bc421551SDag-Erling Smørgrav  second at the end of June, 2002.
5121*bc421551SDag-Erling Smørgrav
5122*bc421551SDag-Erling Smørgrav  Change "zic.c" to deal with a problem in handling the "Asia/Bishkek" zone.
5123*bc421551SDag-Erling Smørgrav
5124*bc421551SDag-Erling Smørgrav  Change to "difftime.c" to avoid sizeof problems.
5125*bc421551SDag-Erling Smørgrav
5126*bc421551SDag-Erling Smørgrav
5127*bc421551SDag-Erling SmørgravRelease 2001d - 2001-10-09 13:31:32 -0400
5128*bc421551SDag-Erling Smørgrav
5129*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5130*bc421551SDag-Erling Smørgrav
5131*bc421551SDag-Erling Smørgrav
5132*bc421551SDag-Erling SmørgravRelease 2001c - 2001-06-05 13:59:55 -0400
5133*bc421551SDag-Erling Smørgrav
5134*bc421551SDag-Erling Smørgrav  changes by Paul Eggert and Andrew Brown
5135*bc421551SDag-Erling Smørgrav
5136*bc421551SDag-Erling Smørgrav
5137*bc421551SDag-Erling SmørgravRelease 2001b - 2001-04-05 16:44:38 -0400
5138*bc421551SDag-Erling Smørgrav
5139*bc421551SDag-Erling Smørgrav  changes by Paul Eggert (modulo jnorgard's typo fix)
5140*bc421551SDag-Erling Smørgrav
5141*bc421551SDag-Erling Smørgrav  tz-art.htm has been HTMLified.
5142*bc421551SDag-Erling Smørgrav
5143*bc421551SDag-Erling Smørgrav
5144*bc421551SDag-Erling SmørgravRelease 2001a - 2001-03-13 12:57:44 -0500
5145*bc421551SDag-Erling Smørgrav
5146*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5147*bc421551SDag-Erling Smørgrav
5148*bc421551SDag-Erling Smørgrav  An addition to the "leapseconds" file: comments with the text of the
5149*bc421551SDag-Erling Smørgrav  latest IERS leap second notice.
5150*bc421551SDag-Erling Smørgrav
5151*bc421551SDag-Erling Smørgrav  Trailing white space has been removed from data file lines, and
5152*bc421551SDag-Erling Smørgrav  repeated spaces in "Rule Jordan" lines in the "asia" file have been
5153*bc421551SDag-Erling Smørgrav  converted to tabs.
5154*bc421551SDag-Erling Smørgrav
5155*bc421551SDag-Erling Smørgrav
5156*bc421551SDag-Erling SmørgravRelease 2000h - 2000-12-14 15:33:38 -0500
5157*bc421551SDag-Erling Smørgrav
5158*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5159*bc421551SDag-Erling Smørgrav
5160*bc421551SDag-Erling Smørgrav  one typo fix in the "art" file
5161*bc421551SDag-Erling Smørgrav
5162*bc421551SDag-Erling Smørgrav  With providence, this is the last update of the millennium.
5163*bc421551SDag-Erling Smørgrav
5164*bc421551SDag-Erling Smørgrav
5165*bc421551SDag-Erling SmørgravRelease 2000g - 2000-10-10 11:35:22 -0400
5166*bc421551SDag-Erling Smørgrav
5167*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5168*bc421551SDag-Erling Smørgrav
5169*bc421551SDag-Erling Smørgrav  correction of John Mackin's name submitted by Robert Elz
5170*bc421551SDag-Erling Smørgrav
5171*bc421551SDag-Erling Smørgrav  Garry Shandling's Daylight Saving Time joke (!?!) from the recent
5172*bc421551SDag-Erling Smørgrav  Emmy Awards broadcast.
5173*bc421551SDag-Erling Smørgrav
5174*bc421551SDag-Erling Smørgrav
5175*bc421551SDag-Erling SmørgravRelease 2000f - 2000-08-10 09:31:58 -0400
5176*bc421551SDag-Erling Smørgrav
5177*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5178*bc421551SDag-Erling Smørgrav
5179*bc421551SDag-Erling Smørgrav  Added information in "tz-art.htm" on a Seinfeld reference to DST.
5180*bc421551SDag-Erling Smørgrav
5181*bc421551SDag-Erling Smørgrav  Error checking and messages in the "yearistype" script have been
5182*bc421551SDag-Erling Smørgrav  improved.
5183*bc421551SDag-Erling Smørgrav
5184*bc421551SDag-Erling Smørgrav
5185*bc421551SDag-Erling SmørgravRelease 2000e - 2000-07-31 09:27:54 -0400
5186*bc421551SDag-Erling Smørgrav
5187*bc421551SDag-Erling Smørgrav  data changes by Paul Eggert
5188*bc421551SDag-Erling Smørgrav
5189*bc421551SDag-Erling Smørgrav  a change to the default value of the defined constant HAVE_STRERROR
5190*bc421551SDag-Erling Smørgrav
5191*bc421551SDag-Erling Smørgrav  the addition of a Dave Barry quote on DST to the tz-arts file
5192*bc421551SDag-Erling Smørgrav
5193*bc421551SDag-Erling Smørgrav
5194*bc421551SDag-Erling SmørgravRelease 2000d - 2000-04-20 15:43:04 -0400
5195*bc421551SDag-Erling Smørgrav
5196*bc421551SDag-Erling Smørgrav  changes to the documentation and code of strftime for C99 conformance
5197*bc421551SDag-Erling Smørgrav
5198*bc421551SDag-Erling Smørgrav  a bug fix for date.c
5199*bc421551SDag-Erling Smørgrav
5200*bc421551SDag-Erling Smørgrav  These are based on (though modified from) changes by Paul Eggert.
5201*bc421551SDag-Erling Smørgrav
5202*bc421551SDag-Erling Smørgrav
5203*bc421551SDag-Erling SmørgravRelease 2000c - 2000-03-04 10:31:43 -0500
5204*bc421551SDag-Erling Smørgrav
5205*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5206*bc421551SDag-Erling Smørgrav
5207*bc421551SDag-Erling Smørgrav
5208*bc421551SDag-Erling SmørgravRelease 2000b - 2000-02-21 12:16:29 -0500
5209*bc421551SDag-Erling Smørgrav
5210*bc421551SDag-Erling Smørgrav  changes by Paul Eggert and Joseph Myers
5211*bc421551SDag-Erling Smørgrav
5212*bc421551SDag-Erling Smørgrav  modest tweaks to the tz-art.htm and tz-link.htm files
5213*bc421551SDag-Erling Smørgrav
5214*bc421551SDag-Erling Smørgrav
5215*bc421551SDag-Erling SmørgravRelease 2000a - 2000-01-18 09:21:26 -0500
5216*bc421551SDag-Erling Smørgrav
5217*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5218*bc421551SDag-Erling Smørgrav
5219*bc421551SDag-Erling Smørgrav  The two hypertext documents have also been renamed.
5220*bc421551SDag-Erling Smørgrav
5221*bc421551SDag-Erling Smørgrav
5222*bc421551SDag-Erling SmørgravRelease code1999i-data1999j - 1999-11-15 18:43:22 -0500
5223*bc421551SDag-Erling Smørgrav
5224*bc421551SDag-Erling Smørgrav  Paul Eggert's changes
5225*bc421551SDag-Erling Smørgrav
5226*bc421551SDag-Erling Smørgrav  additions to the "zic" manual page and the "Arts.htm" file
5227*bc421551SDag-Erling Smørgrav
5228*bc421551SDag-Erling Smørgrav
5229*bc421551SDag-Erling SmørgravRelease code1999h-data1999i - 1999-11-08 14:55:21 -0500
5230*bc421551SDag-Erling Smørgrav
5231*bc421551SDag-Erling Smørgrav  [not summarized]
5232*bc421551SDag-Erling Smørgrav
5233*bc421551SDag-Erling Smørgrav
5234*bc421551SDag-Erling SmørgravRelease data1999h - 1999-10-07 03:50:29 -0400
5235*bc421551SDag-Erling Smørgrav
5236*bc421551SDag-Erling Smørgrav  changes by Paul Eggert to "europe" (most importantly, fixing
5237*bc421551SDag-Erling Smørgrav  Lithuania and Estonia)
5238*bc421551SDag-Erling Smørgrav
5239*bc421551SDag-Erling Smørgrav
5240*bc421551SDag-Erling SmørgravRelease 1999g - 1999-09-28 11:06:18 -0400
5241*bc421551SDag-Erling Smørgrav
5242*bc421551SDag-Erling Smørgrav  data changes by Paul Eggert (most importantly, the change for
5243*bc421551SDag-Erling Smørgrav  Lebanon that buys correctness for this coming Sunday)
5244*bc421551SDag-Erling Smørgrav
5245*bc421551SDag-Erling Smørgrav  The "code" file contains changes to "Makefile" and "checktab.awk" to
5246*bc421551SDag-Erling Smørgrav  allow better checking of time zone files before they are published.
5247*bc421551SDag-Erling Smørgrav
5248*bc421551SDag-Erling Smørgrav
5249*bc421551SDag-Erling SmørgravRelease 1999f - 1999-09-23 09:48:14 -0400
5250*bc421551SDag-Erling Smørgrav
5251*bc421551SDag-Erling Smørgrav  changes by Arthur David Olson and Paul Eggert
5252*bc421551SDag-Erling Smørgrav
5253*bc421551SDag-Erling Smørgrav
5254*bc421551SDag-Erling SmørgravRelease 1999e - 1999-08-17 15:20:54 -0400
5255*bc421551SDag-Erling Smørgrav
5256*bc421551SDag-Erling Smørgrav  changes circulated by Paul Eggert, although the change to handling
5257*bc421551SDag-Erling Smørgrav  of DST-specifying timezone names has been commented out for now
5258*bc421551SDag-Erling Smørgrav  (search for "XXX" in "localtime.c" for details).  These files also
5259*bc421551SDag-Erling Smørgrav  do not make any changes to the start of DST in Brazil.
5260*bc421551SDag-Erling Smørgrav
5261*bc421551SDag-Erling Smørgrav  In addition to Paul's changes, there are updates to "Arts.htm" and
5262*bc421551SDag-Erling Smørgrav  cleanups of URLs.
5263*bc421551SDag-Erling Smørgrav
5264*bc421551SDag-Erling Smørgrav
5265*bc421551SDag-Erling SmørgravRelease 1999d - 1999-03-30 11:31:07 -0500
5266*bc421551SDag-Erling Smørgrav
5267*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5268*bc421551SDag-Erling Smørgrav
5269*bc421551SDag-Erling Smørgrav  The Makefile's "make public" rule has also been changed to do a test
5270*bc421551SDag-Erling Smørgrav  compile of each individual time zone data file (which should help
5271*bc421551SDag-Erling Smørgrav  avoid problems such as the one we had with Nicosia).
5272*bc421551SDag-Erling Smørgrav
5273*bc421551SDag-Erling Smørgrav
5274*bc421551SDag-Erling SmørgravRelease 1999c - 1999-03-25 09:47:47 -0500
5275*bc421551SDag-Erling Smørgrav
5276*bc421551SDag-Erling Smørgrav  changes by Paul Eggert, most importantly the change for Chile.
5277*bc421551SDag-Erling Smørgrav
5278*bc421551SDag-Erling Smørgrav
5279*bc421551SDag-Erling SmørgravRelease 1999b - 1999-02-01 17:51:44 -0500
5280*bc421551SDag-Erling Smørgrav
5281*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5282*bc421551SDag-Erling Smørgrav
5283*bc421551SDag-Erling Smørgrav  code changes (suggested by Mani Varadarajan, mani at be.com) for
5284*bc421551SDag-Erling Smørgrav  correct handling of symbolic links when building using a relative directory
5285*bc421551SDag-Erling Smørgrav
5286*bc421551SDag-Erling Smørgrav  code changes to generate correct messages for failed links
5287*bc421551SDag-Erling Smørgrav
5288*bc421551SDag-Erling Smørgrav  updates to the URLs in Arts.htm
5289*bc421551SDag-Erling Smørgrav
5290*bc421551SDag-Erling Smørgrav
5291*bc421551SDag-Erling SmørgravRelease 1999a - 1999-01-19 16:20:29 -0500
5292*bc421551SDag-Erling Smørgrav
5293*bc421551SDag-Erling Smørgrav  error message internationalizations and corrections in zic.c and
5294*bc421551SDag-Erling Smørgrav  zdump.c (as suggested by Vladimir Michl, vladimir.michl at upol.cz,
5295*bc421551SDag-Erling Smørgrav  to whom thanks!)
5296*bc421551SDag-Erling Smørgrav
5297*bc421551SDag-Erling Smørgrav
5298*bc421551SDag-Erling SmørgravRelease code1998h-data1998i - 1998-10-01 09:56:10 -0400
5299*bc421551SDag-Erling Smørgrav
5300*bc421551SDag-Erling Smørgrav  changes for Brazil, Chile, and Germany
5301*bc421551SDag-Erling Smørgrav
5302*bc421551SDag-Erling Smørgrav  support for use of "24:00" in the input files for the time zone compiler
5303*bc421551SDag-Erling Smørgrav
5304*bc421551SDag-Erling Smørgrav
5305*bc421551SDag-Erling SmørgravRelease code1998g-data1998h - 1998-09-24 10:50:28 -0400
5306*bc421551SDag-Erling Smørgrav
5307*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5308*bc421551SDag-Erling Smørgrav
5309*bc421551SDag-Erling Smørgrav  correction to a define in the "private.h" file
5310*bc421551SDag-Erling Smørgrav
5311*bc421551SDag-Erling Smørgrav
5312*bc421551SDag-Erling SmørgravRelease data1998g - 1998-08-11 03:28:35 -0000
5313*bc421551SDag-Erling Smørgrav  [tzdata1998g.tar.gz is missing!]
5314*bc421551SDag-Erling Smørgrav
5315*bc421551SDag-Erling Smørgrav  Lithuanian change provided by mgedmin at pub.osf.it
5316*bc421551SDag-Erling Smørgrav
5317*bc421551SDag-Erling Smørgrav  Move creation of the GMT link with Etc/GMT to "etcetera" (from
5318*bc421551SDag-Erling Smørgrav  "backward") to ensure that the GMT file is created even where folks
5319*bc421551SDag-Erling Smørgrav  don't want the "backward" links (as suggested by Paul Eggert).
5320*bc421551SDag-Erling Smørgrav
5321*bc421551SDag-Erling Smørgrav
5322*bc421551SDag-Erling SmørgravRelease data1998f - 1998-07-20 13:50:00 -0000
5323*bc421551SDag-Erling Smørgrav  [tzdata1998f.tar.gz is missing!]
5324*bc421551SDag-Erling Smørgrav
5325*bc421551SDag-Erling Smørgrav  Update the "leapseconds" file to include the newly-announced
5326*bc421551SDag-Erling Smørgrav  insertion at the end of 1998.
5327*bc421551SDag-Erling Smørgrav
5328*bc421551SDag-Erling Smørgrav
5329*bc421551SDag-Erling SmørgravRelease code1998f - 1998-06-01 10:18:31 -0400
5330*bc421551SDag-Erling Smørgrav
5331*bc421551SDag-Erling Smørgrav  addition to localtime.c by Guy Harris
5332*bc421551SDag-Erling Smørgrav
5333*bc421551SDag-Erling Smørgrav
5334*bc421551SDag-Erling SmørgravRelease 1998e - 1998-05-28 09:56:26 -0400
5335*bc421551SDag-Erling Smørgrav
5336*bc421551SDag-Erling Smørgrav  The Makefile is changed to produce zoneinfo-posix rather than
5337*bc421551SDag-Erling Smørgrav  zoneinfo/posix, and to produce zoneinfo-leaps rather than
5338*bc421551SDag-Erling Smørgrav  zoneinfo/right.
5339*bc421551SDag-Erling Smørgrav
5340*bc421551SDag-Erling Smørgrav  data changes by Paul Eggert
5341*bc421551SDag-Erling Smørgrav
5342*bc421551SDag-Erling Smørgrav  changes from Guy Harris to provide asctime_r and ctime_r
5343*bc421551SDag-Erling Smørgrav
5344*bc421551SDag-Erling Smørgrav  A usno1998 file (substantially identical to usno1997) has been added.
5345*bc421551SDag-Erling Smørgrav
5346*bc421551SDag-Erling Smørgrav
5347*bc421551SDag-Erling SmørgravRelease 1998d - 1998-05-14 11:58:34 -0400
5348*bc421551SDag-Erling Smørgrav
5349*bc421551SDag-Erling Smørgrav  changes to comments (in particular, elimination of references to CIA maps).
5350*bc421551SDag-Erling Smørgrav  "Arts.htm", "WWW.htm", "asia", and "australasia" are the only places
5351*bc421551SDag-Erling Smørgrav  where changes occur.
5352*bc421551SDag-Erling Smørgrav
5353*bc421551SDag-Erling Smørgrav
5354*bc421551SDag-Erling SmørgravRelease 1998c - 1998-02-28 12:32:26 -0500
5355*bc421551SDag-Erling Smørgrav
5356*bc421551SDag-Erling Smørgrav  changes by Paul Eggert (save the "French correction," on which I'll
5357*bc421551SDag-Erling Smørgrav  wait for the dust to settle)
5358*bc421551SDag-Erling Smørgrav
5359*bc421551SDag-Erling Smørgrav  symlink changes
5360*bc421551SDag-Erling Smørgrav
5361*bc421551SDag-Erling Smørgrav  changes and additions to Arts.htm
5362*bc421551SDag-Erling Smørgrav
5363*bc421551SDag-Erling Smørgrav
5364*bc421551SDag-Erling SmørgravRelease 1998b - 1998-01-17 14:31:51 -0500
5365*bc421551SDag-Erling Smørgrav
5366*bc421551SDag-Erling Smørgrav  URL cleanups and additions
5367*bc421551SDag-Erling Smørgrav
5368*bc421551SDag-Erling Smørgrav
5369*bc421551SDag-Erling SmørgravRelease 1998a - 1998-01-13 12:37:35 -0500
5370*bc421551SDag-Erling Smørgrav
5371*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5372*bc421551SDag-Erling Smørgrav
5373*bc421551SDag-Erling Smørgrav
5374*bc421551SDag-Erling SmørgravRelease code1997i-data1997k - 1997-12-29 09:53:41 -0500
5375*bc421551SDag-Erling Smørgrav
5376*bc421551SDag-Erling Smørgrav  changes by Paul Eggert, with minor modifications from Arthur David
5377*bc421551SDag-Erling Smørgrav  Olson to make the files more browser friendly
5378*bc421551SDag-Erling Smørgrav
5379*bc421551SDag-Erling Smørgrav
5380*bc421551SDag-Erling SmørgravRelease code1997h-data1997j - 1997-12-18 17:47:35 -0500
5381*bc421551SDag-Erling Smørgrav
5382*bc421551SDag-Erling Smørgrav  minor changes to put "TZif" at the start of each timezone information file
5383*bc421551SDag-Erling Smørgrav
5384*bc421551SDag-Erling Smørgrav  a rule has also been added to the Makefile so you can
5385*bc421551SDag-Erling Smørgrav	make zones
5386*bc421551SDag-Erling Smørgrav  to just recompile the zone information files (rather than doing a
5387*bc421551SDag-Erling Smørgrav  full "make install" with its other effects).
5388*bc421551SDag-Erling Smørgrav
5389*bc421551SDag-Erling Smørgrav
5390*bc421551SDag-Erling SmørgravRelease data1997i - 1997-10-07 08:45:38 -0400
5391*bc421551SDag-Erling Smørgrav
5392*bc421551SDag-Erling Smørgrav  changes to Africa by Paul Eggert
5393*bc421551SDag-Erling Smørgrav
5394*bc421551SDag-Erling Smørgrav
5395*bc421551SDag-Erling SmørgravRelease code1997g-data1997h - 1997-09-04 16:56:54 -0400
5396*bc421551SDag-Erling Smørgrav
5397*bc421551SDag-Erling Smørgrav  corrections for Uruguay (and other locations)
5398*bc421551SDag-Erling Smørgrav
5399*bc421551SDag-Erling Smørgrav  Arthur David Olson's simple-minded fix allowing mktime to both
5400*bc421551SDag-Erling Smørgrav  correctly handle leap seconds and correctly handle tm_sec values
5401*bc421551SDag-Erling Smørgrav  upon which arithmetic has been performed.
5402*bc421551SDag-Erling Smørgrav
5403*bc421551SDag-Erling Smørgrav
5404*bc421551SDag-Erling SmørgravRelease code1997f-data1997g - 1997-07-19 13:15:02 -0400
5405*bc421551SDag-Erling Smørgrav
5406*bc421551SDag-Erling Smørgrav  Paul Eggert's updates
5407*bc421551SDag-Erling Smørgrav
5408*bc421551SDag-Erling Smørgrav  a small change to a function prototype;
5409*bc421551SDag-Erling Smørgrav
5410*bc421551SDag-Erling Smørgrav  "Music" has been renamed "Arts.htm", HTMLified, and augmented to
5411*bc421551SDag-Erling Smørgrav  include information on Around the World in Eighty Days.
5412*bc421551SDag-Erling Smørgrav
5413*bc421551SDag-Erling Smørgrav
5414*bc421551SDag-Erling SmørgravRelease code1997e-data1997f - 1997-05-03 18:52:34 -0400
5415*bc421551SDag-Erling Smørgrav
5416*bc421551SDag-Erling Smørgrav  fixes to zic's error handling
5417*bc421551SDag-Erling Smørgrav
5418*bc421551SDag-Erling Smørgrav  changes inspired by the item circulated on Slovenia
5419*bc421551SDag-Erling Smørgrav
5420*bc421551SDag-Erling Smørgrav  The description of Web resources has been HTMLified for browsing
5421*bc421551SDag-Erling Smørgrav  convenience.
5422*bc421551SDag-Erling Smørgrav
5423*bc421551SDag-Erling Smørgrav  A new piece of tz-related music has been added to the "Music" file.
5424*bc421551SDag-Erling Smørgrav
5425*bc421551SDag-Erling Smørgrav
5426*bc421551SDag-Erling SmørgravRelease code1997d-data1997e - 1997-03-29 12:48:52 -0500
5427*bc421551SDag-Erling Smørgrav
5428*bc421551SDag-Erling Smørgrav  Paul Eggert's latest suggestions
5429*bc421551SDag-Erling Smørgrav
5430*bc421551SDag-Erling Smørgrav
5431*bc421551SDag-Erling SmørgravRelease code1997c-data1997d - 1997-03-07 20:37:54 -0500
5432*bc421551SDag-Erling Smørgrav
5433*bc421551SDag-Erling Smørgrav  changes to "zic.c" to correct performance of the "-s" option
5434*bc421551SDag-Erling Smørgrav
5435*bc421551SDag-Erling Smørgrav  a new file "usno1997"
5436*bc421551SDag-Erling Smørgrav
5437*bc421551SDag-Erling Smørgrav
5438*bc421551SDag-Erling SmørgravRelease data1997c - 1997-03-04 09:58:18 -0500
5439*bc421551SDag-Erling Smørgrav
5440*bc421551SDag-Erling Smørgrav  changes in Israel
5441*bc421551SDag-Erling Smørgrav
5442*bc421551SDag-Erling Smørgrav
5443*bc421551SDag-Erling SmørgravRelease 1997b - 1997-02-27 18:34:19 -0500
5444*bc421551SDag-Erling Smørgrav
5445*bc421551SDag-Erling Smørgrav  The data file incorporates the 1997 leap second.
5446*bc421551SDag-Erling Smørgrav
5447*bc421551SDag-Erling Smørgrav  The code file incorporates Arthur David Olson's take on the
5448*bc421551SDag-Erling Smørgrav  zic/multiprocessor/directory-creation situation.
5449*bc421551SDag-Erling Smørgrav
5450*bc421551SDag-Erling Smørgrav
5451*bc421551SDag-Erling SmørgravRelease 1997a - 1997-01-21 09:11:10 -0500
5452*bc421551SDag-Erling Smørgrav
5453*bc421551SDag-Erling Smørgrav  Paul Eggert's Antarctica (and other changes)
5454*bc421551SDag-Erling Smørgrav
5455*bc421551SDag-Erling Smørgrav  Arthur David Olson finessed the "getopt" issue by checking against
5456*bc421551SDag-Erling Smørgrav  both -1 and EOF (regardless of POSIX, SunOS 4.1.1's manual says -1
5457*bc421551SDag-Erling Smørgrav  is returned while SunOS 5.5's manual says EOF is returned).
5458*bc421551SDag-Erling Smørgrav
5459*bc421551SDag-Erling Smørgrav
5460*bc421551SDag-Erling SmørgravRelease code1996o-data1996n - 1996-12-27 21:42:05 -0500
5461*bc421551SDag-Erling Smørgrav
5462*bc421551SDag-Erling Smørgrav  Paul Eggert's latest changes
5463*bc421551SDag-Erling Smørgrav
5464*bc421551SDag-Erling Smørgrav
5465*bc421551SDag-Erling SmørgravRelease code1996n - 1996-12-16 09:42:02 -0500
5466*bc421551SDag-Erling Smørgrav
5467*bc421551SDag-Erling Smørgrav  link snapping fix from Bruce Evans (via Garrett Wollman)
5468*bc421551SDag-Erling Smørgrav
5469*bc421551SDag-Erling Smørgrav
5470*bc421551SDag-Erling SmørgravRelease data1996m - 1996-11-24 02:37:34 -0000
5471*bc421551SDag-Erling Smørgrav  [tzdata1996m.tar.gz is missing!]
5472*bc421551SDag-Erling Smørgrav
5473*bc421551SDag-Erling Smørgrav  Paul Eggert's batch of changes
5474*bc421551SDag-Erling Smørgrav
5475*bc421551SDag-Erling Smørgrav
5476*bc421551SDag-Erling SmørgravRelease code1996m-data1996l - 1996-11-05 14:00:12 -0500
5477*bc421551SDag-Erling Smørgrav
5478*bc421551SDag-Erling Smørgrav  No functional changes here; the files have simply been changed to
5479*bc421551SDag-Erling Smørgrav  make more use of ISO style dates in comments. The names of the above
5480*bc421551SDag-Erling Smørgrav  files now include the year in full.
5481*bc421551SDag-Erling Smørgrav
5482*bc421551SDag-Erling Smørgrav
5483*bc421551SDag-Erling SmørgravRelease code96l - 1996-09-08 17:12:20 -0400
5484*bc421551SDag-Erling Smørgrav
5485*bc421551SDag-Erling Smørgrav  tzcode96k was missing a couple of pieces.
5486*bc421551SDag-Erling Smørgrav
5487*bc421551SDag-Erling Smørgrav
5488*bc421551SDag-Erling SmørgravRelease 96k - 1996-09-08 16:06:22 -0400
5489*bc421551SDag-Erling Smørgrav
5490*bc421551SDag-Erling Smørgrav  the latest round of changes from Paul Eggert
5491*bc421551SDag-Erling Smørgrav
5492*bc421551SDag-Erling Smørgrav  the recent Year 2000 material
5493*bc421551SDag-Erling Smørgrav
5494*bc421551SDag-Erling Smørgrav
5495*bc421551SDag-Erling SmørgravRelease code96j - 1996-07-30 13:18:53 -0400
5496*bc421551SDag-Erling Smørgrav
5497*bc421551SDag-Erling Smørgrav  Set sp->typecnt as suggested by Timothy Patrick Murphy.
5498*bc421551SDag-Erling Smørgrav
5499*bc421551SDag-Erling Smørgrav
5500*bc421551SDag-Erling SmørgravRelease code96i - 1996-07-27 20:11:35 -0400
5501*bc421551SDag-Erling Smørgrav
5502*bc421551SDag-Erling Smørgrav  Paul's suggested patch for strftime %V week numbers
5503*bc421551SDag-Erling Smørgrav
5504*bc421551SDag-Erling Smørgrav
5505*bc421551SDag-Erling SmørgravRelease data96i - 1996-07-01 18:13:04 -0400
5506*bc421551SDag-Erling Smørgrav
5507*bc421551SDag-Erling Smørgrav  "northamerica" and "europe" changes by Paul Eggert
5508*bc421551SDag-Erling Smørgrav
5509*bc421551SDag-Erling Smørgrav
5510*bc421551SDag-Erling SmørgravRelease code96h - 1996-06-05 08:02:21 -0400
5511*bc421551SDag-Erling Smørgrav
5512*bc421551SDag-Erling Smørgrav  fix for handling transitions specified in Universal Time
5513*bc421551SDag-Erling Smørgrav
5514*bc421551SDag-Erling Smørgrav  Some "public domain" notices have also been added.
5515*bc421551SDag-Erling Smørgrav
5516*bc421551SDag-Erling Smørgrav
5517*bc421551SDag-Erling SmørgravRelease code96g - 1996-05-16 14:00:26 -0400
5518*bc421551SDag-Erling Smørgrav
5519*bc421551SDag-Erling Smørgrav  fix for the simultaneous-DST-and-zone-change challenge
5520*bc421551SDag-Erling Smørgrav
5521*bc421551SDag-Erling Smørgrav
5522*bc421551SDag-Erling SmørgravRelease data96h - 1996-05-09 17:40:51 -0400
5523*bc421551SDag-Erling Smørgrav
5524*bc421551SDag-Erling Smørgrav  changes by Paul Eggert
5525*bc421551SDag-Erling Smørgrav
5526*bc421551SDag-Erling Smørgrav
5527*bc421551SDag-Erling SmørgravRelease code96f-data96g - 1996-05-03 03:09:59 -0000
5528*bc421551SDag-Erling Smørgrav  [tzcode96f.tar.gz + tzdata96g.tar.gz are both missing!]
5529*bc421551SDag-Erling Smørgrav
5530*bc421551SDag-Erling Smørgrav  The changes get us some of the way to fixing the problems noted in Paul
5531*bc421551SDag-Erling Smørgrav  Eggert's letter yesterday (in addition to a few others).  The approach
5532*bc421551SDag-Erling Smørgrav  has been to make zic a bit smarter about figuring out what time zone
5533*bc421551SDag-Erling Smørgrav  abbreviations apply just after the time specified in the "UNTIL" part
5534*bc421551SDag-Erling Smørgrav  of a zone line.  Putting the smarts in zic means avoiding having
5535*bc421551SDag-Erling Smørgrav  transition times show up in both "Zone" lines and "Rule" lines, which
5536*bc421551SDag-Erling Smørgrav  in turn avoids multiple transition time entries in time zone files.
5537*bc421551SDag-Erling Smørgrav  (This also makes the zic input files such as "europe" a bit shorter and
5538*bc421551SDag-Erling Smørgrav  should ease maintenance.)
5539*bc421551SDag-Erling Smørgrav
5540*bc421551SDag-Erling Smørgrav
5541*bc421551SDag-Erling SmørgravRelease data96f - 1996-04-19 19:20:03 -0000
5542*bc421551SDag-Erling Smørgrav  [tzdata96f.tar.gz is missing!]
5543*bc421551SDag-Erling Smørgrav
5544*bc421551SDag-Erling Smørgrav  The only changes are to the "northamerica" file; the time zone
5545*bc421551SDag-Erling Smørgrav  abbreviation for Denver is corrected to MST (and MDT), and the
5546*bc421551SDag-Erling Smørgrav  comments for Mexico have been updated.
5547*bc421551SDag-Erling Smørgrav
5548*bc421551SDag-Erling Smørgrav
5549*bc421551SDag-Erling SmørgravRelease data96e - 1996-03-19 17:37:26 -0500
5550*bc421551SDag-Erling Smørgrav
5551*bc421551SDag-Erling Smørgrav  Proposals by Paul Eggert, in particular the Portugal change that
5552*bc421551SDag-Erling Smørgrav  comes into play at the end of this month.
5553*bc421551SDag-Erling Smørgrav
5554*bc421551SDag-Erling Smørgrav
5555*bc421551SDag-Erling SmørgravRelease data96d - 1996-03-18 20:49:39 -0500
5556*bc421551SDag-Erling Smørgrav
5557*bc421551SDag-Erling Smørgrav  [not summarized]
5558*bc421551SDag-Erling Smørgrav
5559*bc421551SDag-Erling Smørgrav
5560*bc421551SDag-Erling SmørgravRelease code96e - 1996-02-29 15:43:27 -0000
5561*bc421551SDag-Erling Smørgrav  [tzcode96e.tar.gz is missing!]
5562*bc421551SDag-Erling Smørgrav
5563*bc421551SDag-Erling Smørgrav  internationalization changes and the fix to the documentation for strftime
5564*bc421551SDag-Erling Smørgrav
5565*bc421551SDag-Erling Smørgrav
5566*bc421551SDag-Erling SmørgravRelease code96d-data96c - 1996-02-12 11:05:27 -0500
5567*bc421551SDag-Erling Smørgrav
5568*bc421551SDag-Erling Smørgrav  The "code" file simply updates Bob Kridle's electronic address.
5569*bc421551SDag-Erling Smørgrav
5570*bc421551SDag-Erling Smørgrav  The "data" file updates rules for Mexico.
5571*bc421551SDag-Erling Smørgrav
5572*bc421551SDag-Erling Smørgrav
5573*bc421551SDag-Erling SmørgravRelease data96b - 1996-01-27 15:44:42 -0500
5574*bc421551SDag-Erling Smørgrav
5575*bc421551SDag-Erling Smørgrav  Kiribati change
5576*bc421551SDag-Erling Smørgrav
5577*bc421551SDag-Erling Smørgrav
5578*bc421551SDag-Erling SmørgravRelease code96c - 1996-01-16 16:58:15 -0500
5579*bc421551SDag-Erling Smørgrav
5580*bc421551SDag-Erling Smørgrav  leap-year streamlining and binary-search changes
5581*bc421551SDag-Erling Smørgrav
5582*bc421551SDag-Erling Smørgrav  fix to newctime.3
5583*bc421551SDag-Erling Smørgrav
5584*bc421551SDag-Erling Smørgrav
5585*bc421551SDag-Erling SmørgravRelease code96b - 1996-01-10 20:42:39 -0500
5586*bc421551SDag-Erling Smørgrav
5587*bc421551SDag-Erling Smørgrav  fixes and enhancements from Paul Eggert, including code that
5588*bc421551SDag-Erling Smørgrav  emulates the behavior of recent versions of the SunOS "date"
5589*bc421551SDag-Erling Smørgrav  command.
5590*bc421551SDag-Erling Smørgrav
5591*bc421551SDag-Erling Smørgrav
5592*bc421551SDag-Erling SmørgravRelease 96a - 1996-01-06 09:08:24 -0500
5593*bc421551SDag-Erling Smørgrav
5594*bc421551SDag-Erling Smørgrav  Israel updates
5595*bc421551SDag-Erling Smørgrav
5596*bc421551SDag-Erling Smørgrav  fixes to strftime.c for correct ISO 8601 week number generation,
5597*bc421551SDag-Erling Smørgrav  plus support for two new formats ('G' and 'g') to give ISO 8601 year
5598*bc421551SDag-Erling Smørgrav  numbers (which are not necessarily the same as calendar year numbers)
5599*bc421551SDag-Erling Smørgrav
5600*bc421551SDag-Erling Smørgrav
5601*bc421551SDag-Erling SmørgravRelease code95i-data95m - 1995-12-21 12:46:47 -0500
5602*bc421551SDag-Erling Smørgrav
5603*bc421551SDag-Erling Smørgrav  The latest revisions from Paul Eggert are included, the usno1995
5604*bc421551SDag-Erling Smørgrav  file has been updated, and a new file ("WWW") covering useful URLs
5605*bc421551SDag-Erling Smørgrav  has been added.
5606*bc421551SDag-Erling Smørgrav
5607*bc421551SDag-Erling Smørgrav
5608*bc421551SDag-Erling SmørgravRelease code95h-data95l - 1995-12-19 18:10:12 -0500
5609*bc421551SDag-Erling Smørgrav
5610*bc421551SDag-Erling Smørgrav  A simplification of a macro definition, a change to data for Sudan,
5611*bc421551SDag-Erling Smørgrav  and (for last minute shoppers) notes in the "Music" file on the CD
5612*bc421551SDag-Erling Smørgrav  "Old Man Time".
5613*bc421551SDag-Erling Smørgrav
5614*bc421551SDag-Erling Smørgrav
5615*bc421551SDag-Erling SmørgravRelease code95g-data95k - 1995-10-30 10:32:47 -0500
5616*bc421551SDag-Erling Smørgrav
5617*bc421551SDag-Erling Smørgrav  (slightly reformatted) 8-bit-clean proposed patch
5618*bc421551SDag-Erling Smørgrav
5619*bc421551SDag-Erling Smørgrav  minor patch: US/Eastern -> America/New_York
5620*bc421551SDag-Erling Smørgrav
5621*bc421551SDag-Erling Smørgrav  snapshot of the USNO's latest data ("usno1995")
5622*bc421551SDag-Erling Smørgrav
5623*bc421551SDag-Erling Smørgrav  some other minor cleanups
5624*bc421551SDag-Erling Smørgrav
5625*bc421551SDag-Erling Smørgrav
5626*bc421551SDag-Erling SmørgravRelease code95f-data95j - 1995-10-28 21:01:34 -0000
5627*bc421551SDag-Erling Smørgrav  [tzcode95f.tar.gz + tzdata95j.tar.gz are both missing!]
5628*bc421551SDag-Erling Smørgrav
5629*bc421551SDag-Erling Smørgrav  European cleanups
5630*bc421551SDag-Erling Smørgrav
5631*bc421551SDag-Erling Smørgrav  support for 64-bit time_t's
5632*bc421551SDag-Erling Smørgrav
5633*bc421551SDag-Erling Smørgrav  optimization in localtime.c
5634*bc421551SDag-Erling Smørgrav
5635*bc421551SDag-Erling Smørgrav
5636*bc421551SDag-Erling SmørgravRelease code95e - 1995-10-13 13:23:57 -0400
5637*bc421551SDag-Erling Smørgrav
5638*bc421551SDag-Erling Smørgrav  the mktime change to scan from future to past when trying to find time zone
5639*bc421551SDag-Erling Smørgrav  offsets
5640*bc421551SDag-Erling Smørgrav
5641*bc421551SDag-Erling Smørgrav
5642*bc421551SDag-Erling SmørgravRelease data95i - 1995-09-26 10:43:26 -0400
5643*bc421551SDag-Erling Smørgrav
5644*bc421551SDag-Erling Smørgrav  For Canada/Central, guess that the Sun customer's "one week too
5645*bc421551SDag-Erling Smørgrav  early" was just a approximation, and the true error is one month
5646*bc421551SDag-Erling Smørgrav  too early.  This is consistent with the rest of Canada.
5647*bc421551SDag-Erling Smørgrav
5648*bc421551SDag-Erling Smørgrav
5649*bc421551SDag-Erling SmørgravRelease data95h - 1995-09-21 11:26:48 -0400
5650*bc421551SDag-Erling Smørgrav
5651*bc421551SDag-Erling Smørgrav  latest changes from Paul Eggert
5652*bc421551SDag-Erling Smørgrav
5653*bc421551SDag-Erling Smørgrav
5654*bc421551SDag-Erling SmørgravRelease code95d - 1995-09-14 11:14:45 -0400
5655*bc421551SDag-Erling Smørgrav
5656*bc421551SDag-Erling Smørgrav  the addition of a "Music" file, which documents four recorded
5657*bc421551SDag-Erling Smørgrav  versions of the tune "Save That Time".
5658*bc421551SDag-Erling Smørgrav
5659*bc421551SDag-Erling Smørgrav
5660*bc421551SDag-Erling SmørgravRelease data95g - 1995-09-01 17:21:36 -0400
5661*bc421551SDag-Erling Smørgrav
5662*bc421551SDag-Erling Smørgrav  "yearistype" correction
5663*bc421551SDag-Erling Smørgrav
5664*bc421551SDag-Erling Smørgrav
5665*bc421551SDag-Erling SmørgravRelease data95f - 1995-08-28 20:46:56 -0400
5666*bc421551SDag-Erling Smørgrav
5667*bc421551SDag-Erling Smørgrav  Paul Eggert's change to the australasia file
5668*bc421551SDag-Erling Smørgrav
5669*bc421551SDag-Erling Smørgrav
5670*bc421551SDag-Erling SmørgravRelease data95e - 1995-07-08 18:02:34 -0400
5671*bc421551SDag-Erling Smørgrav
5672*bc421551SDag-Erling Smørgrav  The only change is a leap second at the end of this year.
5673*bc421551SDag-Erling Smørgrav  Thanks to Bradley White for forwarding news on the leap second.
5674*bc421551SDag-Erling Smørgrav
5675*bc421551SDag-Erling Smørgrav
5676*bc421551SDag-Erling SmørgravRelease data95d - 1995-07-03 13:26:22 -0400
5677*bc421551SDag-Erling Smørgrav
5678*bc421551SDag-Erling Smørgrav  Paul Eggert's changes
5679*bc421551SDag-Erling Smørgrav
5680*bc421551SDag-Erling Smørgrav
5681*bc421551SDag-Erling SmørgravRelease data95c - 1995-07-02 19:19:28 -0400
5682*bc421551SDag-Erling Smørgrav
5683*bc421551SDag-Erling Smørgrav  changes to "asia", "backward", "europe", and "southamerica"
5684*bc421551SDag-Erling Smørgrav  (read: northamericacentrics need not apply)
5685*bc421551SDag-Erling Smørgrav
5686*bc421551SDag-Erling Smørgrav
5687*bc421551SDag-Erling SmørgravRelease code95c - 1995-03-13 14:00:46 -0500
5688*bc421551SDag-Erling Smørgrav
5689*bc421551SDag-Erling Smørgrav  one-line fix for sign extension problems in detzcode
5690*bc421551SDag-Erling Smørgrav
5691*bc421551SDag-Erling Smørgrav
5692*bc421551SDag-Erling SmørgravRelease 95b - 1995-03-04 11:22:38 -0500
5693*bc421551SDag-Erling Smørgrav
5694*bc421551SDag-Erling Smørgrav  Minor changes in both:
5695*bc421551SDag-Erling Smørgrav
5696*bc421551SDag-Erling Smørgrav  The "code" file contains a workaround for the lack of "unistd.h" in
5697*bc421551SDag-Erling Smørgrav  Microsoft C++ version 7.
5698*bc421551SDag-Erling Smørgrav
5699*bc421551SDag-Erling Smørgrav  The "data" file contains a fixed "Link" for America/Shiprock.
5700*bc421551SDag-Erling Smørgrav
5701*bc421551SDag-Erling Smørgrav
5702*bc421551SDag-Erling SmørgravRelease 94h - 1994-12-10 12:51:14 -0500
5703*bc421551SDag-Erling Smørgrav
5704*bc421551SDag-Erling Smørgrav  The files:
5705*bc421551SDag-Erling Smørgrav
5706*bc421551SDag-Erling Smørgrav  *	incorporate the changes to "zdump" and "date" to make changes to
5707*bc421551SDag-Erling Smørgrav	the "TZ" environment variable permanent;
5708*bc421551SDag-Erling Smørgrav
5709*bc421551SDag-Erling Smørgrav  *	incorporate the table changes by Paul Eggert;
5710*bc421551SDag-Erling Smørgrav
5711*bc421551SDag-Erling Smørgrav  *	include (and document) support for universal time specifications in
5712*bc421551SDag-Erling Smørgrav	data files - but do not (yet) include use of this feature in the
5713*bc421551SDag-Erling Smørgrav	data files.
5714*bc421551SDag-Erling Smørgrav
5715*bc421551SDag-Erling Smørgrav  Think of this as "TZ Classic" - the software has been set up not to break if
5716*bc421551SDag-Erling Smørgrav  universal time shows up in its input, and data entries have been
5717*bc421551SDag-Erling Smørgrav  left as is so as not to break existing implementations.
5718*bc421551SDag-Erling Smørgrav
5719*bc421551SDag-Erling Smørgrav
5720*bc421551SDag-Erling SmørgravRelease data94f - 1994-08-20 12:56:09 -0400
5721*bc421551SDag-Erling Smørgrav
5722*bc421551SDag-Erling Smørgrav  (with thanks!) the latest data updates from Paul Eggert
5723*bc421551SDag-Erling Smørgrav
5724*bc421551SDag-Erling Smørgrav
5725*bc421551SDag-Erling SmørgravRelease data94e - 1994-06-04 13:13:53 -0400
5726*bc421551SDag-Erling Smørgrav
5727*bc421551SDag-Erling Smørgrav  [not summarized]
5728*bc421551SDag-Erling Smørgrav
5729*bc421551SDag-Erling Smørgrav
5730*bc421551SDag-Erling SmørgravRelease code94g - 1994-05-05 12:14:07 -0400
5731*bc421551SDag-Erling Smørgrav
5732*bc421551SDag-Erling Smørgrav  fix missing "optind.c" and a reference to it in the Makefile
5733*bc421551SDag-Erling Smørgrav
5734*bc421551SDag-Erling Smørgrav
5735*bc421551SDag-Erling SmørgravRelease code94f - 1994-05-05 13:00:33 -0000
5736*bc421551SDag-Erling Smørgrav  [tzcode94f.tar.gz is missing!]
5737*bc421551SDag-Erling Smørgrav
5738*bc421551SDag-Erling Smørgrav  changes to avoid overflow in difftime, as well as changes to cope
5739*bc421551SDag-Erling Smørgrav  with the 52/53 challenge in strftime
5740*bc421551SDag-Erling Smørgrav
5741*bc421551SDag-Erling Smørgrav
5742*bc421551SDag-Erling SmørgravRelease code94e - 1994-03-30 23:32:59 -0500
5743*bc421551SDag-Erling Smørgrav
5744*bc421551SDag-Erling Smørgrav  change for the benefit of PCTS
5745*bc421551SDag-Erling Smørgrav
5746*bc421551SDag-Erling Smørgrav
5747*bc421551SDag-Erling SmørgravRelease 94d - 1994-02-24 15:42:25 -0500
5748*bc421551SDag-Erling Smørgrav
5749*bc421551SDag-Erling Smørgrav  Avoid clashes with POSIX semantics for zones such as GMT+4.
5750*bc421551SDag-Erling Smørgrav
5751*bc421551SDag-Erling Smørgrav  Some other very minor housekeeping is also present.
5752*bc421551SDag-Erling Smørgrav
5753*bc421551SDag-Erling Smørgrav
5754*bc421551SDag-Erling SmørgravRelease code94c - 1994-02-10 08:52:40 -0500
5755*bc421551SDag-Erling Smørgrav
5756*bc421551SDag-Erling Smørgrav  Fix bug where mkdirs was broken unless you compile with
5757*bc421551SDag-Erling Smørgrav  -fwritable-strings (which is generally losing to do).
5758*bc421551SDag-Erling Smørgrav
5759*bc421551SDag-Erling Smørgrav
5760*bc421551SDag-Erling SmørgravRelease 94b - 1994-02-07 10:04:33 -0500
5761*bc421551SDag-Erling Smørgrav
5762*bc421551SDag-Erling Smørgrav  work by Paul Eggert who notes:
5763*bc421551SDag-Erling Smørgrav
5764*bc421551SDag-Erling Smørgrav  I found another book of time zone histories by E W Whitman; it's not
5765*bc421551SDag-Erling Smørgrav  as extensive as Shanks but has a few goodies of its own.  I used it
5766*bc421551SDag-Erling Smørgrav  to update the tables.  I also fixed some more as a result of
5767*bc421551SDag-Erling Smørgrav  correspondence with Adam David and Peter Ilieve, and move some stray
5768*bc421551SDag-Erling Smørgrav  links from 'europe' to 'backward'.  I corrected some scanning errors
5769*bc421551SDag-Erling Smørgrav  in usno1989.
5770*bc421551SDag-Erling Smørgrav
5771*bc421551SDag-Erling Smørgrav  As far as the code goes, I fixed zic to allow years in the range
5772*bc421551SDag-Erling Smørgrav  INT_MIN to INT_MAX; this fixed a few boundary conditions around 1900.
5773*bc421551SDag-Erling Smørgrav  And I cleaned up the zic documentation a little bit.
5774*bc421551SDag-Erling Smørgrav
5775*bc421551SDag-Erling Smørgrav
5776*bc421551SDag-Erling SmørgravRelease data94a - 1994-02-03 08:58:54 -0500
5777*bc421551SDag-Erling Smørgrav
5778*bc421551SDag-Erling Smørgrav  It simply incorporates the recently announced leap second into the
5779*bc421551SDag-Erling Smørgrav  "leapseconds" file.
5780*bc421551SDag-Erling Smørgrav
5781*bc421551SDag-Erling Smørgrav
5782*bc421551SDag-Erling SmørgravRelease 93g - 1993-11-22 17:28:27 -0500
5783*bc421551SDag-Erling Smørgrav
5784*bc421551SDag-Erling Smørgrav  Paul Eggert has provided a good deal of historic information (based
5785*bc421551SDag-Erling Smørgrav  on Shanks), and there are some code changes to deal with the buglets
5786*bc421551SDag-Erling Smørgrav  that crawled out in dealing with the new information.
5787*bc421551SDag-Erling Smørgrav
5788*bc421551SDag-Erling Smørgrav
5789*bc421551SDag-Erling SmørgravRelease 93f - 1993-10-15 12:27:46 -0400
5790*bc421551SDag-Erling Smørgrav
5791*bc421551SDag-Erling Smørgrav  Paul Eggert's changes
5792*bc421551SDag-Erling Smørgrav
5793*bc421551SDag-Erling Smørgrav
5794*bc421551SDag-Erling SmørgravRelease 93e - 1993-09-05 21:21:44 -0400
5795*bc421551SDag-Erling Smørgrav
5796*bc421551SDag-Erling Smørgrav  This has updated data for Israel, England, and Kwajalein.  There's
5797*bc421551SDag-Erling Smørgrav  also an update to "zdump" to cope with Kwajalein's 24-hour jump.
5798*bc421551SDag-Erling Smørgrav  Thanks to Paul Eggert and Peter Ilieve for the changes.
5799*bc421551SDag-Erling Smørgrav
5800*bc421551SDag-Erling Smørgrav
5801*bc421551SDag-Erling SmørgravRelease 93d - 1993-06-17 23:34:17 -0400
5802*bc421551SDag-Erling Smørgrav
5803*bc421551SDag-Erling Smørgrav  new fix and new data on Israel
5804*bc421551SDag-Erling Smørgrav
5805*bc421551SDag-Erling Smørgrav
5806*bc421551SDag-Erling SmørgravRelease 93c - 1993-06-06 19:31:55 -0400
5807*bc421551SDag-Erling Smørgrav
5808*bc421551SDag-Erling Smørgrav  [not summarized]
5809*bc421551SDag-Erling Smørgrav
5810*bc421551SDag-Erling Smørgrav
5811*bc421551SDag-Erling SmørgravRelease 93b - 1993-02-02 14:53:58 -0500
5812*bc421551SDag-Erling Smørgrav
5813*bc421551SDag-Erling Smørgrav  updated "leapseconds" file
5814*bc421551SDag-Erling Smørgrav
5815*bc421551SDag-Erling Smørgrav
5816*bc421551SDag-Erling SmørgravRelease 93 - 1993-01-08 07:01:06 -0500
5817*bc421551SDag-Erling Smørgrav
5818*bc421551SDag-Erling Smørgrav  At kre's suggestion, the package has been split in two - a code piece
5819*bc421551SDag-Erling Smørgrav  (which also includes documentation) that's only of use to folks who
5820*bc421551SDag-Erling Smørgrav  want to recompile things and a data piece useful to anyone who can
5821*bc421551SDag-Erling Smørgrav  run "zic".
5822*bc421551SDag-Erling Smørgrav
5823*bc421551SDag-Erling Smørgrav  The new version has a few changes to the data files, a few
5824*bc421551SDag-Erling Smørgrav  portability changes, and an off-by-one fix (with thanks to
5825*bc421551SDag-Erling Smørgrav  Tom Karzes at deshaw.com for providing a description and a
5826*bc421551SDag-Erling Smørgrav  solution).
5827*bc421551SDag-Erling Smørgrav
5828*bc421551SDag-Erling Smørgrav
5829*bc421551SDag-Erling SmørgravRelease 92c - 1992-11-21 17:35:36 -0000
5830*bc421551SDag-Erling Smørgrav  [tz92c.tar.Z is missing!]
5831*bc421551SDag-Erling Smørgrav
5832*bc421551SDag-Erling Smørgrav  The fallout from the latest round of DST transitions.
5833*bc421551SDag-Erling Smørgrav
5834*bc421551SDag-Erling Smørgrav  There are changes for Portugal, Saskatchewan, and "Pacific-New";
5835*bc421551SDag-Erling Smørgrav  there's also a change to "zic.c" that makes it portable to more systems.
5836*bc421551SDag-Erling Smørgrav
5837*bc421551SDag-Erling Smørgrav
5838*bc421551SDag-Erling SmørgravRelease 92 - 1992-04-25 18:17:03 -0000
5839*bc421551SDag-Erling Smørgrav  [tz92.tar.Z is missing!]
5840*bc421551SDag-Erling Smørgrav
5841*bc421551SDag-Erling Smørgrav  By popular demand (well, at any rate, following a request by kre at munnari)
5842*bc421551SDag-Erling Smørgrav
5843*bc421551SDag-Erling Smørgrav
5844*bc421551SDag-Erling SmørgravThe 1989 update of the time zone package featured:
5845*bc421551SDag-Erling Smørgrav
5846*bc421551SDag-Erling Smørgrav  *	POSIXization (including interpretation of POSIX-style TZ environment
5847*bc421551SDag-Erling Smørgrav	variables, provided by Guy Harris),
5848*bc421551SDag-Erling Smørgrav  *	ANSIfication (including versions of "mktime" and "difftime"),
5849*bc421551SDag-Erling Smørgrav  *	SVIDulation (an "altzone" variable)
5850*bc421551SDag-Erling Smørgrav  *	MACHination (the "gtime" function)
5851*bc421551SDag-Erling Smørgrav  *	corrections to some time zone data (including corrections to the rules
5852*bc421551SDag-Erling Smørgrav	for Great Britain and New Zealand)
5853*bc421551SDag-Erling Smørgrav  *	reference data from the United States Naval Observatory for folks who
5854*bc421551SDag-Erling Smørgrav	want to do additional time zones
5855*bc421551SDag-Erling Smørgrav  *	and the 1989 data for Saudi Arabia.
5856*bc421551SDag-Erling Smørgrav
5857*bc421551SDag-Erling Smørgrav  (Since this code will be treated as "part of the implementation" in some
5858*bc421551SDag-Erling Smørgrav  places and as "part of the application" in others, there's no good way to
5859*bc421551SDag-Erling Smørgrav  name functions, such as timegm, that are not part of the proposed ANSI C
5860*bc421551SDag-Erling Smørgrav  standard; such functions have kept their old, underscore-free names in this
5861*bc421551SDag-Erling Smørgrav  update.)
5862*bc421551SDag-Erling Smørgrav
5863*bc421551SDag-Erling Smørgrav  And the "dysize" function has disappeared; it was present to allow
5864*bc421551SDag-Erling Smørgrav  compilation of the "date" command on old BSD systems, and a version of "date"
5865*bc421551SDag-Erling Smørgrav  is now provided in the package.  The "date" command is not created when you
5866*bc421551SDag-Erling Smørgrav  "make all" since it may lack options provided by the version distributed with
5867*bc421551SDag-Erling Smørgrav  your operating system, or may not interact with the system in the same way
5868*bc421551SDag-Erling Smørgrav  the native version does.
5869*bc421551SDag-Erling Smørgrav
5870*bc421551SDag-Erling Smørgrav  Since POSIX frowns on correct leap second handling, the default behavior of
5871*bc421551SDag-Erling Smørgrav  the "zic" command (in the absence of a "-L" option) has been changed to omit
5872*bc421551SDag-Erling Smørgrav  leap second information from its output files.
5873*bc421551SDag-Erling Smørgrav
5874*bc421551SDag-Erling Smørgrav
5875*bc421551SDag-Erling Smørgrav-----
5876*bc421551SDag-Erling SmørgravNotes
5877*bc421551SDag-Erling Smørgrav
5878*bc421551SDag-Erling SmørgravThis file contains copies of the part of each release announcement
5879*bc421551SDag-Erling Smørgravthat talks about the changes in that release.  The text has been
5880*bc421551SDag-Erling Smørgravadapted and reformatted for the purposes of this file.
5881*bc421551SDag-Erling Smørgrav
5882*bc421551SDag-Erling SmørgravTraditionally a release R consists of a pair of tarball files,
5883*bc421551SDag-Erling SmørgravtzcodeR.tar.gz and tzdataR.tar.gz.  However, some releases (e.g.,
5884*bc421551SDag-Erling Smørgravcode2010a, data2012c) consist of just one or the other tarball, and a
5885*bc421551SDag-Erling Smørgravfew (e.g., code2012c-data2012d) have tarballs with mixed version
5886*bc421551SDag-Erling Smørgravnumbers.  Recent releases also come in an experimental format
5887*bc421551SDag-Erling Smørgravconsisting of a single tarball tzdb-R.tar.lz with extra data.
5888*bc421551SDag-Erling Smørgrav
5889*bc421551SDag-Erling SmørgravRelease timestamps are taken from the release's commit (for newer,
5890*bc421551SDag-Erling SmørgravGit-based releases), from the newest file in the tarball (for older
5891*bc421551SDag-Erling Smørgravreleases, where this info is available) or from the email announcing
5892*bc421551SDag-Erling Smørgravthe release (if all else fails; these are marked with a time zone
5893*bc421551SDag-Erling Smørgravabbreviation of -0000 and an "is missing!" comment).
5894*bc421551SDag-Erling Smørgrav
5895*bc421551SDag-Erling SmørgravEarlier versions of the code and data were not announced on the tz
5896*bc421551SDag-Erling Smørgravlist and are not summarized here.
5897*bc421551SDag-Erling Smørgrav
5898*bc421551SDag-Erling SmørgravThis file is in the public domain.
5899*bc421551SDag-Erling Smørgrav
5900*bc421551SDag-Erling SmørgravLocal Variables:
5901*bc421551SDag-Erling Smørgravcoding: utf-8
5902*bc421551SDag-Erling SmørgravEnd:
5903