1ba2b2efdSGlen BarberNews for the tz database 2ba2b2efdSGlen Barber 3*259e2ad7SPhilip PaepsRelease 2023a - 2023-03-22 12:39:33 -0700 4*259e2ad7SPhilip Paeps 5*259e2ad7SPhilip Paeps Briefly: 6*259e2ad7SPhilip Paeps Egypt now uses DST again, from April through October. 7*259e2ad7SPhilip Paeps This year Morocco springs forward April 23, not April 30. 8*259e2ad7SPhilip Paeps Palestine delays the start of DST this year. 9*259e2ad7SPhilip Paeps Much of Greenland still uses DST from 2024 on. 10*259e2ad7SPhilip Paeps America/Yellowknife now links to America/Edmonton. 11*259e2ad7SPhilip Paeps tzselect can now use current time to help infer timezone. 12*259e2ad7SPhilip Paeps The code now defaults to C99 or later. 13*259e2ad7SPhilip Paeps Fix use of C23 attributes. 14*259e2ad7SPhilip Paeps 15*259e2ad7SPhilip Paeps Changes to future timestamps 16*259e2ad7SPhilip Paeps 17*259e2ad7SPhilip Paeps Starting in 2023, Egypt will observe DST from April's last Friday 18*259e2ad7SPhilip Paeps through October's last Thursday. (Thanks to Ahmad ElDardiry.) 19*259e2ad7SPhilip Paeps Assume the transition times are 00:00 and 24:00, respectively. 20*259e2ad7SPhilip Paeps 21*259e2ad7SPhilip Paeps In 2023 Morocco's spring-forward transition after Ramadan 22*259e2ad7SPhilip Paeps will occur April 23, not April 30. (Thanks to Milamber.) 23*259e2ad7SPhilip Paeps Adjust predictions for future years accordingly. This affects 24*259e2ad7SPhilip Paeps predictions for 2023, 2031, 2038, and later years. 25*259e2ad7SPhilip Paeps 26*259e2ad7SPhilip Paeps This year Palestine will delay its spring forward from 27*259e2ad7SPhilip Paeps March 25 to April 29 due to Ramadan. (Thanks to Heba Hamad.) 28*259e2ad7SPhilip Paeps Make guesses for future Ramadans too. 29*259e2ad7SPhilip Paeps 30*259e2ad7SPhilip Paeps Much of Greenland, represented by America/Nuuk, will continue to 31*259e2ad7SPhilip Paeps observe DST using European Union rules. When combined with 32*259e2ad7SPhilip Paeps Greenland's decision not to change the clocks in fall 2023, 33*259e2ad7SPhilip Paeps America/Nuuk therefore changes from -03/-02 to -02/-01 effective 34*259e2ad7SPhilip Paeps 2023-10-29 at 01:00 UTC. (Thanks to Thomas M. Steenholdt.) 35*259e2ad7SPhilip Paeps This change from 2022g doesn't affect timestamps until 2024-03-30, 36*259e2ad7SPhilip Paeps and doesn't affect tm_isdst until 2023-03-25. 37*259e2ad7SPhilip Paeps 38*259e2ad7SPhilip Paeps Changes to past timestamps 39*259e2ad7SPhilip Paeps 40*259e2ad7SPhilip Paeps America/Yellowknife has changed from a Zone to a backward 41*259e2ad7SPhilip Paeps compatibility Link, as it no longer differs from America/Edmonton 42*259e2ad7SPhilip Paeps since 1970. (Thanks to Almaz Mingaleev.) This affects some 43*259e2ad7SPhilip Paeps pre-1948 timestamps. The old data are now in 'backzone'. 44*259e2ad7SPhilip Paeps 45*259e2ad7SPhilip Paeps Changes to past time zone abbreviations 46*259e2ad7SPhilip Paeps 47*259e2ad7SPhilip Paeps When observing Moscow time, Europe/Kirov and Europe/Volgograd now 48*259e2ad7SPhilip Paeps use the abbreviations MSK/MSD instead of numeric abbreviations, 49*259e2ad7SPhilip Paeps for consistency with other timezones observing Moscow time. 50*259e2ad7SPhilip Paeps 51*259e2ad7SPhilip Paeps Changes to code 52*259e2ad7SPhilip Paeps 53*259e2ad7SPhilip Paeps You can now tell tzselect local time, to simplify later choices. 54*259e2ad7SPhilip Paeps Select the 'time' option in its first prompt. 55*259e2ad7SPhilip Paeps 56*259e2ad7SPhilip Paeps You can now compile with -DTZNAME_MAXIMUM=N to limit time zone 57*259e2ad7SPhilip Paeps abbreviations to N bytes (default 255). The reference runtime 58*259e2ad7SPhilip Paeps library now rejects POSIX-style TZ strings that contain longer 59*259e2ad7SPhilip Paeps abbreviations, treating them as UTC. Previously the limit was 60*259e2ad7SPhilip Paeps platform dependent and abbreviations were silently truncated to 61*259e2ad7SPhilip Paeps 16 bytes even when the limit was greater than 16. 62*259e2ad7SPhilip Paeps 63*259e2ad7SPhilip Paeps The code by default is now designed for C99 or later. To build in 64*259e2ad7SPhilip Paeps a C89 environment, compile with -DPORT_TO_C89. To support C89 65*259e2ad7SPhilip Paeps callers of the tzcode library, compile with -DSUPPORT_C89. The 66*259e2ad7SPhilip Paeps two new macros are transitional aids planned to be removed in a 67*259e2ad7SPhilip Paeps future version, when C99 or later will be required. 68*259e2ad7SPhilip Paeps 69*259e2ad7SPhilip Paeps The code now builds again on pre-C99 platforms, if you compile 70*259e2ad7SPhilip Paeps with -DPORT_TO_C89. This fixes a bug introduced in 2022f. 71*259e2ad7SPhilip Paeps 72*259e2ad7SPhilip Paeps On C23-compatible platforms tzcode no longer uses syntax like 73*259e2ad7SPhilip Paeps 'static [[noreturn]] void usage(void);'. Instead, it uses 74*259e2ad7SPhilip Paeps '[[noreturn]] static void usage(void);' as strict C23 requires. 75*259e2ad7SPhilip Paeps (Problem reported by Houge Langley.) 76*259e2ad7SPhilip Paeps 77*259e2ad7SPhilip Paeps The code's functions now constrain their arguments with the C 78*259e2ad7SPhilip Paeps 'restrict' keyword consistently with their documentation. 79*259e2ad7SPhilip Paeps This may allow future optimizations. 80*259e2ad7SPhilip Paeps 81*259e2ad7SPhilip Paeps zdump again builds standalone with ckdadd and without setenv, 82*259e2ad7SPhilip Paeps fixing a bug introduced in 2022g. (Problem reported by panic.) 83*259e2ad7SPhilip Paeps 84*259e2ad7SPhilip Paeps leapseconds.awk can now process a leap seconds file that never 85*259e2ad7SPhilip Paeps expires; this might be useful if leap seconds are discontinued. 86*259e2ad7SPhilip Paeps 87*259e2ad7SPhilip Paeps Changes to commentary 88*259e2ad7SPhilip Paeps 89*259e2ad7SPhilip Paeps tz-link.html has a new section "Coordinating with governments and 90*259e2ad7SPhilip Paeps distributors". (Thanks to Neil Fuller for some of the text.) 91*259e2ad7SPhilip Paeps 92*259e2ad7SPhilip Paeps To improve tzselect diagnostics, zone1970.tab's comments column is 93*259e2ad7SPhilip Paeps now limited to countries that have multiple timezones. 94*259e2ad7SPhilip Paeps 95*259e2ad7SPhilip Paeps Note that leap seconds are planned to be discontinued by 2035. 96*259e2ad7SPhilip Paeps 97*259e2ad7SPhilip Paeps 98cf1ad535SPhilip PaepsRelease 2022g - 2022-11-29 08:58:31 -0800 99cf1ad535SPhilip Paeps 100cf1ad535SPhilip Paeps Briefly: 101cf1ad535SPhilip Paeps The northern edge of Chihuahua changes to US timekeeping. 102cf1ad535SPhilip Paeps Much of Greenland stops changing clocks after March 2023. 103cf1ad535SPhilip Paeps Fix some pre-1996 timestamps in northern Canada. 104cf1ad535SPhilip Paeps C89 is now deprecated; please use C99 or later. 105cf1ad535SPhilip Paeps Portability fixes for AIX, libintl, MS-Windows, musl, z/OS 106cf1ad535SPhilip Paeps In C code, use more C23 features if available. 107cf1ad535SPhilip Paeps C23 timegm now supported by default 108cf1ad535SPhilip Paeps Fixes for unlikely integer overflows 109cf1ad535SPhilip Paeps 110cf1ad535SPhilip Paeps Changes to future timestamps 111cf1ad535SPhilip Paeps 112cf1ad535SPhilip Paeps In the Mexican state of Chihuahua, the border strip near the US 113cf1ad535SPhilip Paeps will change to agree with nearby US locations on 2022-11-30. 114cf1ad535SPhilip Paeps The strip's western part, represented by Ciudad Juárez, switches 115cf1ad535SPhilip Paeps from -06 all year to -07/-06 with US DST rules, like El Paso, TX. 116cf1ad535SPhilip Paeps The eastern part, represented by Ojinaga, will observe US DST next 117cf1ad535SPhilip Paeps year, like Presidio, TX. (Thanks to Heitor David Pinto.) 118cf1ad535SPhilip Paeps A new Zone America/Ciudad_Juarez splits from America/Ojinaga. 119cf1ad535SPhilip Paeps 120cf1ad535SPhilip Paeps Much of Greenland, represented by America/Nuuk, stops observing 121cf1ad535SPhilip Paeps winter time after March 2023, so its daylight saving time becomes 122cf1ad535SPhilip Paeps standard time. (Thanks to Jonas Nyrup and Jürgen Appel.) 123cf1ad535SPhilip Paeps 124cf1ad535SPhilip Paeps Changes to past timestamps 125cf1ad535SPhilip Paeps 126cf1ad535SPhilip Paeps Changes for pre-1996 northern Canada (thanks to Chris Walton): 127cf1ad535SPhilip Paeps 128cf1ad535SPhilip Paeps Merge America/Iqaluit and America/Pangnirtung into the former, 129cf1ad535SPhilip Paeps with a backward compatibility link for the latter name. 130cf1ad535SPhilip Paeps There is no good evidence the two locations differ since 1970. 131cf1ad535SPhilip Paeps This change affects pre-1996 America/Pangnirtung timestamps. 132cf1ad535SPhilip Paeps 133cf1ad535SPhilip Paeps Cambridge Bay, Inuvik, Iqaluit, Rankin Inlet, Resolute and 134cf1ad535SPhilip Paeps Yellowknife did not observe DST in 1965, and did observe DST 135cf1ad535SPhilip Paeps from 1972 through 1979. 136cf1ad535SPhilip Paeps 137cf1ad535SPhilip Paeps Whitehorse moved from -09 to -08 on 1966-02-27, not 1967-05-28. 138cf1ad535SPhilip Paeps 139cf1ad535SPhilip Paeps Colombia's 1993 fallback was 02-06 24:00, not 04-04 00:00. 140cf1ad535SPhilip Paeps (Thanks to Alois Treindl.) 141cf1ad535SPhilip Paeps 142cf1ad535SPhilip Paeps Singapore's 1981-12-31 change was at 16:00 UTC (23:30 local time), 143cf1ad535SPhilip Paeps not 24:00 local time. (Thanks to Geoff Clare via Robert Elz.) 144cf1ad535SPhilip Paeps 145cf1ad535SPhilip Paeps Changes to code 146cf1ad535SPhilip Paeps 147cf1ad535SPhilip Paeps Although tzcode still works with C89, bugs found in recent routine 148cf1ad535SPhilip Paeps maintenance indicate that bitrot has set in and that in practice 149cf1ad535SPhilip Paeps C89 is no longer used to build tzcode. As it is a maintenance 150cf1ad535SPhilip Paeps burden, support for C89 is planned to be removed soon. Instead, 151cf1ad535SPhilip Paeps please use compilers compatible with C99, C11, C17, or C23. 152cf1ad535SPhilip Paeps 153cf1ad535SPhilip Paeps timegm, which tzcode implemented in 1989, will finally be 154cf1ad535SPhilip Paeps standardized 34 years later as part of C23, so timegm is now 155cf1ad535SPhilip Paeps supported even if STD_INSPIRED is not defined. 156cf1ad535SPhilip Paeps 157cf1ad535SPhilip Paeps Fix bug in zdump's tzalloc emulation on hosts that lack tm_zone. 158cf1ad535SPhilip Paeps (Problem reported by Đoàn Trần Công Danh.) 159cf1ad535SPhilip Paeps 160cf1ad535SPhilip Paeps Fix bug in zic on hosts where malloc(0) yields NULL on success. 161cf1ad535SPhilip Paeps (Problem reported by Tim McBrayer for AIX 6.1.) 162cf1ad535SPhilip Paeps 163cf1ad535SPhilip Paeps Fix zic configuration to avoid linkage failures on some platforms. 164cf1ad535SPhilip Paeps (Problems reported by Gilmore Davidson and Igor Ivanov.) 165cf1ad535SPhilip Paeps 166cf1ad535SPhilip Paeps Work around MS-Windows nmake incompatibility with POSIX. 167cf1ad535SPhilip Paeps (Problem reported by Manuela Friedrich.) 168cf1ad535SPhilip Paeps 169cf1ad535SPhilip Paeps Port mktime and strftime to debugging platforms where accessing 170cf1ad535SPhilip Paeps uninitialized data has undefined behavior (strftime problem 171cf1ad535SPhilip Paeps reported by Robert Elz). 172cf1ad535SPhilip Paeps 173cf1ad535SPhilip Paeps Check more carefully for unlikely integer overflows, preferring 174cf1ad535SPhilip Paeps C23 <stdckdint.h> to overflow checking by hand, as the latter has 175cf1ad535SPhilip Paeps had obscure bugs. 176cf1ad535SPhilip Paeps 177cf1ad535SPhilip Paeps Changes to build procedure 178cf1ad535SPhilip Paeps 179cf1ad535SPhilip Paeps New Makefile rule check_mild that skips checking whether Link 180cf1ad535SPhilip Paeps lines are in the file 'backward'. (Inspired by a suggestion from 181cf1ad535SPhilip Paeps Stephen Colebourne.) 182cf1ad535SPhilip Paeps 183cf1ad535SPhilip Paeps 1849142a2a3SPhilip PaepsRelease 2022f - 2022-10-28 18:04:57 -0700 1859142a2a3SPhilip Paeps 1869142a2a3SPhilip Paeps Briefly: 1879142a2a3SPhilip Paeps Mexico will no longer observe DST except near the US border. 1889142a2a3SPhilip Paeps Chihuahua moves to year-round -06 on 2022-10-30. 1899142a2a3SPhilip Paeps Fiji no longer observes DST. 1909142a2a3SPhilip Paeps Move links to 'backward'. 1919142a2a3SPhilip Paeps In vanguard form, GMT is now a Zone and Etc/GMT a link. 1929142a2a3SPhilip Paeps zic now supports links to links, and vanguard form uses this. 1939142a2a3SPhilip Paeps Simplify four Ontario zones. 1949142a2a3SPhilip Paeps Fix a Y2438 bug when reading TZif data. 1959142a2a3SPhilip Paeps Enable 64-bit time_t on 32-bit glibc platforms. 1969142a2a3SPhilip Paeps Omit large-file support when no longer needed. 1979142a2a3SPhilip Paeps In C code, use some C23 features if available. 1989142a2a3SPhilip Paeps Remove no-longer-needed workaround for Qt bug 53071. 1999142a2a3SPhilip Paeps 200cf1ad535SPhilip Paeps Changes to future timestamps 2019142a2a3SPhilip Paeps 2029142a2a3SPhilip Paeps Mexico will no longer observe DST after 2022, except for areas 2039142a2a3SPhilip Paeps near the US border that continue to observe US DST rules. 2049142a2a3SPhilip Paeps On 2022-10-30 at 02:00 the Mexican state of Chihuahua moves 2059142a2a3SPhilip Paeps from -07 (-06 with DST) to year-round -06, thus not changing 2069142a2a3SPhilip Paeps its clocks that day. The new law states that Chihuahua 2079142a2a3SPhilip Paeps near the US border no longer observes US DST. 208cf1ad535SPhilip Paeps (Thanks to gera for the heads-up about Chihuahua.) 2099142a2a3SPhilip Paeps 2109142a2a3SPhilip Paeps Fiji will not observe DST in 2022/3. (Thanks to Shalvin Narayan.) 2119142a2a3SPhilip Paeps For now, assume DST is suspended indefinitely. 2129142a2a3SPhilip Paeps 2139142a2a3SPhilip Paeps Changes to data 2149142a2a3SPhilip Paeps 2159142a2a3SPhilip Paeps Move links to 'backward' to ease and simplify link maintenance. 2169142a2a3SPhilip Paeps This affects generated data only if you use 'make BACKWARD='. 2179142a2a3SPhilip Paeps 2189142a2a3SPhilip Paeps GMT is now a Zone and Etc/GMT a link instead of vice versa, 2199142a2a3SPhilip Paeps as GMT is needed for leap second support whereas Etc/GMT is not. 2209142a2a3SPhilip Paeps However, this change exposes a bug in TZUpdater 2.3.2 so it is 2219142a2a3SPhilip Paeps present only in vanguard form for now. 2229142a2a3SPhilip Paeps 2239142a2a3SPhilip Paeps Vanguard form now uses links to links, as zic now supports this. 2249142a2a3SPhilip Paeps 2259142a2a3SPhilip Paeps Changes to past timestamps 2269142a2a3SPhilip Paeps 2279142a2a3SPhilip Paeps Simplify four Ontario zones, as most of the post-1970 differences 2289142a2a3SPhilip Paeps seem to have been imaginary. (Problem reported by Chris Walton.) 2299142a2a3SPhilip Paeps Move America/Nipigon, America/Rainy_River, and America/Thunder_Bay 2309142a2a3SPhilip Paeps to 'backzone'; backward-compatibility links still work, albeit 2319142a2a3SPhilip Paeps with some different timestamps before November 2005. 2329142a2a3SPhilip Paeps 2339142a2a3SPhilip Paeps Changes to code 2349142a2a3SPhilip Paeps 2359142a2a3SPhilip Paeps zic now supports links to links regardless of input line order. 2369142a2a3SPhilip Paeps For example, if Australia/Sydney is a Zone, the lines 2379142a2a3SPhilip Paeps Link Australia/Canberra Australia/ACT 2389142a2a3SPhilip Paeps Link Australia/Sydney Australia/Canberra 2399142a2a3SPhilip Paeps now work correctly, even though the shell commands 2409142a2a3SPhilip Paeps ln Australia/Canberra Australia/ACT 2419142a2a3SPhilip Paeps ln Australia/Sydney Australia/Canberra 2429142a2a3SPhilip Paeps would fail because the first command attempts to use a link 2439142a2a3SPhilip Paeps Australia/Canberra that does not exist until after the second 2449142a2a3SPhilip Paeps command is executed. Previously, zic had unspecified behavior if 2459142a2a3SPhilip Paeps a Link line's target was another link, and zic often misbehaved if 2469142a2a3SPhilip Paeps a Link line's target was a later Link line. 2479142a2a3SPhilip Paeps 2489142a2a3SPhilip Paeps Fix line number in zic's diagnostic for a link to a link. 2499142a2a3SPhilip Paeps 2509142a2a3SPhilip Paeps Fix a bug that caused localtime to mishandle timestamps starting 2519142a2a3SPhilip Paeps in the year 2438 when reading data generated by 'zic -b fat' when 2529142a2a3SPhilip Paeps distant-future DST transitions occur at times given in standard 2539142a2a3SPhilip Paeps time or in UT, not the usual case of local time. This occurs when 2549142a2a3SPhilip Paeps the corresponding .zi Rule lines specify DST transitions with TO 2559142a2a3SPhilip Paeps columns of 'max' and AT columns that end in 's' or 'u'. The 2569142a2a3SPhilip Paeps number 2438 comes from the 32-bit limit in the year 2038, plus the 2579142a2a3SPhilip Paeps 400-year Gregorian cycle. (Problem reported by Bradley White.) 2589142a2a3SPhilip Paeps 2599142a2a3SPhilip Paeps On glibc 2.34 and later, which optionally supports 64-bit time_t 2609142a2a3SPhilip Paeps on platforms like x86 where time_t was traditionally 32 bits, 2619142a2a3SPhilip Paeps default time_t to 64 instead of 32 bits. This lets functions like 2629142a2a3SPhilip Paeps localtime support timestamps after the year 2038, and fixes 2639142a2a3SPhilip Paeps year-2038 problems in zic when accessing files dated after 2038. 2649142a2a3SPhilip Paeps To continue to limit time_t to 32 bits on these platforms, use 2659142a2a3SPhilip Paeps "make CFLAGS='-D_TIME_BITS=32'". 2669142a2a3SPhilip Paeps 2679142a2a3SPhilip Paeps In C code, do not enable large-file support on platforms like AIX 2689142a2a3SPhilip Paeps and macOS that no longer need it now that tzcode does not use 2699142a2a3SPhilip Paeps off_t or related functions like 'stat'. Large-file support is 2709142a2a3SPhilip Paeps still enabled by default on GNU/Linux, as it is needed for 64-bit 2719142a2a3SPhilip Paeps time_t support. 2729142a2a3SPhilip Paeps 2739142a2a3SPhilip Paeps In C code, prefer C23 keywords to pre-C23 macros for alignof, 2749142a2a3SPhilip Paeps bool, false, and true. Also, use the following C23 features if 2759142a2a3SPhilip Paeps available: __has_include, unreachable. 2769142a2a3SPhilip Paeps 2779142a2a3SPhilip Paeps zic no longer works around Qt bug 53071, as the relevant Qt 2789142a2a3SPhilip Paeps releases have been out of support since 2019. This change affects 2799142a2a3SPhilip Paeps only fat TZif files, as thin files never had the workaround. 2809142a2a3SPhilip Paeps 2819142a2a3SPhilip Paeps zdump no longer modifies the environ vector when compiled on 2829142a2a3SPhilip Paeps platforms lacking tm_zone or when compiled with -DUSE_LTZ=0. 2839142a2a3SPhilip Paeps This avoid undefined behavior on POSIX platforms. 2849142a2a3SPhilip Paeps 2859142a2a3SPhilip Paeps 2865d56371cSPhilip PaepsRelease 2022e - 2022-10-11 11:13:02 -0700 2875d56371cSPhilip Paeps 2885d56371cSPhilip Paeps Briefly: 2895d56371cSPhilip Paeps Jordan and Syria switch from +02/+03 with DST to year-round +03. 2905d56371cSPhilip Paeps 2915d56371cSPhilip Paeps Changes to future timestamps 2925d56371cSPhilip Paeps 2935d56371cSPhilip Paeps Jordan and Syria are abandoning the DST regime and are changing to 2945d56371cSPhilip Paeps permanent +03, so they will not fall back from +03 to +02 on 2955d56371cSPhilip Paeps 2022-10-28. (Thanks to Steffen Thorsen and Issam Al-Zuwairi.) 2965d56371cSPhilip Paeps 2975d56371cSPhilip Paeps Changes to past timestamps 2985d56371cSPhilip Paeps 2995d56371cSPhilip Paeps On 1922-01-01 Tijuana adopted standard time at 00:00, not 01:00. 3005d56371cSPhilip Paeps 3015d56371cSPhilip Paeps Changes to past time zone abbreviations and DST flags 3025d56371cSPhilip Paeps 3035d56371cSPhilip Paeps The temporary advancement of clocks in central Mexico in summer 3045d56371cSPhilip Paeps 1931 is now treated as daylight saving time, instead of as two 3055d56371cSPhilip Paeps changes to standard time. 3065d56371cSPhilip Paeps 3075d56371cSPhilip Paeps 3081576451aSPhilip PaepsRelease 2022d - 2022-09-23 12:02:57 -0700 3091576451aSPhilip Paeps 3101576451aSPhilip Paeps Briefly: 3111576451aSPhilip Paeps Palestine transitions are now Saturdays at 02:00. 3121576451aSPhilip Paeps Simplify three Ukraine zones into one. 3131576451aSPhilip Paeps 3141576451aSPhilip Paeps Changes to future timestamps 3151576451aSPhilip Paeps 3161576451aSPhilip Paeps Palestine now springs forward and falls back at 02:00 on the 3171576451aSPhilip Paeps first Saturday on or after March 24 and October 24, respectively. 3181576451aSPhilip Paeps This means 2022 falls back 10-29 at 02:00, not 10-28 at 01:00. 3191576451aSPhilip Paeps (Thanks to Heba Hamad.) 3201576451aSPhilip Paeps 3211576451aSPhilip Paeps Changes to past timestamps 3221576451aSPhilip Paeps 3231576451aSPhilip Paeps Simplify three Ukraine zones to one, since the post-1970 3241576451aSPhilip Paeps differences seem to have been imaginary. Move Europe/Uzhgorod and 3251576451aSPhilip Paeps Europe/Zaporozhye to 'backzone'; backward-compatibility links 3261576451aSPhilip Paeps still work, albeit with different timestamps before October 1991. 3271576451aSPhilip Paeps 3281576451aSPhilip Paeps 3295f33eb72SPhilip PaepsRelease 2022c - 2022-08-15 17:47:18 -0700 3305f33eb72SPhilip Paeps 3315f33eb72SPhilip Paeps Briefly: 3325f33eb72SPhilip Paeps Work around awk bug in FreeBSD, macOS, etc. 3335f33eb72SPhilip Paeps Improve tzselect on intercontinental Zones. 3345f33eb72SPhilip Paeps 3355f33eb72SPhilip Paeps Changes to code 3365f33eb72SPhilip Paeps 3375f33eb72SPhilip Paeps Work around a bug in onetrueawk that broke commands like 3385f33eb72SPhilip Paeps 'make traditional_tarballs' on FreeBSD, macOS, etc. 3395f33eb72SPhilip Paeps (Problem reported by Deborah Goldsmith.) 3405f33eb72SPhilip Paeps 3415f33eb72SPhilip Paeps Add code to tzselect that uses experimental structured comments in 3425f33eb72SPhilip Paeps zone1970.tab to clarify whether Zones like Africa/Abidjan and 3435f33eb72SPhilip Paeps Europe/Istanbul cross continent or ocean boundaries. 3445f33eb72SPhilip Paeps (Inspired by a problem reported by Peter Krefting.) 3455f33eb72SPhilip Paeps 3465f33eb72SPhilip Paeps Fix bug with 'zic -d /a/b/c' when /a is unwritable but the 3475f33eb72SPhilip Paeps directory /a/b already exists. 3485f33eb72SPhilip Paeps 3495f33eb72SPhilip Paeps Remove zoneinfo2tdf.pl, as it was unused and triggered false 3505f33eb72SPhilip Paeps malware alarms on some email servers. 3515f33eb72SPhilip Paeps 3525f33eb72SPhilip Paeps 3539f9fc6bbSPhilip PaepsRelease 2022b - 2022-08-10 15:38:32 -0700 3549f9fc6bbSPhilip Paeps 3559f9fc6bbSPhilip Paeps Briefly: 3569f9fc6bbSPhilip Paeps Chile's DST is delayed by a week in September 2022. 3579f9fc6bbSPhilip Paeps Iran no longer observes DST after 2022. 3589f9fc6bbSPhilip Paeps Rename Europe/Kiev to Europe/Kyiv. 3599f9fc6bbSPhilip Paeps New zic -R option 3609f9fc6bbSPhilip Paeps Vanguard form now uses %z. 3619f9fc6bbSPhilip Paeps Finish moving duplicate-since-1970 zones to 'backzone'. 3629f9fc6bbSPhilip Paeps New build option PACKRATLIST 3639f9fc6bbSPhilip Paeps New tailored_tarballs target, replacing rearguard_tarballs 3649f9fc6bbSPhilip Paeps 3659f9fc6bbSPhilip Paeps Changes to future timestamps 3669f9fc6bbSPhilip Paeps 3679f9fc6bbSPhilip Paeps Chile's 2022 DST start is delayed from September 4 to September 11. 3689f9fc6bbSPhilip Paeps (Thanks to Juan Correa.) 3699f9fc6bbSPhilip Paeps 3709f9fc6bbSPhilip Paeps Iran plans to stop observing DST permanently, after it falls back 3719f9fc6bbSPhilip Paeps on 2022-09-21. (Thanks to Ali Mirjamali.) 3729f9fc6bbSPhilip Paeps 3739f9fc6bbSPhilip Paeps Changes to past timestamps 3749f9fc6bbSPhilip Paeps 3759f9fc6bbSPhilip Paeps Finish moving to 'backzone' the location-based zones whose 3769f9fc6bbSPhilip Paeps timestamps since 1970 are duplicates; adjust links accordingly. 3779f9fc6bbSPhilip Paeps This change ordinarily affects only pre-1970 timestamps, and with 3789f9fc6bbSPhilip Paeps the new PACKRATLIST option it does not affect any timestamps. 3799f9fc6bbSPhilip Paeps In this round the affected zones are Antarctica/Vostok, 3809f9fc6bbSPhilip Paeps Asia/Brunei, Asia/Kuala_Lumpur, Atlantic/Reykjavik, 3819f9fc6bbSPhilip Paeps Europe/Amsterdam, Europe/Copenhagen, Europe/Luxembourg, 3829f9fc6bbSPhilip Paeps Europe/Monaco, Europe/Oslo, Europe/Stockholm, Indian/Christmas, 3839f9fc6bbSPhilip Paeps Indian/Cocos, Indian/Kerguelen, Indian/Mahe, Indian/Reunion, 3849f9fc6bbSPhilip Paeps Pacific/Chuuk, Pacific/Funafuti, Pacific/Majuro, Pacific/Pohnpei, 3859f9fc6bbSPhilip Paeps Pacific/Wake and Pacific/Wallis, and the affected links are 3869f9fc6bbSPhilip Paeps Arctic/Longyearbyen, Atlantic/Jan_Mayen, Iceland, Pacific/Ponape, 3879f9fc6bbSPhilip Paeps Pacific/Truk, and Pacific/Yap. 3889f9fc6bbSPhilip Paeps 3899f9fc6bbSPhilip Paeps From fall 1994 through fall 1995, Shanks wrote that Crimea's 3909f9fc6bbSPhilip Paeps DST transitions were at 02:00 standard time, not at 00:00. 3919f9fc6bbSPhilip Paeps (Thanks to Michael Deckers.) 3929f9fc6bbSPhilip Paeps 3939f9fc6bbSPhilip Paeps Iran adopted standard time in 1935, not 1946. In 1977 it observed 3949f9fc6bbSPhilip Paeps DST from 03-21 23:00 to 10-20 24:00; its 1978 transitions were on 3959f9fc6bbSPhilip Paeps 03-24 and 08-05, not 03-20 and 10-20; and its spring 1979 3969f9fc6bbSPhilip Paeps transition was on 05-27, not 03-21. 3979f9fc6bbSPhilip Paeps (Thanks to Roozbeh Pournader and Francis Santoni.) 3989f9fc6bbSPhilip Paeps 3999f9fc6bbSPhilip Paeps Chile's observance of -04 from 1946-08-29 through 1947-03-31 was 4009f9fc6bbSPhilip Paeps considered DST, not standard time. Santiago and environs had moved 4019f9fc6bbSPhilip Paeps their clocks back to rejoin the rest of mainland Chile; put this 4029f9fc6bbSPhilip Paeps change at the end of 1946-08-28. (Thanks to Michael Deckers.) 4039f9fc6bbSPhilip Paeps 4049f9fc6bbSPhilip Paeps Some old, small clock transitions have been removed, as people at 4059f9fc6bbSPhilip Paeps the time did not change their clocks. This affects Asia/Hong_Kong 4069f9fc6bbSPhilip Paeps in 1904, Asia/Ho_Chi_Minh in 1906, and Europe/Dublin in 1880. 4079f9fc6bbSPhilip Paeps 4089f9fc6bbSPhilip Paeps Changes to zone name 4099f9fc6bbSPhilip Paeps 4109f9fc6bbSPhilip Paeps Rename Europe/Kiev to Europe/Kyiv, as "Kyiv" is more common in 4119f9fc6bbSPhilip Paeps English now. Spelling of other names in Ukraine has not yet 4129f9fc6bbSPhilip Paeps demonstrably changed in common English practice so for now these 4139f9fc6bbSPhilip Paeps names retain old spellings, as in other countries (e.g., 4149f9fc6bbSPhilip Paeps Europe/Prague not "Praha", and Europe/Sofia not "Sofiya"). 4159f9fc6bbSPhilip Paeps 4169f9fc6bbSPhilip Paeps Changes to code 4179f9fc6bbSPhilip Paeps 4189f9fc6bbSPhilip Paeps zic has a new option '-R @N' to output explicit transitions < N. 4199f9fc6bbSPhilip Paeps (Need suggested by Almaz Mingaleev.) 4209f9fc6bbSPhilip Paeps 4219f9fc6bbSPhilip Paeps 'zic -r @N' no longer outputs bad data when N < first transition. 4229f9fc6bbSPhilip Paeps (Problem introduced in 2021d and reported by Peter Krefting.) 4239f9fc6bbSPhilip Paeps 4249f9fc6bbSPhilip Paeps zic now checks its input for NUL bytes and unterminated lines, and 4259f9fc6bbSPhilip Paeps now supports input line lengths up to 2048 (not 512) bytes. 4269f9fc6bbSPhilip Paeps 4279f9fc6bbSPhilip Paeps gmtime and related code now use the abbreviation "UTC" not "GMT". 4289f9fc6bbSPhilip Paeps POSIX is being revised to require this. 4299f9fc6bbSPhilip Paeps 4309f9fc6bbSPhilip Paeps When tzset and related functions set vestigial static variables 4319f9fc6bbSPhilip Paeps like tzname, they now prefer specified timestamps to unspecified ones. 4329f9fc6bbSPhilip Paeps (Problem reported by Almaz Mingaleev.) 4339f9fc6bbSPhilip Paeps 4349f9fc6bbSPhilip Paeps zic no longer complains "can't determine time zone abbreviation to 4359f9fc6bbSPhilip Paeps use just after until time" when a transition to a new standard 4365f33eb72SPhilip Paeps time occurs simultaneously with the first DST fallback transition. 4379f9fc6bbSPhilip Paeps 4389f9fc6bbSPhilip Paeps Changes to build procedure 4399f9fc6bbSPhilip Paeps 4409f9fc6bbSPhilip Paeps Source data in vanguard form now uses the %z notation, introduced 4419f9fc6bbSPhilip Paeps in release 2015f. For example, for America/Sao_Paulo vanguard 4429f9fc6bbSPhilip Paeps form contains the zone continuation line "-3:00 Brazil %z", which 4439f9fc6bbSPhilip Paeps is simpler and more reliable than the line "-3:00 Brazil -03/-02" 4449f9fc6bbSPhilip Paeps used in main and rearguard forms. The plan is for the main form 4459f9fc6bbSPhilip Paeps to use %z eventually; in the meantime maintainers of zi parsers 4469f9fc6bbSPhilip Paeps are encouraged to test the parsers on vanguard.zi. 4479f9fc6bbSPhilip Paeps 4489f9fc6bbSPhilip Paeps The Makefile has a new PACKRATLIST option to select a subset of 4499f9fc6bbSPhilip Paeps 'backzone'. For example, 'make PACKRATDATA=backzone 4509f9fc6bbSPhilip Paeps PACKRATLIST=zone.tab' now generates TZif files identical to those 4519f9fc6bbSPhilip Paeps of the global-tz project. 4529f9fc6bbSPhilip Paeps 4539f9fc6bbSPhilip Paeps The Makefile has a new tailored_tarballs target for generating 4549f9fc6bbSPhilip Paeps special-purpose tarballs. It generalizes and replaces the 4559f9fc6bbSPhilip Paeps rearguard_tarballs target and related targets and macros, which 4569f9fc6bbSPhilip Paeps are now obsolescent. 4579f9fc6bbSPhilip Paeps 4589f9fc6bbSPhilip Paeps 'make install' now defaults LOCALTIME to Factory not GMT, 4599f9fc6bbSPhilip Paeps which means the default abbreviation is now "-00" not "GMT". 4609f9fc6bbSPhilip Paeps 4619f9fc6bbSPhilip Paeps Remove the posix_packrat target, marked obsolescent in 2016a. 4629f9fc6bbSPhilip Paeps 4639f9fc6bbSPhilip Paeps 4648ea5af2bSPhilip PaepsRelease 2022a - 2022-03-15 23:02:01 -0700 4658ea5af2bSPhilip Paeps 4668ea5af2bSPhilip Paeps Briefly: 4678ea5af2bSPhilip Paeps Palestine will spring forward on 2022-03-27, not -03-26. 4688ea5af2bSPhilip Paeps zdump -v now outputs better failure indications. 4698ea5af2bSPhilip Paeps Bug fixes for code that reads corrupted TZif data. 4708ea5af2bSPhilip Paeps 4718ea5af2bSPhilip Paeps Changes to future timestamps 4728ea5af2bSPhilip Paeps 4738ea5af2bSPhilip Paeps Palestine will spring forward on 2022-03-27, not 2022-03-26. 4748ea5af2bSPhilip Paeps (Thanks to Heba Hamad.) Predict future transitions for first 4758ea5af2bSPhilip Paeps Sunday >= March 25. Additionally, predict fallbacks to be the first 4768ea5af2bSPhilip Paeps Friday on or after October 23, not October's last Friday, to be more 4778ea5af2bSPhilip Paeps consistent with recent practice. The first differing fallback 4788ea5af2bSPhilip Paeps prediction is on 2025-10-24, not 2025-10-31. 4798ea5af2bSPhilip Paeps 4808ea5af2bSPhilip Paeps Changes to past timestamps 4818ea5af2bSPhilip Paeps 4828ea5af2bSPhilip Paeps From 1992 through spring 1996, Ukraine's DST transitions were at 4838ea5af2bSPhilip Paeps 02:00 standard time, not at 01:00 UTC. (Thanks to Alois Treindl.) 4848ea5af2bSPhilip Paeps 4858ea5af2bSPhilip Paeps Chile's Santiago Mean Time and its LMT precursor have been adjusted 4868ea5af2bSPhilip Paeps eastward by 1 second to align with past and present law. 4878ea5af2bSPhilip Paeps 4888ea5af2bSPhilip Paeps Changes to commentary 4898ea5af2bSPhilip Paeps 4908ea5af2bSPhilip Paeps Add several references for Chile's 1946/1947 transitions, some of 4918ea5af2bSPhilip Paeps which only affected portions of the country. 4928ea5af2bSPhilip Paeps 4938ea5af2bSPhilip Paeps Changes to code 4948ea5af2bSPhilip Paeps 4958ea5af2bSPhilip Paeps Fix bug when mktime gets confused by truncated TZif files with 4968ea5af2bSPhilip Paeps unspecified local time. (Problem reported by Almaz Mingaleev.) 4978ea5af2bSPhilip Paeps 4988ea5af2bSPhilip Paeps Fix bug when 32-bit time_t code reads malformed 64-bit TZif data. 4998ea5af2bSPhilip Paeps (Problem reported by Christos Zoulas.) 5008ea5af2bSPhilip Paeps 5018ea5af2bSPhilip Paeps When reading a version 2 or later TZif file, the TZif reader now 5028ea5af2bSPhilip Paeps validates the version 1 header and data block only enough to skip 5038ea5af2bSPhilip Paeps over them, as recommended by RFC 8536 section 4. Also, the TZif 5048ea5af2bSPhilip Paeps reader no longer mistakenly attempts to parse a version 1 TZIf 5058ea5af2bSPhilip Paeps file header as a TZ string. 5068ea5af2bSPhilip Paeps 5078ea5af2bSPhilip Paeps zdump -v now outputs "(localtime failed)" and "(gmtime failed)" 5088ea5af2bSPhilip Paeps when local time and UT cannot be determined for a timestamp. 5098ea5af2bSPhilip Paeps 5108ea5af2bSPhilip Paeps Changes to build procedure 5118ea5af2bSPhilip Paeps 5128ea5af2bSPhilip Paeps Distribution tarballs now use standard POSIX.1-1988 ustar format 5138ea5af2bSPhilip Paeps instead of GNU format. Although the formats are almost identical 5148ea5af2bSPhilip Paeps for these tarballs, ustar headers' magic fields contain "ustar" 5158ea5af2bSPhilip Paeps instead of "ustar ", and their version fields contain "00" instead 5168ea5af2bSPhilip Paeps of " ". The two formats are planned to diverge more significantly 5178ea5af2bSPhilip Paeps for tzdb releases after 2242-03-16 12:56:31 UTC, when the ustar 5188ea5af2bSPhilip Paeps format becomes obsolete and the tarballs switch to pax format, an 5198ea5af2bSPhilip Paeps extension of ustar. For details about these formats, please see 5208ea5af2bSPhilip Paeps "pax - portable archive interchange", IEEE Std 1003.1-2017, 5218ea5af2bSPhilip Paeps <https://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13>. 5228ea5af2bSPhilip Paeps 5238ea5af2bSPhilip Paeps 524b02df232SPhilip PaepsRelease 2021e - 2021-10-21 18:41:00 -0700 525b02df232SPhilip Paeps 526b02df232SPhilip Paeps Changes to future timestamps 527b02df232SPhilip Paeps 528b02df232SPhilip Paeps Palestine will fall back 10-29 (not 10-30) at 01:00. 529b02df232SPhilip Paeps (Thanks to P Chan and Heba Hemad.) 530b02df232SPhilip Paeps 531b02df232SPhilip Paeps 5326b7d3b4dSPhilip PaepsRelease 2021d - 2021-10-15 13:48:18 -0700 5336b7d3b4dSPhilip Paeps 5346b7d3b4dSPhilip Paeps Briefly: 5356b7d3b4dSPhilip Paeps Fiji suspends DST for the 2021/2022 season. 5366b7d3b4dSPhilip Paeps 'zic -r' marks unspecified timestamps with "-00". 5376b7d3b4dSPhilip Paeps 5386b7d3b4dSPhilip Paeps Changes to future timestamps 5396b7d3b4dSPhilip Paeps 5406b7d3b4dSPhilip Paeps Fiji will suspend observance of DST for the 2021/2022 season. 5416b7d3b4dSPhilip Paeps Assume for now that it will return next year. (Thanks to Jashneel 5426b7d3b4dSPhilip Paeps Kumar and P Chan.) 5436b7d3b4dSPhilip Paeps 5446b7d3b4dSPhilip Paeps Changes to code 5456b7d3b4dSPhilip Paeps 5466b7d3b4dSPhilip Paeps 'zic -r' now uses "-00" time zone abbreviations for intervals 5476b7d3b4dSPhilip Paeps with UT offsets that are unspecified due to -r truncation. 5486b7d3b4dSPhilip Paeps This implements a change in draft Internet RFC 8536bis. 5496b7d3b4dSPhilip Paeps 5506b7d3b4dSPhilip Paeps 55193d120dbSPhilip PaepsRelease 2021c - 2021-10-01 14:21:49 -0700 55293d120dbSPhilip Paeps 55393d120dbSPhilip Paeps Briefly: 55493d120dbSPhilip Paeps Revert most 2021b changes to 'backward'. 55593d120dbSPhilip Paeps Fix 'zic -b fat' bug in pre-1970 32-bit data. 55693d120dbSPhilip Paeps Fix two Link line typos. 55793d120dbSPhilip Paeps Distribute SECURITY file. 55893d120dbSPhilip Paeps 55993d120dbSPhilip Paeps This release is intended as a bugfix release, to fix compatibility 56093d120dbSPhilip Paeps problems and typos reported since 2021b was released. 56193d120dbSPhilip Paeps 56293d120dbSPhilip Paeps Changes to Link directives 56393d120dbSPhilip Paeps 56493d120dbSPhilip Paeps Revert almost all of 2021b's changes to the 'backward' file, 56593d120dbSPhilip Paeps by moving Link directives back to where they were in 2021a. 56693d120dbSPhilip Paeps Although 'zic' doesn't care which source file contains a Link 56793d120dbSPhilip Paeps directive, some downstream uses ran into trouble with the move. 56893d120dbSPhilip Paeps (Problem reported by Stephen Colebourne for Joda-Time.) 56993d120dbSPhilip Paeps 57093d120dbSPhilip Paeps Fix typo that linked Atlantic/Jan_Mayen to the wrong location 57193d120dbSPhilip Paeps (problem reported by Chris Walton). 57293d120dbSPhilip Paeps 57393d120dbSPhilip Paeps Fix 'backzone' typo that linked America/Virgin to the wrong 57493d120dbSPhilip Paeps location (problem reported by Michael Deckers). 57593d120dbSPhilip Paeps 57693d120dbSPhilip Paeps Changes to code 57793d120dbSPhilip Paeps 57893d120dbSPhilip Paeps Fix a bug in 'zic -b fat' that caused old timestamps to be 57993d120dbSPhilip Paeps mishandled in 32-bit-only readers (problem reported by Daniel 58093d120dbSPhilip Paeps Fischer). 58193d120dbSPhilip Paeps 58293d120dbSPhilip Paeps Changes to documentation 58393d120dbSPhilip Paeps 58493d120dbSPhilip Paeps Distribute the SECURITY file (problem reported by Andreas Radke). 58593d120dbSPhilip Paeps 58693d120dbSPhilip Paeps 58794c2d487SPhilip PaepsRelease 2021b - 2021-09-24 16:23:00 -0700 58894c2d487SPhilip Paeps 58994c2d487SPhilip Paeps Briefly: 59094c2d487SPhilip Paeps Jordan now starts DST on February's last Thursday. 59194c2d487SPhilip Paeps Samoa no longer observes DST. 59294c2d487SPhilip Paeps Merge more location-based Zones whose timestamps agree since 1970. 59394c2d487SPhilip Paeps Move some backward-compatibility links to 'backward'. 59494c2d487SPhilip Paeps Rename Pacific/Enderbury to Pacific/Kanton. 59594c2d487SPhilip Paeps Correct many pre-1993 transitions in Malawi, Portugal, etc. 59694c2d487SPhilip Paeps zic now creates each output file or link atomically. 59794c2d487SPhilip Paeps zic -L no longer omits the POSIX TZ string in its output. 59894c2d487SPhilip Paeps zic fixes for truncation and leap second table expiration. 59994c2d487SPhilip Paeps zic now follows POSIX for TZ strings using all-year DST. 60094c2d487SPhilip Paeps Fix some localtime crashes and bugs in obscure cases. 60194c2d487SPhilip Paeps zdump -v now outputs more-useful boundary cases. 60294c2d487SPhilip Paeps tzfile.5 better matches a draft successor to RFC 8536. 60394c2d487SPhilip Paeps A new file SECURITY. 60494c2d487SPhilip Paeps 60594c2d487SPhilip Paeps This release is prompted by recent announcements by Jordan and Samoa. 60694c2d487SPhilip Paeps It incorporates many other changes that had accumulated since 2021a. 60794c2d487SPhilip Paeps However, it omits most proposed changes that merged all Zones 60894c2d487SPhilip Paeps agreeing since 1970, as concerns were raised about doing too many of 60994c2d487SPhilip Paeps these changes at once. It does keeps some of these changes in the 61094c2d487SPhilip Paeps interest of making tzdb more equitable one step at a time; see 61194c2d487SPhilip Paeps "Merge more location-based Zones" below. 61294c2d487SPhilip Paeps 61394c2d487SPhilip Paeps Changes to future timestamps 61494c2d487SPhilip Paeps 61594c2d487SPhilip Paeps Jordan now starts DST on February's last Thursday. 61694c2d487SPhilip Paeps (Thanks to Steffen Thorsen.) 61794c2d487SPhilip Paeps 61894c2d487SPhilip Paeps Samoa no longer observes DST. (Thanks to Geoffrey D. Bennett.) 61994c2d487SPhilip Paeps 62094c2d487SPhilip Paeps Changes to zone name 62194c2d487SPhilip Paeps 62294c2d487SPhilip Paeps Rename Pacific/Enderbury to Pacific/Kanton. When we added 62394c2d487SPhilip Paeps Enderbury in 1993, we did not know that it is uninhabited and that 62494c2d487SPhilip Paeps Kanton (population two dozen) is the only inhabited location in 6259f9fc6bbSPhilip Paeps that timezone. The old name is now a backward-compatibility link. 62694c2d487SPhilip Paeps 62794c2d487SPhilip Paeps Changes to past timestamps 62894c2d487SPhilip Paeps 62994c2d487SPhilip Paeps Correct many pre-1993 transitions, fixing entries originally 63094c2d487SPhilip Paeps derived from Shanks, Whitman, and Mundell. The fixes include: 63194c2d487SPhilip Paeps - Barbados: standard time was introduced in 1911, not 1932; and 63294c2d487SPhilip Paeps DST was observed in 1942-1944 63394c2d487SPhilip Paeps - Cook Islands: In 1899 they switched from east to west of GMT, 63494c2d487SPhilip Paeps celebrating Christmas for two days. They (and Niue) switched 63594c2d487SPhilip Paeps to standard time in 1952, not 1901. 63694c2d487SPhilip Paeps - Guyana: corrected LMT for Georgetown; the introduction of 63794c2d487SPhilip Paeps standard time in 1911, not 1915; and corrections to 1975 and 63894c2d487SPhilip Paeps 1992 transitions 63994c2d487SPhilip Paeps - Kanton: uninhabited before 1937-08-31 64094c2d487SPhilip Paeps - Niue: only observed -11:20 from 1952 through 1964, then went to 64194c2d487SPhilip Paeps -11 instead of -11:30 64294c2d487SPhilip Paeps - Portugal: DST was observed in 1950 64394c2d487SPhilip Paeps - Tonga: corrected LMT; the introduction of standard time in 1945, 64494c2d487SPhilip Paeps not 1901; and corrections to the transition from +12:20 to +13 64594c2d487SPhilip Paeps in 1961, not 1941 64694c2d487SPhilip Paeps Additional fixes to entries in the 'backzone' file include: 64794c2d487SPhilip Paeps - Enderbury: inhabited only 1860/1885 and 1938-03-06/1942-02-09 64894c2d487SPhilip Paeps - The Gambia: 1933 and 1942 transitions 64994c2d487SPhilip Paeps - Malawi: several 1911 through 1925 transitions 65094c2d487SPhilip Paeps - Sierra Leone: several 1913 through 1941 transitions, and DST 65194c2d487SPhilip Paeps was NOT observed in 1957 through 1962 65294c2d487SPhilip Paeps (Thanks to P Chan, Michael Deckers, Alexander Krivenyshev and 65394c2d487SPhilip Paeps Alois Treindl.) 65494c2d487SPhilip Paeps 65594c2d487SPhilip Paeps Merge more location-based Zones whose timestamps agree since 1970, 65694c2d487SPhilip Paeps as pre-1970 timestamps are out of scope. This is part of a 65794c2d487SPhilip Paeps process that has been ongoing since 2013. This does not affect 65894c2d487SPhilip Paeps post-1970 timestamps, and timezone historians who build with 'make 65994c2d487SPhilip Paeps PACKRATDATA=backzone' should see no changes to pre-1970 timestamps. 66094c2d487SPhilip Paeps When merging, keep the most-populous location's data, and move 66194c2d487SPhilip Paeps data for other locations to 'backzone' with a backward 66294c2d487SPhilip Paeps link in 'backward'. For example, move America/Creston data to 66394c2d487SPhilip Paeps 'backzone' with a link in 'backward' from America/Phoenix because 66494c2d487SPhilip Paeps the two timezones' timestamps agree since 1970; this change 66594c2d487SPhilip Paeps affects some pre-1968 timestamps in America/Creston because 66694c2d487SPhilip Paeps Creston and Phoenix disagreed before 1968. The affected Zones 66794c2d487SPhilip Paeps are Africa/Accra, America/Atikokan, America/Blanc-Sablon, 66894c2d487SPhilip Paeps America/Creston, America/Curacao, America/Nassau, 66994c2d487SPhilip Paeps America/Port_of_Spain, Antarctica/DumontDUrville, and 67094c2d487SPhilip Paeps Antarctica/Syowa. 67194c2d487SPhilip Paeps 67294c2d487SPhilip Paeps Changes to maintenance procedure 67394c2d487SPhilip Paeps 67494c2d487SPhilip Paeps The new file SECURITY covers how to report security-related bugs. 67594c2d487SPhilip Paeps 67694c2d487SPhilip Paeps Several backward-compatibility links have been moved to the 67794c2d487SPhilip Paeps 'backward' file. These links, which range from Africa/Addis_Ababa 67894c2d487SPhilip Paeps to Pacific/Saipan, are only for compatibility with now-obsolete 67994c2d487SPhilip Paeps guidelines suggesting an entry for every ISO 3166 code. 68094c2d487SPhilip Paeps The intercontinental convenience links Asia/Istanbul and 68194c2d487SPhilip Paeps Europe/Nicosia have also been moved to 'backward'. 68294c2d487SPhilip Paeps 68394c2d487SPhilip Paeps Changes to code 68494c2d487SPhilip Paeps 68594c2d487SPhilip Paeps zic now creates each output file or link atomically, 68694c2d487SPhilip Paeps possibly by creating a temporary file and then renaming it. 68794c2d487SPhilip Paeps This avoids races where a TZ setting would temporarily stop 68894c2d487SPhilip Paeps working while zic was installing a replacement file or link. 68994c2d487SPhilip Paeps 69094c2d487SPhilip Paeps zic -L no longer omits the POSIX TZ string in its output. 69194c2d487SPhilip Paeps Starting with 2020a, zic -L truncated its output according to the 69294c2d487SPhilip Paeps "Expires" directive or "#expires" comment in the leapseconds file. 69394c2d487SPhilip Paeps The resulting TZif files omitted daylight saving transitions after 694*259e2ad7SPhilip Paeps the leap second table expired, which led to far less accurate 69594c2d487SPhilip Paeps predictions of times after the expiry. Although future timestamps 69694c2d487SPhilip Paeps cannot be converted accurately in the presence of leap seconds, it 69794c2d487SPhilip Paeps is more accurate to convert near-future timestamps with a few 69894c2d487SPhilip Paeps seconds error than with an hour error, so zic -L no longer 69994c2d487SPhilip Paeps truncates output in this way. 70094c2d487SPhilip Paeps 70194c2d487SPhilip Paeps Instead, when zic -L is given the "Expires" directive, it now 70294c2d487SPhilip Paeps outputs the expiration by appending a no-change entry to the leap 70394c2d487SPhilip Paeps second table. Although this should work well with most TZif 70494c2d487SPhilip Paeps readers, it does not conform to Internet RFC 8536 and some pickier 70594c2d487SPhilip Paeps clients (including tzdb 2017c through 2021a) reject it, so 70694c2d487SPhilip Paeps "Expires" directives are currently disabled by default. To enable 70794c2d487SPhilip Paeps them, set the EXPIRES_LINE Makefile variable. If a TZif file uses 70894c2d487SPhilip Paeps this new feature it is marked with a new TZif version number 4, 70994c2d487SPhilip Paeps a format intended to be documented in a successor to RFC 8536. 71094c2d487SPhilip Paeps 71194c2d487SPhilip Paeps zic -L LEAPFILE -r @LO no longer generates an invalid TZif file 71294c2d487SPhilip Paeps that omits leap second information for the range LO..B when LO 71394c2d487SPhilip Paeps falls between two leap seconds A and B. Instead, it generates a 714*259e2ad7SPhilip Paeps TZif version 4 file that represents the previously missing 71594c2d487SPhilip Paeps information. 71694c2d487SPhilip Paeps 71794c2d487SPhilip Paeps The TZif reader now allows the leap second table to begin with a 71894c2d487SPhilip Paeps correction other than -1 or +1, and to contain adjacent 71994c2d487SPhilip Paeps transitions with equal corrections. This supports TZif version 4. 72094c2d487SPhilip Paeps 72194c2d487SPhilip Paeps The TZif reader now lets leap seconds occur less than 28 days 72294c2d487SPhilip Paeps apart. This supports possible future TZif extensions. 72394c2d487SPhilip Paeps 72494c2d487SPhilip Paeps Fix bug that caused 'localtime' etc. to crash when TZ was 72594c2d487SPhilip Paeps set to a all-year DST string like "EST5EDT4,0/0,J365/25" that does 72694c2d487SPhilip Paeps not conform to POSIX but does conform to Internet RFC 8536. 72794c2d487SPhilip Paeps 72894c2d487SPhilip Paeps Fix another bug that caused 'localtime' etc. to crash when TZ was 72994c2d487SPhilip Paeps set to a POSIX-conforming but unusual TZ string like 73094c2d487SPhilip Paeps "EST5EDT4,0/0,J365/0", where almost all the year is DST. 73194c2d487SPhilip Paeps 73294c2d487SPhilip Paeps Fix yet another bug that caused 'localtime' etc. to mishandle slim 73394c2d487SPhilip Paeps TZif files containing leap seconds after the last explicit 73494c2d487SPhilip Paeps transition in the table, or when handling far-future timestamps 73594c2d487SPhilip Paeps in slim TZif files lacking leap seconds. 73694c2d487SPhilip Paeps 73794c2d487SPhilip Paeps Fix localtime misbehavior involving positive leap seconds. 73894c2d487SPhilip Paeps This change affects only behavior for "right" system time, 73994c2d487SPhilip Paeps which contains leap seconds, and only if the UT offset is 74094c2d487SPhilip Paeps not a multiple of 60 seconds when a positive leap second occurs. 74194c2d487SPhilip Paeps (No such timezone exists in tzdb, luckily.) Without the fix, 74294c2d487SPhilip Paeps the timestamp was ambiguous during a positive leap second. 74394c2d487SPhilip Paeps With the fix, any seconds occurring after a positive leap second 74494c2d487SPhilip Paeps and within the same localtime minute are counted through 60, not 74594c2d487SPhilip Paeps through 59; their UT offset (tm_gmtoff) is the same as before. 74694c2d487SPhilip Paeps Here is how the fix affects timestamps in a timezone with UT 74794c2d487SPhilip Paeps offset +01:23:45 (5025 seconds) and with a positive leap second at 74894c2d487SPhilip Paeps 1972-06-30 23:59:60 UTC (78796800): 74994c2d487SPhilip Paeps 75094c2d487SPhilip Paeps time_t without the fix with the fix 75194c2d487SPhilip Paeps 78796800 1972-07-01 01:23:45 1972-07-01 01:23:45 (leap second) 75294c2d487SPhilip Paeps 78796801 1972-07-01 01:23:45 1972-07-01 01:23:46 75394c2d487SPhilip Paeps ... 75494c2d487SPhilip Paeps 78796815 1972-07-01 01:23:59 1972-07-01 01:23:60 75594c2d487SPhilip Paeps 78796816 1972-07-01 01:24:00 1972-07-01 01:24:00 75694c2d487SPhilip Paeps 75794c2d487SPhilip Paeps Fix an unlikely bug that caused 'localtime' etc. to misbehave if 75894c2d487SPhilip Paeps civil time changes a few seconds before time_t wraps around, when 75994c2d487SPhilip Paeps leap seconds are enabled. 76094c2d487SPhilip Paeps 76194c2d487SPhilip Paeps Fix bug in zic -r; in some cases, the dummy time type after the 76294c2d487SPhilip Paeps last time transition disagreed with the TZ string, contrary to 76394c2d487SPhilip Paeps Internet RFC 8563 section 3.3. 76494c2d487SPhilip Paeps 76594c2d487SPhilip Paeps Fix a bug with 'zic -r @X' when X is a negative leap second that 76694c2d487SPhilip Paeps has a nonnegative correction. Without the fix, the output file 76794c2d487SPhilip Paeps was truncated so that X appeared to be a positive leap second. 768*259e2ad7SPhilip Paeps Fix a similar, even less likely bug when truncating at a positive 76994c2d487SPhilip Paeps leap second that has a nonpositive correction. 77094c2d487SPhilip Paeps 77194c2d487SPhilip Paeps zic -r now reports an error if given rolling leap seconds, as this 77294c2d487SPhilip Paeps usage has never generally worked and is evidently unused. 77394c2d487SPhilip Paeps 77494c2d487SPhilip Paeps zic now generates a POSIX-conforming TZ string for TZif files 77594c2d487SPhilip Paeps where all-year DST is predicted for the indefinite future. 77694c2d487SPhilip Paeps For example, for all-year Eastern Daylight Time, zic now generates 77794c2d487SPhilip Paeps "XXX3EDT4,0/0,J365/23" where it previously generated 77894c2d487SPhilip Paeps "EST5EDT,0/0,J365/25" or "". (Thanks to Michael Deckers for 77994c2d487SPhilip Paeps noting the possibility of POSIX conformance.) 78094c2d487SPhilip Paeps 78194c2d487SPhilip Paeps zic.c no longer requires sys/wait.h (thanks to spazmodius for 78294c2d487SPhilip Paeps noting it wasn't needed). 78394c2d487SPhilip Paeps 78494c2d487SPhilip Paeps When reading slim TZif files, zdump no longer mishandles leap 78594c2d487SPhilip Paeps seconds on the rare platforms where time_t counts leap seconds, 78694c2d487SPhilip Paeps fixing a bug introduced in 2014g. 78794c2d487SPhilip Paeps 78894c2d487SPhilip Paeps zdump -v now outputs timestamps at boundaries of what localtime 789*259e2ad7SPhilip Paeps and gmtime can represent, instead of the less useful timestamps 79094c2d487SPhilip Paeps one day after the minimum and one day before the maximum. 79194c2d487SPhilip Paeps (Thanks to Arthur David Olson for prototype code, and to Manuela 79294c2d487SPhilip Paeps Friedrich for debugging help.) 79394c2d487SPhilip Paeps 79494c2d487SPhilip Paeps zdump's -c and -t options are now consistently inclusive for the 79594c2d487SPhilip Paeps lower time bound and exclusive for the upper. Formerly they were 79694c2d487SPhilip Paeps inconsistent. (Confusion noted by Martin Burnicki.) 79794c2d487SPhilip Paeps 79894c2d487SPhilip Paeps Changes to build procedure 79994c2d487SPhilip Paeps 80094c2d487SPhilip Paeps You can now compile with -DHAVE_MALLOC_ERRNO=0 to port to 80194c2d487SPhilip Paeps non-POSIX hosts where malloc doesn't set errno. 80294c2d487SPhilip Paeps (Problem reported by Jan Engelhardt.) 80394c2d487SPhilip Paeps 80494c2d487SPhilip Paeps Changes to documentation 80594c2d487SPhilip Paeps 80694c2d487SPhilip Paeps tzfile.5 better matches a draft successor to RFC 8536 80794c2d487SPhilip Paeps <https://datatracker.ietf.org/doc/draft-murchison-rfc8536bis/01/>. 80894c2d487SPhilip Paeps 80994c2d487SPhilip Paeps 8108c5bef2eSPhilip PaepsRelease 2021a - 2021-01-24 10:54:57 -0800 8118c5bef2eSPhilip Paeps 8128c5bef2eSPhilip Paeps Changes to future timestamps 8138c5bef2eSPhilip Paeps 8148c5bef2eSPhilip Paeps South Sudan changes from +03 to +02 on 2021-02-01 at 00:00. 8158c5bef2eSPhilip Paeps (Thanks to Steffen Thorsen.) 8168c5bef2eSPhilip Paeps 8178c5bef2eSPhilip Paeps 818e35a01eeSPhilip PaepsRelease 2020f - 2020-12-29 00:17:46 -0800 819e35a01eeSPhilip Paeps 820e35a01eeSPhilip Paeps Change to build procedure 821e35a01eeSPhilip Paeps 822e35a01eeSPhilip Paeps 'make rearguard_tarballs' no longer generates a bad rearguard.zi, 823e35a01eeSPhilip Paeps fixing a 2020e bug. (Problem reported by Deborah Goldsmith.) 824e35a01eeSPhilip Paeps 825e35a01eeSPhilip Paeps 826dc505d53SPhilip PaepsRelease 2020e - 2020-12-22 15:14:34 -0800 827dc505d53SPhilip Paeps 828dc505d53SPhilip Paeps Briefly: 829dc505d53SPhilip Paeps Volgograd switches to Moscow time on 2020-12-27 at 02:00. 830dc505d53SPhilip Paeps 831dc505d53SPhilip Paeps Changes to future timestamps 832dc505d53SPhilip Paeps 833dc505d53SPhilip Paeps Volgograd changes time zone from +04 to +03 on 2020-12-27 at 02:00. 834dc505d53SPhilip Paeps (Thanks to Alexander Krivenyshev and Stepan Golosunov.) 835dc505d53SPhilip Paeps 836dc505d53SPhilip Paeps Changes to past timestamps 837dc505d53SPhilip Paeps 838dc505d53SPhilip Paeps Correct many pre-1986 transitions, fixing entries originally 839dc505d53SPhilip Paeps derived from Shanks. The fixes include: 840dc505d53SPhilip Paeps - Australia: several 1917 through 1971 transitions 84194c2d487SPhilip Paeps - The Bahamas: several 1941 through 1945 transitions 842dc505d53SPhilip Paeps - Bermuda: several 1917 through 1956 transitions 843dc505d53SPhilip Paeps - Belize: several 1942 through 1968 transitions 844dc505d53SPhilip Paeps - Ghana: several 1915 through 1956 transitions 845dc505d53SPhilip Paeps - Israel and Palestine: several 1940 through 1985 transitions 846dc505d53SPhilip Paeps - Kenya and adjacent: several 1908 through 1960 transitions 847dc505d53SPhilip Paeps - Nigeria and adjacent: correcting LMT in Lagos, and several 1905 848dc505d53SPhilip Paeps through 1919 transitions 849dc505d53SPhilip Paeps - Seychelles: the introduction of standard time in 1907, not 1906 850dc505d53SPhilip Paeps - Vanuatu: DST in 1973-1974, and a corrected 1984 transition 851dc505d53SPhilip Paeps (Thanks to P Chan.) 852dc505d53SPhilip Paeps 853dc505d53SPhilip Paeps Because of the Australia change, Australia/Currie (King Island) is 854dc505d53SPhilip Paeps no longer needed, as it is identical to Australia/Hobart for all 855dc505d53SPhilip Paeps timestamps since 1970 and was therefore created by mistake. 856dc505d53SPhilip Paeps Australia/Currie has been moved to the 'backward' file and its 857dc505d53SPhilip Paeps corrected data moved to the 'backzone' file. 858dc505d53SPhilip Paeps 859dc505d53SPhilip Paeps Changes to past time zone abbreviations and DST flags 860dc505d53SPhilip Paeps 861dc505d53SPhilip Paeps To better match legislation in Turks and Caicos, the 2015 shift to 862dc505d53SPhilip Paeps year-round observance of -04 is now modeled as AST throughout before 863dc505d53SPhilip Paeps returning to Eastern Time with US DST in 2018, rather than as 864dc505d53SPhilip Paeps maintaining EDT until 2015-11-01. (Thanks to P Chan.) 865dc505d53SPhilip Paeps 866dc505d53SPhilip Paeps Changes to documentation 867dc505d53SPhilip Paeps 868dc505d53SPhilip Paeps The zic man page now documents zic's coalescing of transitions 869dc505d53SPhilip Paeps when a zone falls back just before DST springs forward. 870dc505d53SPhilip Paeps 871dc505d53SPhilip Paeps 8723611c2d8SPhilip PaepsRelease 2020d - 2020-10-21 11:24:13 -0700 8733611c2d8SPhilip Paeps 8743611c2d8SPhilip Paeps Briefly: 8753611c2d8SPhilip Paeps Palestine ends DST earlier than predicted, on 2020-10-24. 8763611c2d8SPhilip Paeps 8773611c2d8SPhilip Paeps Changes to past and future timestamps 8783611c2d8SPhilip Paeps 8793611c2d8SPhilip Paeps Palestine ends DST on 2020-10-24 at 01:00, instead of 2020-10-31 8803611c2d8SPhilip Paeps as previously predicted (thanks to Sharef Mustafa.) Its 8813611c2d8SPhilip Paeps 2019-10-26 fall-back was at 00:00, not 01:00 (thanks to Steffen 8823611c2d8SPhilip Paeps Thorsen.) Its 2015-10-23 transition was at 01:00 not 00:00, and 8833611c2d8SPhilip Paeps its spring 2020 transition was on March 28 at 00:00, not March 27 8843611c2d8SPhilip Paeps (thanks to Pierre Cashon.) This affects Asia/Gaza and 8853611c2d8SPhilip Paeps Asia/Hebron. Assume future spring and fall transitions will be on 8863611c2d8SPhilip Paeps the Saturday preceding the last Sunday of March and October, 8873611c2d8SPhilip Paeps respectively. 8883611c2d8SPhilip Paeps 8893611c2d8SPhilip Paeps 890e7e2d659SPhilip PaepsRelease 2020c - 2020-10-16 11:15:53 -0700 891e7e2d659SPhilip Paeps 892e7e2d659SPhilip Paeps Briefly: 893e7e2d659SPhilip Paeps Fiji starts DST later than usual, on 2020-12-20. 894e7e2d659SPhilip Paeps 895e7e2d659SPhilip Paeps Changes to future timestamps 896e7e2d659SPhilip Paeps 897e7e2d659SPhilip Paeps Fiji will start DST on 2020-12-20, instead of 2020-11-08 as 898e7e2d659SPhilip Paeps previously predicted. DST will still end on 2021-01-17. 899e7e2d659SPhilip Paeps (Thanks to Raymond Kumar and Alan Mintz.) Assume for now that 900e7e2d659SPhilip Paeps the later-than-usual start date is a one-time departure from the 901e7e2d659SPhilip Paeps recent pattern. 902e7e2d659SPhilip Paeps 903e7e2d659SPhilip Paeps Changes to build procedure 904e7e2d659SPhilip Paeps 905e7e2d659SPhilip Paeps Rearguard tarballs now contain an empty file pacificnew. 906e7e2d659SPhilip Paeps Some older downstream software expects this file to exist. 907e7e2d659SPhilip Paeps (Problem reported by Mike Cullinan.) 908e7e2d659SPhilip Paeps 909e7e2d659SPhilip Paeps 91012a899b6SPhilip PaepsRelease 2020b - 2020-10-06 18:35:04 -0700 91112a899b6SPhilip Paeps 91212a899b6SPhilip Paeps Briefly: 91312a899b6SPhilip Paeps Revised predictions for Morocco's changes starting in 2023. 91412a899b6SPhilip Paeps Canada's Yukon changes to -07 on 2020-11-01, not 2020-03-08. 91512a899b6SPhilip Paeps Macquarie Island has stayed in sync with Tasmania since 2011. 91612a899b6SPhilip Paeps Casey, Antarctica is at +08 in winter and +11 in summer. 91712a899b6SPhilip Paeps zic no longer supports -y, nor the TYPE field of Rules. 91812a899b6SPhilip Paeps 91912a899b6SPhilip Paeps Changes to future timestamps 92012a899b6SPhilip Paeps 92112a899b6SPhilip Paeps Morocco's spring-forward after Ramadan is now predicted to occur 92212a899b6SPhilip Paeps no sooner than two days after Ramadan, instead of one day. 92312a899b6SPhilip Paeps (Thanks to Milamber.) The first altered prediction is for 2023, 92412a899b6SPhilip Paeps now predicted to spring-forward on April 30 instead of April 23. 92512a899b6SPhilip Paeps 92612a899b6SPhilip Paeps Changes to past and future timestamps 92712a899b6SPhilip Paeps 92812a899b6SPhilip Paeps Casey Station, Antarctica has been using +08 in winter and +11 in 92912a899b6SPhilip Paeps summer since 2018. The most recent transition from +08 to +11 was 93012a899b6SPhilip Paeps 2020-10-04 00:01. Also, Macquarie Island has been staying in 93112a899b6SPhilip Paeps sync with Tasmania since 2011. (Thanks to Steffen Thorsen.) 93212a899b6SPhilip Paeps 93312a899b6SPhilip Paeps Changes to past and future time zone abbreviations and DST flags 93412a899b6SPhilip Paeps 93512a899b6SPhilip Paeps Canada's Yukon, represented by America/Whitehorse and 93612a899b6SPhilip Paeps America/Dawson, changes its time zone rules from -08/-07 to 93712a899b6SPhilip Paeps permanent -07 on 2020-11-01, not on 2020-03-08 as 2020a had it. 93812a899b6SPhilip Paeps This change affects only the time zone abbreviation (MST vs PDT) 93912a899b6SPhilip Paeps and daylight saving flag for the period between the two dates. 94012a899b6SPhilip Paeps (Thanks to Andrew G. Smith.) 94112a899b6SPhilip Paeps 94212a899b6SPhilip Paeps Changes to past timestamps 94312a899b6SPhilip Paeps 94412a899b6SPhilip Paeps Correct several transitions for Hungary for 1918/1983. 94512a899b6SPhilip Paeps For example, the 1983-09-25 fall-back was at 01:00, not 03:00. 94612a899b6SPhilip Paeps (Thanks to Géza Nyáry.) Also, the 1890 transition to standard 94712a899b6SPhilip Paeps time was on 11-01, not 10-01 (thanks to Michael Deckers). 94812a899b6SPhilip Paeps 94912a899b6SPhilip Paeps The 1891 French transition was on March 16, not March 15. The 95012a899b6SPhilip Paeps 1911-03-11 French transition was at midnight, not a minute later. 95112a899b6SPhilip Paeps Monaco's transitions were on 1892-06-01 and 1911-03-29, not 95212a899b6SPhilip Paeps 1891-03-15 and 1911-03-11. (Thanks to Michael Deckers.) 95312a899b6SPhilip Paeps 95412a899b6SPhilip Paeps Changes to code 95512a899b6SPhilip Paeps 95612a899b6SPhilip Paeps Support for zic's long-obsolete '-y YEARISTYPE' option has been 95712a899b6SPhilip Paeps removed and, with it, so has support for the TYPE field in Rule 95812a899b6SPhilip Paeps lines, which is now reserved for compatibility with earlier zic. 95912a899b6SPhilip Paeps These features were previously deprecated in release 2015f. 96012a899b6SPhilip Paeps (Thanks to Tim Parenti.) 96112a899b6SPhilip Paeps 96212a899b6SPhilip Paeps zic now defaults to '-b slim' instead of to '-b fat'. 96312a899b6SPhilip Paeps 96412a899b6SPhilip Paeps zic's new '-l -' and '-p -' options uninstall any existing 96512a899b6SPhilip Paeps localtime and posixrules files, respectively. 96612a899b6SPhilip Paeps 96712a899b6SPhilip Paeps The undocumented and ineffective tzsetwall function has been 96812a899b6SPhilip Paeps removed. 96912a899b6SPhilip Paeps 97012a899b6SPhilip Paeps Changes to build procedure 97112a899b6SPhilip Paeps 97212a899b6SPhilip Paeps The Makefile now defaults POSIXRULES to '-', so the posixrules 97312a899b6SPhilip Paeps feature (obsolete as of 2019b) is no longer installed by default. 97412a899b6SPhilip Paeps 97512a899b6SPhilip Paeps Changes to documentation and commentary 97612a899b6SPhilip Paeps 97712a899b6SPhilip Paeps The long-obsolete files pacificnew, systemv, and yearistype.sh have 97812a899b6SPhilip Paeps been removed from the distribution. (Thanks to Tim Parenti.) 97912a899b6SPhilip Paeps 98012a899b6SPhilip Paeps 981dd5f96c4SPhilip PaepsRelease 2020a - 2020-04-23 16:03:47 -0700 982dd5f96c4SPhilip Paeps 983dd5f96c4SPhilip Paeps Briefly: 984dd5f96c4SPhilip Paeps Morocco springs forward on 2020-05-31, not 2020-05-24. 985dd5f96c4SPhilip Paeps Canada's Yukon advanced to -07 year-round on 2020-03-08. 986dd5f96c4SPhilip Paeps America/Nuuk renamed from America/Godthab. 987dd5f96c4SPhilip Paeps zic now supports expiration dates for leap second lists. 988dd5f96c4SPhilip Paeps 989dd5f96c4SPhilip Paeps Changes to future timestamps 990dd5f96c4SPhilip Paeps 991dd5f96c4SPhilip Paeps Morocco's second spring-forward transition in 2020 will be May 31, 992dd5f96c4SPhilip Paeps not May 24 as predicted earlier. (Thanks to Semlali Naoufal.) 993dd5f96c4SPhilip Paeps Adjust future-year predictions to use the first Sunday after the 994dd5f96c4SPhilip Paeps day after Ramadan, not the first Sunday after Ramadan. 995dd5f96c4SPhilip Paeps 996dd5f96c4SPhilip Paeps Canada's Yukon, represented by America/Whitehorse and 997dd5f96c4SPhilip Paeps America/Dawson, advanced to -07 year-round, beginning with its 998dd5f96c4SPhilip Paeps spring-forward transition on 2020-03-08, and will not fall back on 999dd5f96c4SPhilip Paeps 2020-11-01. Although a government press release calls this 1000dd5f96c4SPhilip Paeps "permanent Pacific Daylight Saving Time", we prefer MST for 1001dd5f96c4SPhilip Paeps consistency with nearby Dawson Creek, Creston, and Fort Nelson. 1002dd5f96c4SPhilip Paeps (Thanks to Tim Parenti.) 1003dd5f96c4SPhilip Paeps 1004dd5f96c4SPhilip Paeps Changes to past timestamps 1005dd5f96c4SPhilip Paeps 1006dd5f96c4SPhilip Paeps Shanghai observed DST in 1919. (Thanks to Phake Nick.) 1007dd5f96c4SPhilip Paeps 1008dd5f96c4SPhilip Paeps Changes to timezone identifiers 1009dd5f96c4SPhilip Paeps 1010dd5f96c4SPhilip Paeps To reflect current usage in English better, America/Godthab has 1011dd5f96c4SPhilip Paeps been renamed to America/Nuuk. A backwards-compatibility link 1012dd5f96c4SPhilip Paeps remains for the old name. 1013dd5f96c4SPhilip Paeps 1014dd5f96c4SPhilip Paeps Changes to code 1015dd5f96c4SPhilip Paeps 1016dd5f96c4SPhilip Paeps localtime.c no longer mishandles timestamps after the last 1017dd5f96c4SPhilip Paeps transition in a TZif file with leap seconds and with daylight 1018dd5f96c4SPhilip Paeps saving time transitions projected into the indefinite future. 1019dd5f96c4SPhilip Paeps For example, with TZ='America/Los_Angeles' with leap seconds, 1020dd5f96c4SPhilip Paeps zdump formerly reported a DST transition on 2038-03-14 1021dd5f96c4SPhilip Paeps from 01:59:32.999... to 02:59:33 instead of the correct transition 1022dd5f96c4SPhilip Paeps from 01:59:59.999... to 03:00:00. 1023dd5f96c4SPhilip Paeps 1024dd5f96c4SPhilip Paeps zic -L now supports an Expires line in the leapseconds file, and 1025dd5f96c4SPhilip Paeps truncates the TZif output accordingly. This propagates leap 1026dd5f96c4SPhilip Paeps second expiration information into the TZif file, and avoids the 1027dd5f96c4SPhilip Paeps abovementioned localtime.c bug as well as similar bugs present in 1028dd5f96c4SPhilip Paeps many client implementations. If no Expires line is present, zic 1029dd5f96c4SPhilip Paeps -L instead truncates the TZif output based on the #expires comment 1030dd5f96c4SPhilip Paeps present in leapseconds files distributed by tzdb 2018f and later; 1031dd5f96c4SPhilip Paeps however, this usage is obsolescent. For now, the distributed 1032dd5f96c4SPhilip Paeps leapseconds file has an Expires line that is commented out, so 1033dd5f96c4SPhilip Paeps that the file can be fed to older versions of zic which ignore the 1034dd5f96c4SPhilip Paeps commented-out line. Future tzdb distributions are planned to 1035dd5f96c4SPhilip Paeps contain a leapseconds file with an Expires line. 1036dd5f96c4SPhilip Paeps 1037dd5f96c4SPhilip Paeps The configuration macros HAVE_TZNAME and USG_COMPAT should now be 1038dd5f96c4SPhilip Paeps set to 1 if the system library supports the feature, and 2 if not. 1039dd5f96c4SPhilip Paeps As before, these macros are nonzero if tzcode should support the 1040dd5f96c4SPhilip Paeps feature, zero otherwise. 1041dd5f96c4SPhilip Paeps 1042dd5f96c4SPhilip Paeps The configuration macro ALTZONE now has the same values with the 1043dd5f96c4SPhilip Paeps same meaning as HAVE_TZNAME and USG_COMPAT. 1044dd5f96c4SPhilip Paeps 1045dd5f96c4SPhilip Paeps The code's defense against CRLF in leap-seconds.list is now 1046dd5f96c4SPhilip Paeps portable to POSIX awk. (Problem reported by Deborah Goldsmith.) 1047dd5f96c4SPhilip Paeps 1048dd5f96c4SPhilip Paeps Although the undocumented tzsetwall function is not changed in 1049dd5f96c4SPhilip Paeps this release, it is now deprecated in preparation for removal in 1050dd5f96c4SPhilip Paeps future releases. Due to POSIX requirements, tzsetwall has not 1051dd5f96c4SPhilip Paeps worked for some time. Any code that uses it should instead use 1052dd5f96c4SPhilip Paeps tzalloc(NULL) or, if portability trumps thread-safety, should 1053dd5f96c4SPhilip Paeps unset the TZ environment variable. 1054dd5f96c4SPhilip Paeps 1055dd5f96c4SPhilip Paeps Changes to commentary 1056dd5f96c4SPhilip Paeps 1057dd5f96c4SPhilip Paeps The Îles-de-la-Madeleine and the Listuguj reserve are noted as 1058dd5f96c4SPhilip Paeps following America/Halifax, and comments about Yukon's "south" and 1059dd5f96c4SPhilip Paeps "north" have been corrected to say "east" and "west". (Thanks to 1060dd5f96c4SPhilip Paeps Jeffery Nichols.) 1061dd5f96c4SPhilip Paeps 1062dd5f96c4SPhilip Paeps 1063798c0c0bSPhilip PaepsRelease 2019c - 2019-09-11 08:59:48 -0700 1064798c0c0bSPhilip Paeps 1065798c0c0bSPhilip Paeps Briefly: 1066798c0c0bSPhilip Paeps Fiji observes DST from 2019-11-10 to 2020-01-12. 1067798c0c0bSPhilip Paeps Norfolk Island starts observing Australian-style DST. 1068798c0c0bSPhilip Paeps 1069798c0c0bSPhilip Paeps Changes to future timestamps 1070798c0c0bSPhilip Paeps 1071798c0c0bSPhilip Paeps Fiji's next DST transitions will be 2019-11-10 and 2020-01-12 1072798c0c0bSPhilip Paeps instead of 2019-11-03 and 2020-01-19. (Thanks to Raymond Kumar.) 1073798c0c0bSPhilip Paeps Adjust future guesses accordingly. 1074798c0c0bSPhilip Paeps 1075798c0c0bSPhilip Paeps Norfolk Island will observe Australian-style DST starting in 1076798c0c0bSPhilip Paeps spring 2019. The first transition is on 2019-10-06. (Thanks to 1077798c0c0bSPhilip Paeps Kyle Czech and Michael Deckers.) 1078798c0c0bSPhilip Paeps 1079798c0c0bSPhilip Paeps Changes to past timestamps 1080798c0c0bSPhilip Paeps 1081798c0c0bSPhilip Paeps Many corrections to time in Turkey from 1940 through 1985. 1082798c0c0bSPhilip Paeps (Thanks to Oya Vulaş via Alois Treindl, and to Kıvanç Yazan.) 1083798c0c0bSPhilip Paeps 1084798c0c0bSPhilip Paeps The Norfolk Island 1975-03-02 transition was at 02:00 standard 1085798c0c0bSPhilip Paeps time, not 02:00 DST. (Thanks to Michael Deckers.) 1086798c0c0bSPhilip Paeps 1087798c0c0bSPhilip Paeps South Korea observed DST from 1948 through 1951. Although this 1088798c0c0bSPhilip Paeps info was supposed to appear in release 2014j, a typo inadvertently 1089798c0c0bSPhilip Paeps suppressed the change. (Thanks to Alois Treindl.) 1090798c0c0bSPhilip Paeps 1091798c0c0bSPhilip Paeps Detroit observed DST in 1967 and 1968 following the US DST rules, 1092798c0c0bSPhilip Paeps except that its 1967 DST began on June 14 at 00:01. (Thanks to 1093798c0c0bSPhilip Paeps Alois Treindl for pointing out that the old data entries were 1094798c0c0bSPhilip Paeps probably wrong.) 1095798c0c0bSPhilip Paeps 1096798c0c0bSPhilip Paeps Fix several errors in pre-1970 transitions in Perry County, IN. 10976b7d3b4dSPhilip Paeps (Thanks to Alois Treindl for pointing out the 1967/9 errors.) 1098798c0c0bSPhilip Paeps 1099798c0c0bSPhilip Paeps Edmonton did not observe DST in 1967 or 1969. In 1946 Vancouver 1100798c0c0bSPhilip Paeps ended DST on 09-29 not 10-13, and Vienna ended DST on 10-07 not 1101798c0c0bSPhilip Paeps 10-06. In 1945 Königsberg (now Kaliningrad) switched from +01/+02 1102798c0c0bSPhilip Paeps to +02/+03 on 04-10 not 01-01, and its +02/+03 is abbreviated 11036b7d3b4dSPhilip Paeps EET/EEST, not CET/CEST. (Thanks to Alois Treindl.) In 1946 1104798c0c0bSPhilip Paeps Königsberg switched to +03 on 04-07 not 01-01. 1105798c0c0bSPhilip Paeps 1106798c0c0bSPhilip Paeps In 1946 Louisville switched from CST to CDT on 04-28 at 00:01, not 1107798c0c0bSPhilip Paeps 01-01 at 00:00. (Thanks to Alois Treindl and Michael Deckers.) 1108798c0c0bSPhilip Paeps Also, it switched from CST to CDT on 1950-04-30, not 1947-04-27. 1109798c0c0bSPhilip Paeps 1110798c0c0bSPhilip Paeps The 1892-05-01 transition in Brussels was at 00:17:30, not at noon. 1111798c0c0bSPhilip Paeps (Thanks to Michael Deckers.) 1112798c0c0bSPhilip Paeps 1113798c0c0bSPhilip Paeps Changes to past time zone abbreviations and DST flags 1114798c0c0bSPhilip Paeps 1115798c0c0bSPhilip Paeps Hong Kong Winter Time, observed from 1941-10-01 to 1941-12-25, 1116798c0c0bSPhilip Paeps is now flagged as DST and is abbreviated HKWT not HKT. 1117798c0c0bSPhilip Paeps 1118798c0c0bSPhilip Paeps Changes to code 1119798c0c0bSPhilip Paeps 1120798c0c0bSPhilip Paeps leapseconds.awk now relies only on its input data, rather than 1121798c0c0bSPhilip Paeps also relying on its comments. (Inspired by code from Dennis 1122798c0c0bSPhilip Paeps Ferguson and Chris Woodbury.) 1123798c0c0bSPhilip Paeps 1124798c0c0bSPhilip Paeps The code now defends against CRLFs in leap-seconds.list. 1125798c0c0bSPhilip Paeps (Thanks to Brian Inglis and Chris Woodbury.) 1126798c0c0bSPhilip Paeps 1127798c0c0bSPhilip Paeps Changes to documentation and commentary 1128798c0c0bSPhilip Paeps 1129798c0c0bSPhilip Paeps theory.html discusses leap seconds. (Thanks to Steve Summit.) 1130798c0c0bSPhilip Paeps 1131798c0c0bSPhilip Paeps Nashville's newspapers dueled about the time of day in the 1950s. 1132798c0c0bSPhilip Paeps (Thanks to John Seigenthaler.) 1133798c0c0bSPhilip Paeps 1134798c0c0bSPhilip Paeps Liechtenstein observed Swiss DST in 1941/2. 1135798c0c0bSPhilip Paeps (Thanks to Alois Treindl.) 1136798c0c0bSPhilip Paeps 1137798c0c0bSPhilip Paeps 11382865ab3fSPhilip PaepsRelease 2019b - 2019-07-01 00:09:53 -0700 11392865ab3fSPhilip Paeps 11402865ab3fSPhilip Paeps Briefly: 11412865ab3fSPhilip Paeps Brazil no longer observes DST. 11422865ab3fSPhilip Paeps 'zic -b slim' outputs smaller TZif files; please try it out. 11432865ab3fSPhilip Paeps Palestine's 2019 spring-forward transition was on 03-29, not 03-30. 11442865ab3fSPhilip Paeps 11452865ab3fSPhilip Paeps Changes to future timestamps 11462865ab3fSPhilip Paeps 11472865ab3fSPhilip Paeps Brazil has canceled DST and will stay on standard time indefinitely. 11482865ab3fSPhilip Paeps (Thanks to Steffen Thorsen, Marcus Diniz, and Daniel Soares de 11492865ab3fSPhilip Paeps Oliveira.) 11502865ab3fSPhilip Paeps 11512865ab3fSPhilip Paeps Predictions for Morocco now go through 2087 instead of 2037, to 11522865ab3fSPhilip Paeps work around a problem on newlib when using TZif files output by 11532865ab3fSPhilip Paeps zic 2019a or earlier. (Problem reported by David Gauchard.) 11542865ab3fSPhilip Paeps 11552865ab3fSPhilip Paeps Changes to past and future timestamps 11562865ab3fSPhilip Paeps 11572865ab3fSPhilip Paeps Palestine's 2019 spring transition was 03-29 at 00:00, not 03-30 11582865ab3fSPhilip Paeps at 01:00. (Thanks to Sharef Mustafa and Even Scharning.) Guess 11592865ab3fSPhilip Paeps future transitions to be March's last Friday at 00:00. 11602865ab3fSPhilip Paeps 11612865ab3fSPhilip Paeps Changes to past timestamps 11622865ab3fSPhilip Paeps 11632865ab3fSPhilip Paeps Hong Kong's 1941-06-15 spring-forward transition was at 03:00, not 11642865ab3fSPhilip Paeps 03:30. Its 1945 transition from JST to HKT was on 11-18 at 02:00, 11652865ab3fSPhilip Paeps not 09-15 at 00:00. In 1946 its spring-forward transition was on 11662865ab3fSPhilip Paeps 04-21 at 00:00, not the previous day at 03:30. From 1946 through 11672865ab3fSPhilip Paeps 1952 its fall-back transitions occurred at 04:30, not at 03:30. 11682865ab3fSPhilip Paeps In 1947 its fall-back transition was on 11-30, not 12-30. 11692865ab3fSPhilip Paeps (Thanks to P Chan.) 11702865ab3fSPhilip Paeps 11712865ab3fSPhilip Paeps Changes to past time zone abbreviations 11722865ab3fSPhilip Paeps 11732865ab3fSPhilip Paeps Italy's 1866 transition to Rome Mean Time was on December 12, not 11742865ab3fSPhilip Paeps September 22. This affects only the time zone abbreviation for 11752865ab3fSPhilip Paeps Europe/Rome between those dates. (Thanks to Stephen Trainor and 11762865ab3fSPhilip Paeps Luigi Rosa.) 11772865ab3fSPhilip Paeps 11782865ab3fSPhilip Paeps Changes affecting metadata only 11792865ab3fSPhilip Paeps 11802865ab3fSPhilip Paeps Add info about the Crimea situation in zone1970.tab and zone.tab. 11812865ab3fSPhilip Paeps (Problem reported by Serhii Demediuk.) 11822865ab3fSPhilip Paeps 11832865ab3fSPhilip Paeps Changes to code 11842865ab3fSPhilip Paeps 11852865ab3fSPhilip Paeps zic's new -b option supports a way to control data bloat and to 11862865ab3fSPhilip Paeps test for year-2038 bugs in software that reads TZif files. 11872865ab3fSPhilip Paeps 'zic -b fat' and 'zic -b slim' generate larger and smaller output; 11882865ab3fSPhilip Paeps for example, changing from fat to slim shrinks the Europe/London 11892865ab3fSPhilip Paeps file from 3648 to 1599 bytes, saving about 56%. Fat and slim 11902865ab3fSPhilip Paeps files represent the same set of timestamps and use the same TZif 11912865ab3fSPhilip Paeps format as documented in tzfile(5) and in Internet RFC 8536. 11922865ab3fSPhilip Paeps Fat format attempts to work around bugs or incompatibilities in 11932865ab3fSPhilip Paeps older software, notably software that mishandles 64-bit TZif data 11942865ab3fSPhilip Paeps or uses obsolete TZ strings like "EET-2EEST" that lack DST rules. 11952865ab3fSPhilip Paeps Slim format is more efficient and does not work around 64-bit bugs 11962865ab3fSPhilip Paeps or obsolete TZ strings. Currently zic defaults to fat format 11972865ab3fSPhilip Paeps unless you compile with -DZIC_BLOAT_DEFAULT=\"slim\"; this 11982865ab3fSPhilip Paeps out-of-the-box default is intended to change in future releases 11992865ab3fSPhilip Paeps as the buggy software often mishandles timestamps anyway. 12002865ab3fSPhilip Paeps 12012865ab3fSPhilip Paeps zic no longer treats a set of rules ending in 2037 specially. 12022865ab3fSPhilip Paeps Previously, zic assumed that such a ruleset meant that future 12032865ab3fSPhilip Paeps timestamps could not be predicted, and therefore omitted a 12042865ab3fSPhilip Paeps POSIX-like TZ string in the TZif output. The old behavior is no 12052865ab3fSPhilip Paeps longer needed for current tzdata, and caused problems with newlib 12062865ab3fSPhilip Paeps when used with older tzdata (reported by David Gauchard). 12072865ab3fSPhilip Paeps 12082865ab3fSPhilip Paeps zic no longer generates some artifact transitions. For example, 12092865ab3fSPhilip Paeps Europe/London no longer has a no-op transition in January 1996. 12102865ab3fSPhilip Paeps 12112865ab3fSPhilip Paeps Changes to build procedure 12122865ab3fSPhilip Paeps 12132865ab3fSPhilip Paeps tzdata.zi now assumes zic 2017c or later. This shrinks tzdata.zi 12142865ab3fSPhilip Paeps by a percent or so. 12152865ab3fSPhilip Paeps 12162865ab3fSPhilip Paeps Changes to documentation and commentary 12172865ab3fSPhilip Paeps 12182865ab3fSPhilip Paeps The Makefile now documents the POSIXRULES macro as being obsolete, 12192865ab3fSPhilip Paeps and similarly, zic's -p POSIXRULES option is now documented as 12202865ab3fSPhilip Paeps being obsolete. Although the POSIXRULES feature still exists and 12212865ab3fSPhilip Paeps works as before, in practice it is rarely used for its intended 12222865ab3fSPhilip Paeps purpose, and it does not work either in the default reference 12232865ab3fSPhilip Paeps implementation (for timestamps after 2037) or in common 12242865ab3fSPhilip Paeps implementations such as GNU/Linux (for contemporary timestamps). 12252865ab3fSPhilip Paeps Since POSIXRULES was designed primarily as a temporary transition 12262865ab3fSPhilip Paeps facility for System V platforms that died off decades ago, it is 12272865ab3fSPhilip Paeps being decommissioned rather than institutionalized. 12282865ab3fSPhilip Paeps 12292865ab3fSPhilip Paeps New info on Bonin Islands and Marcus (thanks to Wakaba and Phake Nick). 12302865ab3fSPhilip Paeps 12312865ab3fSPhilip Paeps 12322865ab3fSPhilip PaepsRelease 2019a - 2019-03-25 22:01:33 -0700 1233ad48359aSPhilip Paeps 1234ad48359aSPhilip Paeps Briefly: 1235ad48359aSPhilip Paeps Palestine "springs forward" on 2019-03-30 instead of 2019-03-23. 1236ad48359aSPhilip Paeps Metlakatla "fell back" to rejoin Alaska Time on 2019-01-20 at 02:00. 1237ad48359aSPhilip Paeps 1238ad48359aSPhilip Paeps Changes to past and future timestamps 1239ad48359aSPhilip Paeps 1240ad48359aSPhilip Paeps Palestine will not start DST until 2019-03-30, instead of 2019-03-23 as 1241ad48359aSPhilip Paeps previously predicted. Adjust our prediction by guessing that spring 1242ad48359aSPhilip Paeps transitions will be between 24 and 30 March, which matches recent practice 1243ad48359aSPhilip Paeps since 2016. (Thanks to Even Scharning and Tim Parenti.) 1244ad48359aSPhilip Paeps 1245ad48359aSPhilip Paeps Metlakatla ended its observance of Pacific standard time, 1246ad48359aSPhilip Paeps rejoining Alaska Time, on 2019-01-20 at 02:00. (Thanks to Ryan 1247ad48359aSPhilip Paeps Stanley and Tim Parenti.) 1248ad48359aSPhilip Paeps 1249ad48359aSPhilip Paeps Changes to past timestamps 1250ad48359aSPhilip Paeps 1251ad48359aSPhilip Paeps Israel observed DST in 1980 (08-02/09-13) and 1984 (05-05/08-25). 1252ad48359aSPhilip Paeps (Thanks to Alois Treindl and Isaac Starkman.) 1253ad48359aSPhilip Paeps 1254ad48359aSPhilip Paeps Changes to time zone abbreviations 1255ad48359aSPhilip Paeps 1256ad48359aSPhilip Paeps Etc/UCT is now a backward-compatibility link to Etc/UTC, instead 1257ad48359aSPhilip Paeps of being a separate zone that generates the abbreviation "UCT", 1258ad48359aSPhilip Paeps which nowadays is typically a typo. (Problem reported by Isiah 1259ad48359aSPhilip Paeps Meadows.) 1260ad48359aSPhilip Paeps 1261ad48359aSPhilip Paeps Changes to code 1262ad48359aSPhilip Paeps 1263ad48359aSPhilip Paeps zic now has an -r option to limit the time range of output data. 1264ad48359aSPhilip Paeps For example, 'zic -r @1000000000' limits the output data to 1265ad48359aSPhilip Paeps timestamps starting 1000000000 seconds after the Epoch. 1266ad48359aSPhilip Paeps This helps shrink output size and can be useful for applications 1267ad48359aSPhilip Paeps not needing the full timestamp history, such as TZDIST truncation; 1268ad48359aSPhilip Paeps see Internet RFC 8536 section 5.1. (Inspired by a feature request 1269ad48359aSPhilip Paeps from Christopher Wong, helped along by bug reports from Wong and 1270ad48359aSPhilip Paeps from Tim Parenti.) 1271ad48359aSPhilip Paeps 1272ad48359aSPhilip Paeps Changes to documentation 1273ad48359aSPhilip Paeps 1274ad48359aSPhilip Paeps Mention Internet RFC 8536 (February 2019), which documents TZif. 1275ad48359aSPhilip Paeps 1276ad48359aSPhilip Paeps tz-link.html now cites tzdata-meta 1277ad48359aSPhilip Paeps <https://tzdata-meta.timtimeonline.com/>. 1278ad48359aSPhilip Paeps 1279ad48359aSPhilip Paeps 1280d595db73SPhilip PaepsRelease 2018i - 2018-12-30 11:05:43 -0800 1281d595db73SPhilip Paeps 1282d595db73SPhilip Paeps Briefly: 1283d595db73SPhilip Paeps São Tomé and Príncipe switches from +01 to +00 on 2019-01-01. 1284d595db73SPhilip Paeps 1285d595db73SPhilip Paeps Changes to future timestamps 1286d595db73SPhilip Paeps 1287d595db73SPhilip Paeps Due to a change in government, São Tomé and Príncipe switches back 1288d595db73SPhilip Paeps from +01 to +00 on 2019-01-01 at 02:00. (Thanks to Vadim 1289d595db73SPhilip Paeps Nasardinov and Michael Deckers.) 1290d595db73SPhilip Paeps 1291d595db73SPhilip Paeps 12922c5e84ccSPhilip PaepsRelease 2018h - 2018-12-23 17:59:32 -0800 1293b9994124SPhilip Paeps 1294b9994124SPhilip Paeps Briefly: 12952c5e84ccSPhilip Paeps Qyzylorda, Kazakhstan moved from +06 to +05 on 2018-12-21. 12962c5e84ccSPhilip Paeps New zone Asia/Qostanay because Qostanay, Kazakhstan didn't move. 12972c5e84ccSPhilip Paeps Metlakatla, Alaska observes PST this winter only. 12982c5e84ccSPhilip Paeps Guess Morocco will continue to adjust clocks around Ramadan. 12992c5e84ccSPhilip Paeps Add predictions for Iran from 2038 through 2090. 1300b9994124SPhilip Paeps 1301b9994124SPhilip Paeps Changes to future timestamps 1302b9994124SPhilip Paeps 13032c5e84ccSPhilip Paeps Guess that Morocco will continue to fall back just before and 13042c5e84ccSPhilip Paeps spring forward just after Ramadan, the practice since 2012. 13052c5e84ccSPhilip Paeps (Thanks to Maamar Abdelkader.) This means Morocco will observe 13062c5e84ccSPhilip Paeps negative DST during Ramadan in main and vanguard formats, and in 13072c5e84ccSPhilip Paeps rearguard format it stays in the +00 timezone and observes 13082c5e84ccSPhilip Paeps ordinary DST in all months other than Ramadan. As before, extend 13092c5e84ccSPhilip Paeps this guesswork to the year 2037. As a consequence, Morocco is 13102c5e84ccSPhilip Paeps scheduled to observe three DST transitions in some Gregorian years 13112c5e84ccSPhilip Paeps (e.g., 2033) due to the mismatch between the Gregorian and Islamic 13122c5e84ccSPhilip Paeps calendars. 13132c5e84ccSPhilip Paeps 13142c5e84ccSPhilip Paeps The table of exact transitions for Iranian DST has been extended. 13152c5e84ccSPhilip Paeps It formerly cut off before the year 2038 in a nod to 32-bit time_t. 13162c5e84ccSPhilip Paeps It now cuts off before 2091 as there is doubt about how the Persian 13172c5e84ccSPhilip Paeps calendar will treat 2091. This change predicts DST transitions in 13182c5e84ccSPhilip Paeps 2038-9, 2042-3, and 2046-7 to occur one day later than previously 13192c5e84ccSPhilip Paeps predicted. As before, post-cutoff transitions are approximated. 13202c5e84ccSPhilip Paeps 13212c5e84ccSPhilip Paeps Changes to past and future timestamps 13222c5e84ccSPhilip Paeps 13232c5e84ccSPhilip Paeps Qyzylorda (aka Kyzylorda) oblast in Kazakhstan moved from +06 to 13242c5e84ccSPhilip Paeps +05 on 2018-12-21. This is a zone split as Qostanay (aka 13252c5e84ccSPhilip Paeps Kostanay) did not switch, so create a zone Asia/Qostanay. 13262c5e84ccSPhilip Paeps 13272c5e84ccSPhilip Paeps Metlakatla moved from Alaska to Pacific standard time on 2018-11-04. 13282c5e84ccSPhilip Paeps It did not change clocks that day and remains on -08 this winter. 13292c5e84ccSPhilip Paeps (Thanks to Ryan Stanley.) It will revert to the usual Alaska 13302c5e84ccSPhilip Paeps rules next spring, so this change affects only timestamps 13312c5e84ccSPhilip Paeps from 2018-11-04 through 2019-03-10. 13322c5e84ccSPhilip Paeps 13332c5e84ccSPhilip Paeps Change to past timestamps 13342c5e84ccSPhilip Paeps 13352c5e84ccSPhilip Paeps Kwajalein's 1993-08-20 transition from -12 to +12 was at 24:00, 13362c5e84ccSPhilip Paeps not 00:00. I transcribed the time incorrectly from Shanks. 13372c5e84ccSPhilip Paeps (Thanks to Phake Nick.) 13382c5e84ccSPhilip Paeps 13392c5e84ccSPhilip Paeps Nauru's 1979 transition was on 02-10 at 02:00, not 05-01 at 00:00. 13402c5e84ccSPhilip Paeps (Thanks to Phake Nick.) 13412c5e84ccSPhilip Paeps 13422c5e84ccSPhilip Paeps Guam observed DST irregularly from 1959 through 1977. 13432c5e84ccSPhilip Paeps (Thanks to Phake Nick.) 13442c5e84ccSPhilip Paeps 13452c5e84ccSPhilip Paeps Hong Kong observed DST in 1941 starting 06-15 (not 04-01), then on 13462c5e84ccSPhilip Paeps 10-01 changed standard time to +08:30 (not +08). Its transition 13472c5e84ccSPhilip Paeps back to +08 after WWII was on 1945-09-15, not the previous day. 13482c5e84ccSPhilip Paeps Its 1904-10-30 change took effect at 01:00 +08 (not 00:00 LMT). 13492c5e84ccSPhilip Paeps (Thanks to Phake Nick, Steve Allen, and Joseph Myers.) Also, 13502c5e84ccSPhilip Paeps its 1952 fallback was on 11-02 (not 10-25). 13512c5e84ccSPhilip Paeps 13522c5e84ccSPhilip Paeps This release contains many changes to timestamps before 1946 due 13532c5e84ccSPhilip Paeps to Japanese possession or occupation of Pacific/Chuuk, 13542c5e84ccSPhilip Paeps Pacific/Guam, Pacific/Kosrae, Pacific/Kwajalein, Pacific/Majuro, 13552c5e84ccSPhilip Paeps Pacific/Nauru, Pacific/Palau, and Pacific/Pohnpei. 13562c5e84ccSPhilip Paeps (Thanks to Phake Nick.) 13572c5e84ccSPhilip Paeps 13582c5e84ccSPhilip Paeps Assume that the Spanish East Indies was like the Philippines and 13592c5e84ccSPhilip Paeps observed American time until the end of 1844. This affects 13602c5e84ccSPhilip Paeps Pacific/Chuuk, Pacific/Kosrae, Pacific/Palau, and Pacific/Pohnpei. 13612c5e84ccSPhilip Paeps 13622c5e84ccSPhilip Paeps Changes to past tm_isdst flags 13632c5e84ccSPhilip Paeps 13642c5e84ccSPhilip Paeps For the recent Morocco change, the tm_isdst flag should be 1 from 13652c5e84ccSPhilip Paeps 2018-10-27 00:00 to 2018-10-28 03:00. (Thanks to Michael Deckers.) 13662c5e84ccSPhilip Paeps Give a URL to the official decree. (Thanks to Matt Johnson.) 13672c5e84ccSPhilip Paeps 13682c5e84ccSPhilip Paeps 13692c5e84ccSPhilip PaepsRelease 2018g - 2018-10-26 22:22:45 -0700 13702c5e84ccSPhilip Paeps 13712c5e84ccSPhilip Paeps Briefly: 13722c5e84ccSPhilip Paeps Morocco switches to permanent +01 on 2018-10-28. 13732c5e84ccSPhilip Paeps 13742c5e84ccSPhilip Paeps Changes to future timestamps 13752c5e84ccSPhilip Paeps 13762c5e84ccSPhilip Paeps Morocco switches from +00/+01 to permanent +01 effective 2018-10-28, 13772c5e84ccSPhilip Paeps so its clocks will not fall back as previously scheduled. 1378b9994124SPhilip Paeps (Thanks to Mohamed Essedik Najd and Brian Inglis.) 1379b9994124SPhilip Paeps 1380b9994124SPhilip Paeps Changes to code 1381b9994124SPhilip Paeps 1382b9994124SPhilip Paeps When generating TZif files with leap seconds, zic no longer uses a 1383b9994124SPhilip Paeps format that trips up older 32-bit clients, fixing a bug introduced 1384b9994124SPhilip Paeps in 2018f. (Reported by Daniel Fischer.) Also, the zic workaround 1385b9994124SPhilip Paeps for QTBUG-53071 now also works for TZif files with leap seconds. 1386b9994124SPhilip Paeps 1387b9994124SPhilip Paeps The translator to rearguard format now rewrites the line 1388b9994124SPhilip Paeps "Rule Japan 1948 1951 - Sep Sat>=8 25:00 0 S" to 1389b9994124SPhilip Paeps "Rule Japan 1948 1951 - Sep Sun>=9 1:00 0 S". 1390b9994124SPhilip Paeps This caters to zic before 2007 and to Oracle TZUpdater 2.2.0 1391b9994124SPhilip Paeps and earlier. (Reported by Christos Zoulas.) 1392b9994124SPhilip Paeps 1393b9994124SPhilip Paeps Changes to past time zone abbreviations 1394b9994124SPhilip Paeps 1395b9994124SPhilip Paeps Change HDT to HWT/HPT for WWII-era abbreviations in Hawaii. 1396b9994124SPhilip Paeps This reverts to 2011h, as the abbreviation change in 2011i was 1397b9994124SPhilip Paeps likely inadvertent. 1398b9994124SPhilip Paeps 1399b9994124SPhilip Paeps Changes to documentation 1400b9994124SPhilip Paeps 1401b9994124SPhilip Paeps tzfile.5 has new sections on interoperability issues. 1402b9994124SPhilip Paeps 1403b9994124SPhilip Paeps 140489abb9f8SPhilip PaepsRelease 2018f - 2018-10-18 00:14:18 -0700 140589abb9f8SPhilip Paeps 140689abb9f8SPhilip Paeps Briefly: 140789abb9f8SPhilip Paeps Volgograd moves from +03 to +04 on 2018-10-28. 140889abb9f8SPhilip Paeps Fiji ends DST 2019-01-13, not 2019-01-20. 140989abb9f8SPhilip Paeps Most of Chile changes DST dates, effective 2019-04-06. 141089abb9f8SPhilip Paeps 141189abb9f8SPhilip Paeps Changes to future timestamps 141289abb9f8SPhilip Paeps 141389abb9f8SPhilip Paeps Volgograd moves from +03 to +04 on 2018-10-28 at 02:00. 141489abb9f8SPhilip Paeps (Thanks to Alexander Fetisov and Stepan Golosunov.) 141589abb9f8SPhilip Paeps 141689abb9f8SPhilip Paeps Fiji ends DST 2019-01-13 instead of the 2019-01-20 previously 141789abb9f8SPhilip Paeps predicted. (Thanks to Raymond Kumar.) Adjust future predictions 141889abb9f8SPhilip Paeps accordingly. 141989abb9f8SPhilip Paeps 142089abb9f8SPhilip Paeps Most of Chile will end DST on the first Saturday in April at 24:00 mainland 142189abb9f8SPhilip Paeps time, and resume DST on the first Saturday in September at 24:00 mainland 142289abb9f8SPhilip Paeps time. The changes are effective from 2019-04-06, and do not affect the 142389abb9f8SPhilip Paeps Magallanes region modeled by America/Punta_Arenas. (Thanks to Juan Correa 142489abb9f8SPhilip Paeps and Tim Parenti.) Adjust future predictions accordingly. 142589abb9f8SPhilip Paeps 142689abb9f8SPhilip Paeps Changes to past timestamps 142789abb9f8SPhilip Paeps 142889abb9f8SPhilip Paeps The 2018-05-05 North Korea 30-minute time zone change took place 142989abb9f8SPhilip Paeps at 23:30 the previous day, not at 00:00 that day. 143089abb9f8SPhilip Paeps 143189abb9f8SPhilip Paeps China's 1988 spring-forward transition was on April 17, not 143289abb9f8SPhilip Paeps April 10. Its DST transitions in 1986/91 were at 02:00, not 00:00. 143389abb9f8SPhilip Paeps (Thanks to P Chan.) 143489abb9f8SPhilip Paeps 143589abb9f8SPhilip Paeps Fix several issues for Macau before 1992. Macau's pre-1904 LMT 143689abb9f8SPhilip Paeps was off by 10 s. Macau switched to +08 in 1904 not 1912, and 143789abb9f8SPhilip Paeps temporarily switched to +09/+10 during World War II. Macau 143889abb9f8SPhilip Paeps observed DST in 1942/79, not 1961/80, and there were several 143989abb9f8SPhilip Paeps errors for transition times and dates. (Thanks to P Chan.) 144089abb9f8SPhilip Paeps 144189abb9f8SPhilip Paeps The 1948-1951 fallback transitions in Japan were at 25:00 on 144289abb9f8SPhilip Paeps September's second Saturday, not at 24:00. (Thanks to Phake Nick.) 144389abb9f8SPhilip Paeps zic turns this into 01:00 on the day after September's second 144489abb9f8SPhilip Paeps Saturday, which is the best that POSIX or C platforms can do. 144589abb9f8SPhilip Paeps 144689abb9f8SPhilip Paeps Incorporate 1940-1949 Asia/Shanghai DST transitions from a 2014 144789abb9f8SPhilip Paeps paper by Li Yu, replacing more-questionable data from Shanks. 144889abb9f8SPhilip Paeps 144989abb9f8SPhilip Paeps Changes to time zone abbreviations 145089abb9f8SPhilip Paeps 145189abb9f8SPhilip Paeps Use "PST" and "PDT" for Philippine time. (Thanks to Paul Goyette.) 145289abb9f8SPhilip Paeps 145389abb9f8SPhilip Paeps Changes to code 145489abb9f8SPhilip Paeps 145589abb9f8SPhilip Paeps zic now always generates TZif files where time type 0 is used for 145689abb9f8SPhilip Paeps timestamps before the first transition. This simplifies the 145789abb9f8SPhilip Paeps reading of TZif files and should not affect behavior of existing 145889abb9f8SPhilip Paeps TZif readers because the same set of time types is used; only 145989abb9f8SPhilip Paeps their internal indexes may have changed. This affects only the 146089abb9f8SPhilip Paeps legacy zones EST5EDT, CST6CDT, MST7MDT, PST8PDT, CET, MET, and 146189abb9f8SPhilip Paeps EET, which previously used nonzero types for these timestamps. 146289abb9f8SPhilip Paeps 146389abb9f8SPhilip Paeps Because of the type 0 change, zic no longer outputs a dummy 146489abb9f8SPhilip Paeps transition at time -2**59 (before the Big Bang), as clients should 146589abb9f8SPhilip Paeps no longer need this to handle historical timestamps correctly. 146689abb9f8SPhilip Paeps This reverts a change introduced in 2013d and shrinks most TZif 146789abb9f8SPhilip Paeps files by a few bytes. 146889abb9f8SPhilip Paeps 146989abb9f8SPhilip Paeps zic now supports negative time-of-day in Rule and Leap lines, e.g., 147089abb9f8SPhilip Paeps "Rule X min max - Apr lastSun -6:00 1:00 -" means the transition 147189abb9f8SPhilip Paeps occurs at 18:00 on the Saturday before the last Sunday in April. 147289abb9f8SPhilip Paeps This behavior was documented in 2018a but the code did not 147389abb9f8SPhilip Paeps entirely match the documentation. 147489abb9f8SPhilip Paeps 147589abb9f8SPhilip Paeps localtime.c no longer requires at least one time type in TZif 147689abb9f8SPhilip Paeps files that lack transitions or have a POSIX-style TZ string. This 147789abb9f8SPhilip Paeps future-proofs the code against possible future extensions to the 147889abb9f8SPhilip Paeps format that would allow TZif files with POSIX-style TZ strings and 147989abb9f8SPhilip Paeps without transitions or time types. 148089abb9f8SPhilip Paeps 148189abb9f8SPhilip Paeps A read-access subscript error in localtime.c has been fixed. 148289abb9f8SPhilip Paeps It could occur only in TZif files with timecnt == 0, something that 148389abb9f8SPhilip Paeps does not happen in practice now but could happen in future versions. 148489abb9f8SPhilip Paeps 148589abb9f8SPhilip Paeps localtime.c no longer ignores TZif POSIX-style TZ strings that 148689abb9f8SPhilip Paeps specify only standard time. Instead, these TZ strings now 148789abb9f8SPhilip Paeps override the default time type for timestamps after the last 148889abb9f8SPhilip Paeps transition (or for all timestamps if there are no transitions), 148989abb9f8SPhilip Paeps just as DST strings specifying DST have always done. 149089abb9f8SPhilip Paeps 149189abb9f8SPhilip Paeps leapseconds.awk now outputs "#updated" and "#expires" comments, 149289abb9f8SPhilip Paeps and supports leap seconds at the ends of months other than June 149389abb9f8SPhilip Paeps and December. (Inspired by suggestions from Chris Woodbury.) 149489abb9f8SPhilip Paeps 149589abb9f8SPhilip Paeps Changes to documentation 149689abb9f8SPhilip Paeps 149789abb9f8SPhilip Paeps New restrictions: A Rule name must start with a character that 149889abb9f8SPhilip Paeps is neither an ASCII digit nor "-" nor "+", and an unquoted name 149989abb9f8SPhilip Paeps should not use characters in the set "!$%&'()*,/:;<=>?@[\]^`{|}~". 150089abb9f8SPhilip Paeps The latter restriction makes room for future extensions (a 150189abb9f8SPhilip Paeps possibility noted by Tom Lane). 150289abb9f8SPhilip Paeps 150389abb9f8SPhilip Paeps tzfile.5 now documents what time types apply before the first and 150489abb9f8SPhilip Paeps after the last transition, if any. 150589abb9f8SPhilip Paeps 150689abb9f8SPhilip Paeps Documentation now uses the spelling "timezone" for a TZ setting 150789abb9f8SPhilip Paeps that determines timestamp history, and "time zone" for a 150889abb9f8SPhilip Paeps geographic region currently sharing the same standard time. 150989abb9f8SPhilip Paeps 151089abb9f8SPhilip Paeps The name "TZif" is now used for the tz binary data format. 151189abb9f8SPhilip Paeps 151289abb9f8SPhilip Paeps tz-link.htm now mentions the A0 TimeZone Migration utilities. 151389abb9f8SPhilip Paeps (Thanks to Aldrin Martoq for the link.) 151489abb9f8SPhilip Paeps 151589abb9f8SPhilip Paeps Changes to build procedure 151689abb9f8SPhilip Paeps 151789abb9f8SPhilip Paeps New 'make' target 'rearguard_tarballs' to build the rearguard 151889abb9f8SPhilip Paeps tarball only. This is a convenience on platforms that lack lzip 151989abb9f8SPhilip Paeps if you want to build the rearguard tarball. (Problem reported by 152089abb9f8SPhilip Paeps Deborah Goldsmith.) 152189abb9f8SPhilip Paeps 152289abb9f8SPhilip Paeps tzdata.zi is now more stable from release to release. (Problem 152389abb9f8SPhilip Paeps noted by Tom Lane.) It is also a bit shorter. 152489abb9f8SPhilip Paeps 152589abb9f8SPhilip Paeps tzdata.zi now can contain comment lines documenting configuration 152689abb9f8SPhilip Paeps information, such as which data format was selected, which input 152789abb9f8SPhilip Paeps files were used, and how leap seconds are treated. (Problems 152889abb9f8SPhilip Paeps noted by Lester Caine and Brian Inglis.) If the Makefile defaults 152989abb9f8SPhilip Paeps are used these comment lines are absent, for backward 153089abb9f8SPhilip Paeps compatibility. A redistributor intending to alter its copy of the 153189abb9f8SPhilip Paeps files should also append "-LABEL" to the 'version' file's first 153289abb9f8SPhilip Paeps line, where "LABEL" identifies the redistributor's change. 153389abb9f8SPhilip Paeps 153489abb9f8SPhilip Paeps 1535d81c2dd9SPhilip PaepsRelease 2018e - 2018-05-01 23:42:51 -0700 1536d81c2dd9SPhilip Paeps 1537d81c2dd9SPhilip Paeps Briefly: 1538d81c2dd9SPhilip Paeps 1539d81c2dd9SPhilip Paeps North Korea switches back to +09 on 2018-05-05. 1540d81c2dd9SPhilip Paeps The main format uses negative DST again, for Ireland etc. 1541d81c2dd9SPhilip Paeps 'make tarballs' now also builds a rearguard tarball. 1542d81c2dd9SPhilip Paeps New 's' and 'd' suffixes in SAVE columns of Rule and Zone lines. 1543d81c2dd9SPhilip Paeps 1544d81c2dd9SPhilip Paeps Changes to past and future timestamps 1545d81c2dd9SPhilip Paeps 1546d81c2dd9SPhilip Paeps North Korea switches back from +0830 to +09 on 2018-05-05. 1547d81c2dd9SPhilip Paeps (Thanks to Kang Seonghoon, Arthur David Olson, Seo Sanghyeon, 1548d81c2dd9SPhilip Paeps and Tim Parenti.) 1549d81c2dd9SPhilip Paeps 1550d81c2dd9SPhilip Paeps Bring back the negative-DST changes of 2018a, except be more 1551d81c2dd9SPhilip Paeps compatible with data parsers that do not support negative DST. 1552d81c2dd9SPhilip Paeps Also, this now affects historical timestamps in Namibia and the 1553d81c2dd9SPhilip Paeps former Czechoslovakia, not just Ireland. The main format now uses 1554d81c2dd9SPhilip Paeps negative DST to model timestamps in Europe/Dublin (from 1971 on), 1555d81c2dd9SPhilip Paeps Europe/Prague (1946/7), and Africa/Windhoek (1994/2017). This 1556d81c2dd9SPhilip Paeps does not affect UT offsets, only time zone abbreviations and the 1557d81c2dd9SPhilip Paeps tm_isdst flag. Also, this does not affect rearguard or vanguard 1558d81c2dd9SPhilip Paeps formats; effectively the main format now uses vanguard instead of 1559d81c2dd9SPhilip Paeps rearguard format. Data parsers that do not support negative DST 1560d81c2dd9SPhilip Paeps can still use data from the rearguard tarball described below. 1561d81c2dd9SPhilip Paeps 1562d81c2dd9SPhilip Paeps Changes to build procedure 1563d81c2dd9SPhilip Paeps 1564d81c2dd9SPhilip Paeps The command 'make tarballs' now also builds the tarball 1565d81c2dd9SPhilip Paeps tzdataVERSION-rearguard.tar.gz, which is like tzdataVERSION.tar.gz 1566d81c2dd9SPhilip Paeps except that it uses rearguard format intended for trailing-edge 1567d81c2dd9SPhilip Paeps data parsers. 1568d81c2dd9SPhilip Paeps 1569d81c2dd9SPhilip Paeps Changes to data format and to code 1570d81c2dd9SPhilip Paeps 1571d81c2dd9SPhilip Paeps The SAVE column of Rule and Zone lines can now have an 's' or 'd' 1572d81c2dd9SPhilip Paeps suffix, which specifies whether the adjusted time is standard time 1573d81c2dd9SPhilip Paeps or daylight saving time. If no suffix is given, daylight saving 1574d81c2dd9SPhilip Paeps time is used if and only if the SAVE column is nonzero; this is 1575d81c2dd9SPhilip Paeps the longstanding behavior. Although this new feature is not used 1576d81c2dd9SPhilip Paeps in tzdata, it could be used to specify the legal time in Namibia 1577d81c2dd9SPhilip Paeps 1994-2017, as opposed to the popular time (see below). 1578d81c2dd9SPhilip Paeps 1579d81c2dd9SPhilip Paeps Changes to past timestamps 1580d81c2dd9SPhilip Paeps 1581d81c2dd9SPhilip Paeps From 1994 through 2017 Namibia observed DST in winter, not summer. 1582d81c2dd9SPhilip Paeps That is, it used negative DST, as Ireland still does. This change 1583d81c2dd9SPhilip Paeps does not affect UTC offsets; it affects only the tm_isdst flag and 1584d81c2dd9SPhilip Paeps the abbreviation used during summer, which is now CAT, not WAST. 1585d81c2dd9SPhilip Paeps Although (as noted by Michael Deckers) summer and winter time were 1586d81c2dd9SPhilip Paeps both simply called "standard time" in Namibian law, in common 1587d81c2dd9SPhilip Paeps practice winter time was considered to be DST (as noted by Stephen 1588d81c2dd9SPhilip Paeps Colebourne). The full effect of this change is only in vanguard 158989abb9f8SPhilip Paeps and main format; in rearguard format, the tm_isdst flag is still 1590d81c2dd9SPhilip Paeps zero in winter and nonzero in summer. 1591d81c2dd9SPhilip Paeps 1592d81c2dd9SPhilip Paeps In 1946/7 Czechoslovakia also observed negative DST in winter. 159389abb9f8SPhilip Paeps The full effect of this change is only in vanguard and main 159489abb9f8SPhilip Paeps formats; in rearguard format, it is modeled as plain GMT without 1595d81c2dd9SPhilip Paeps daylight saving. Also, the dates of some 1944/5 DST transitions 1596d81c2dd9SPhilip Paeps in Czechoslovakia have been changed. 1597d81c2dd9SPhilip Paeps 1598d81c2dd9SPhilip Paeps 159946bee4edSPhilip PaepsRelease 2018d - 2018-03-22 07:05:46 -0700 160046bee4edSPhilip Paeps 160146bee4edSPhilip Paeps Briefly: 160246bee4edSPhilip Paeps 160346bee4edSPhilip Paeps Palestine starts DST a week earlier in 2018. 160446bee4edSPhilip Paeps Add support for vanguard and rearguard data consumers. 160546bee4edSPhilip Paeps Add subsecond precision to source data format, though not to data. 160646bee4edSPhilip Paeps 160746bee4edSPhilip Paeps Changes to future timestamps 160846bee4edSPhilip Paeps 160946bee4edSPhilip Paeps In 2018, Palestine starts DST on March 24, not March 31. 161046bee4edSPhilip Paeps Adjust future predictions accordingly. (Thanks to Sharef Mustafa.) 161146bee4edSPhilip Paeps 161246bee4edSPhilip Paeps Changes to past and future timestamps 161346bee4edSPhilip Paeps 161446bee4edSPhilip Paeps Casey Station in Antarctica changed from +11 to +08 on 2018-03-11 161546bee4edSPhilip Paeps at 04:00. (Thanks to Steffen Thorsen.) 161646bee4edSPhilip Paeps 161746bee4edSPhilip Paeps Changes to past timestamps 161846bee4edSPhilip Paeps 161946bee4edSPhilip Paeps Historical transitions for Uruguay, represented by 162046bee4edSPhilip Paeps America/Montevideo, have been updated per official legal documents, 162146bee4edSPhilip Paeps replacing previous data mainly originating from the inventions of 162246bee4edSPhilip Paeps Shanks & Pottenger. This has resulted in adjustments ranging from 162346bee4edSPhilip Paeps 30 to 90 minutes in either direction over at least two dozen 162446bee4edSPhilip Paeps distinct periods ranging from one day to several years in length. 162546bee4edSPhilip Paeps A mere handful of pre-1991 transitions are unaffected; data since 162646bee4edSPhilip Paeps then has come from more reliable contemporaneous reporting. These 162746bee4edSPhilip Paeps changes affect various timestamps in 1920-1923, 1936, 1939, 162846bee4edSPhilip Paeps 1942-1943, 1959, 1966-1970, 1972, 1974-1980, and 1988-1990. 162946bee4edSPhilip Paeps Additionally, Uruguay's pre-standard-time UT offset has been 163046bee4edSPhilip Paeps adjusted westward by 7 seconds, from UT-03:44:44 to UT-03:44:51, to 163146bee4edSPhilip Paeps match the location of the Observatory of the National Meteorological 163246bee4edSPhilip Paeps Institute in Montevideo. 163346bee4edSPhilip Paeps (Thanks to Jeremie Bonjour, Tim Parenti, and Michael Deckers.) 163446bee4edSPhilip Paeps 163594c2d487SPhilip Paeps East Kiribati skipped New Year's Eve 1994, not New Year's Day 1995. 163694c2d487SPhilip Paeps (Thanks to Kerry Shetline.) 163746bee4edSPhilip Paeps 1638d81c2dd9SPhilip Paeps Fix the 1912-01-01 transition for Portugal and its colonies. 163946bee4edSPhilip Paeps This transition was at 00:00 according to the new UT offset, not 164046bee4edSPhilip Paeps according to the old one. Also assume that Cape Verde switched on 164146bee4edSPhilip Paeps the same date as the rest, not in 1907. This affects 164246bee4edSPhilip Paeps Africa/Bissau, Africa/Sao_Tome, Asia/Macau, Atlantic/Azores, 164346bee4edSPhilip Paeps Atlantic/Cape_Verde, Atlantic/Madeira, and Europe/Lisbon. 164446bee4edSPhilip Paeps (Thanks to Michael Deckers.) 164546bee4edSPhilip Paeps 164646bee4edSPhilip Paeps Fix an off-by-1 error for pre-1913 timestamps in Jamaica and in 164746bee4edSPhilip Paeps Turks & Caicos. 164846bee4edSPhilip Paeps 164946bee4edSPhilip Paeps Changes to past time zone abbreviations 165046bee4edSPhilip Paeps 165146bee4edSPhilip Paeps MMT took effect in Uruguay from 1908-06-10, not 1898-06-28. There 165246bee4edSPhilip Paeps is no clock change associated with the transition. 165346bee4edSPhilip Paeps 165446bee4edSPhilip Paeps Changes to build procedure 165546bee4edSPhilip Paeps 165646bee4edSPhilip Paeps The new DATAFORM macro in the Makefile lets the installer choose 165746bee4edSPhilip Paeps among three source data formats. The idea is to lessen downstream 165846bee4edSPhilip Paeps disruption when data formats are improved. 165946bee4edSPhilip Paeps 166046bee4edSPhilip Paeps * DATAFORM=vanguard installs from the latest, bleeding-edge 166146bee4edSPhilip Paeps format. DATAFORM=main (the default) installs from the format 166246bee4edSPhilip Paeps used in the 'africa' etc. files. DATAFORM=rearguard installs 166346bee4edSPhilip Paeps from a trailing-edge format. Eventually, elements of today's 166446bee4edSPhilip Paeps vanguard format should move to the main format, and similarly 166546bee4edSPhilip Paeps the main format's features should eventually move to the 166646bee4edSPhilip Paeps rearguard format. 166746bee4edSPhilip Paeps 166846bee4edSPhilip Paeps * In the current version, the main and rearguard formats are 166946bee4edSPhilip Paeps identical and match that of 2018c, so this change does not 167046bee4edSPhilip Paeps affect default behavior. The vanguard format currently contains 167146bee4edSPhilip Paeps one feature not in the main format: negative SAVE values. This 167246bee4edSPhilip Paeps improves support for Ireland, which uses Irish Standard Time 167346bee4edSPhilip Paeps (IST, UTC+01) in summer and GMT (UTC) in winter. tzcode has 167446bee4edSPhilip Paeps supported negative SAVE values for decades, and this feature 167546bee4edSPhilip Paeps should move to the main format soon. However, it will not move 167646bee4edSPhilip Paeps to the rearguard format for quite some time because some 167746bee4edSPhilip Paeps downstream parsers do not support it. 167846bee4edSPhilip Paeps 167946bee4edSPhilip Paeps * The build procedure constructs three files vanguard.zi, main.zi, 1680ad48359aSPhilip Paeps and rearguard.zi, one for each format. Although the files 1681ad48359aSPhilip Paeps represent essentially the same data, they may have minor 1682ad48359aSPhilip Paeps discrepancies that users are not likely to notice. The files 168346bee4edSPhilip Paeps are intended for downstream data consumers and are not 168446bee4edSPhilip Paeps installed. Zoneinfo parsers that do not support negative SAVE values 168546bee4edSPhilip Paeps should start using rearguard.zi, so that they will be unaffected 168646bee4edSPhilip Paeps when the negative-DST feature moves from vanguard to main. 168746bee4edSPhilip Paeps Bleeding-edge Zoneinfo parsers that support the new features 168846bee4edSPhilip Paeps already can use vanguard.zi; in this respect, current tzcode is 168946bee4edSPhilip Paeps bleeding-edge. 169046bee4edSPhilip Paeps 169146bee4edSPhilip Paeps The Makefile should now be safe for parallelized builds, and 'make 169246bee4edSPhilip Paeps -j to2050new.tzs' is now much faster on a multiprocessor host 169346bee4edSPhilip Paeps with GNU Make. 169446bee4edSPhilip Paeps 169546bee4edSPhilip Paeps When built with -DSUPPRESS_TZDIR, the tzcode library no longer 169646bee4edSPhilip Paeps prepends TZDIR/ to file names that do not begin with '/'. This is 169746bee4edSPhilip Paeps not recommended for general use, due to its security implications. 169846bee4edSPhilip Paeps (From a suggestion by Manuela Friedrich.) 169946bee4edSPhilip Paeps 170046bee4edSPhilip Paeps Changes to code 170146bee4edSPhilip Paeps 170246bee4edSPhilip Paeps zic now accepts subsecond precision in expressions like 170346bee4edSPhilip Paeps 00:19:32.13, which is approximately the legal time of the 170446bee4edSPhilip Paeps Netherlands from 1835 to 1937. However, because it is 170546bee4edSPhilip Paeps questionable whether the few recorded uses of non-integer offsets 170646bee4edSPhilip Paeps had subsecond precision in practice, there are no plans for tzdata 170746bee4edSPhilip Paeps to use this feature. (Thanks to Steve Allen for pointing out 170846bee4edSPhilip Paeps the limitations of historical data in this area.) 170946bee4edSPhilip Paeps 171046bee4edSPhilip Paeps The code is a bit more portable to MS-Windows. Installers can 171146bee4edSPhilip Paeps compile with -DRESERVE_STD_EXT_IDS on MS-Windows platforms that 171246bee4edSPhilip Paeps reserve identifiers like 'localtime'. (Thanks to Manuela 17132865ab3fSPhilip Paeps Friedrich.) 171446bee4edSPhilip Paeps 171546bee4edSPhilip Paeps Changes to documentation and commentary 171646bee4edSPhilip Paeps 171746bee4edSPhilip Paeps theory.html now outlines tzdb's extensions to POSIX's model for 171846bee4edSPhilip Paeps civil time, and has a section "POSIX features no longer needed" 171946bee4edSPhilip Paeps that lists POSIX API components that are now vestigial. 172046bee4edSPhilip Paeps (From suggestions by Steve Summit.) It also better distinguishes 172146bee4edSPhilip Paeps time zones from tz regions. (From a suggestion by Guy Harris.) 172246bee4edSPhilip Paeps 172346bee4edSPhilip Paeps Commentary is now more consistent about using the phrase "daylight 172446bee4edSPhilip Paeps saving time", to match the C name tm_isdst. Daylight saving time 172546bee4edSPhilip Paeps need not occur in summer, and need not have a positive offset from 172646bee4edSPhilip Paeps standard time. 172746bee4edSPhilip Paeps 172846bee4edSPhilip Paeps Commentary about historical transitions in Uruguay has been expanded 172946bee4edSPhilip Paeps with links to many relevant legal documents. 173046bee4edSPhilip Paeps (Thanks to Tim Parenti.) 173146bee4edSPhilip Paeps 173246bee4edSPhilip Paeps Commentary now uses some non-ASCII characters with Unicode value 173346bee4edSPhilip Paeps less than U+0100, as they can be useful and should work even with 173446bee4edSPhilip Paeps older editors such as XEmacs. 173546bee4edSPhilip Paeps 173646bee4edSPhilip Paeps 1737afb91be3SPhilip PaepsRelease 2018c - 2018-01-22 23:00:44 -0800 1738afb91be3SPhilip Paeps 1739afb91be3SPhilip Paeps Briefly: 174046bee4edSPhilip Paeps Revert Irish changes that relied on negative SAVE values. 1741afb91be3SPhilip Paeps 1742afb91be3SPhilip Paeps Changes to tm_isdst 1743afb91be3SPhilip Paeps 1744afb91be3SPhilip Paeps Revert the 2018a change to Europe/Dublin. As before, this change 1745afb91be3SPhilip Paeps does not affect UT offsets or abbreviations; it affects only 1746afb91be3SPhilip Paeps whether timestamps are considered to be standard time or 1747afb91be3SPhilip Paeps daylight-saving time, as expressed in the tm_isdst flag of C's 1748afb91be3SPhilip Paeps struct tm type. This reversion is intended to be a temporary 1749afb91be3SPhilip Paeps workaround for problems discovered with downstream uses of 1750afb91be3SPhilip Paeps releases 2018a and 2018b, which implemented Irish time by using 175146bee4edSPhilip Paeps negative SAVE values in the Eire rules of the 'europe' file. 175246bee4edSPhilip Paeps Although negative SAVE values have been part of tzcode for many 1753afb91be3SPhilip Paeps years and are supported by many platforms, they were not 1754afb91be3SPhilip Paeps documented before 2018a and ICU and OpenJDK do not currently 1755afb91be3SPhilip Paeps support them. A mechanism to export data to platforms lacking 1756afb91be3SPhilip Paeps support for negative DST is planned to be developed before the 1757afb91be3SPhilip Paeps change is reapplied. (Problems reported by Deborah Goldsmith and 1758afb91be3SPhilip Paeps Stephen Colebourne.) 1759afb91be3SPhilip Paeps 1760afb91be3SPhilip Paeps Changes to past timestamps 1761afb91be3SPhilip Paeps 1762afb91be3SPhilip Paeps Japanese DST transitions (1948-1951) were Sundays at 00:00, not 1763afb91be3SPhilip Paeps Saturdays or Sundays at 02:00. (Thanks to Takayuki Nikai.) 1764afb91be3SPhilip Paeps 1765afb91be3SPhilip Paeps Changes to build procedure 1766afb91be3SPhilip Paeps 1767afb91be3SPhilip Paeps The build procedure now works around mawk 1.3.3's lack of support 1768afb91be3SPhilip Paeps for character class expressions. (Problem reported by Ohyama.) 1769afb91be3SPhilip Paeps 1770afb91be3SPhilip Paeps 1771afb91be3SPhilip PaepsRelease 2018b - 2018-01-17 23:24:48 -0800 1772afb91be3SPhilip Paeps 1773afb91be3SPhilip Paeps Briefly: 1774afb91be3SPhilip Paeps Fix a packaging problem in tz2018a, which was missing 'pacificnew'. 1775afb91be3SPhilip Paeps 1776afb91be3SPhilip Paeps Changes to build procedure 1777afb91be3SPhilip Paeps 1778afb91be3SPhilip Paeps The distribution now contains the file 'pacificnew' again. 17799f9fc6bbSPhilip Paeps This file was inadvertently omitted in the 2018a distribution. 1780afb91be3SPhilip Paeps (Problem reported by Matias Fonzo.) 1781afb91be3SPhilip Paeps 1782afb91be3SPhilip Paeps 1783f2fcff28SPhilip PaepsRelease 2018a - 2018-01-12 22:29:21 -0800 1784f2fcff28SPhilip Paeps 1785f2fcff28SPhilip Paeps Briefly: 1786f2fcff28SPhilip Paeps São Tomé and Príncipe switched from +00 to +01. 1787f2fcff28SPhilip Paeps Brazil's DST will now start on November's first Sunday. 1788f2fcff28SPhilip Paeps Ireland's standard time is now in the summer, not the winter. 1789f2fcff28SPhilip Paeps Use Debian-style installation locations, instead of 4.3BSD-style. 1790f2fcff28SPhilip Paeps New zic option -t. 1791f2fcff28SPhilip Paeps 1792f2fcff28SPhilip Paeps Changes to past and future timestamps 1793f2fcff28SPhilip Paeps 1794f2fcff28SPhilip Paeps São Tomé and Príncipe switched from +00 to +01 on 2018-01-01 at 1795f2fcff28SPhilip Paeps 01:00. (Thanks to Steffen Thorsen and Michael Deckers.) 1796f2fcff28SPhilip Paeps 1797f2fcff28SPhilip Paeps Changes to future timestamps 1798f2fcff28SPhilip Paeps 1799f2fcff28SPhilip Paeps Starting in 2018 southern Brazil will begin DST on November's 1800f2fcff28SPhilip Paeps first Sunday instead of October's third Sunday. (Thanks to 1801f2fcff28SPhilip Paeps Steffen Thorsen.) 1802f2fcff28SPhilip Paeps 1803f2fcff28SPhilip Paeps Changes to past timestamps 1804f2fcff28SPhilip Paeps 1805f2fcff28SPhilip Paeps A discrepancy of 4 s in timestamps before 1931 in South Sudan has 1806f2fcff28SPhilip Paeps been corrected. The 'backzone' and 'zone.tab' files did not agree 1807f2fcff28SPhilip Paeps with the 'africa' and 'zone1970.tab' files. (Problem reported by 1808f2fcff28SPhilip Paeps Michael Deckers.) 1809f2fcff28SPhilip Paeps 1810f2fcff28SPhilip Paeps The abbreviation invented for Bolivia Summer Time (1931-2) is now 1811f2fcff28SPhilip Paeps BST instead of BOST, to be more consistent with the convention 1812f2fcff28SPhilip Paeps used for Latvian Summer Time (1918-9) and for British Summer Time. 1813f2fcff28SPhilip Paeps 1814f2fcff28SPhilip Paeps Changes to tm_isdst 1815f2fcff28SPhilip Paeps 1816f2fcff28SPhilip Paeps Change Europe/Dublin so that it observes Irish Standard Time (UT 1817f2fcff28SPhilip Paeps +01) in summer and GMT (as negative daylight-saving) in winter, 1818f2fcff28SPhilip Paeps instead of observing standard time (GMT) in winter and Irish 1819f2fcff28SPhilip Paeps Summer Time (UT +01) in summer. This change does not affect UT 1820f2fcff28SPhilip Paeps offsets or abbreviations; it affects only whether timestamps are 1821f2fcff28SPhilip Paeps considered to be standard time or daylight-saving time, as 1822f2fcff28SPhilip Paeps expressed in the tm_isdst flag of C's struct tm type. 1823f2fcff28SPhilip Paeps (Discrepancy noted by Derick Rethans.) 1824f2fcff28SPhilip Paeps 1825f2fcff28SPhilip Paeps Changes to build procedure 1826f2fcff28SPhilip Paeps 1827f2fcff28SPhilip Paeps The default installation locations have been changed to mostly 1828f2fcff28SPhilip Paeps match Debian circa 2017, instead of being designed as an add-on to 1829f2fcff28SPhilip Paeps 4.3BSD circa 1986. This affects the Makefile macros TOPDIR, 1830f2fcff28SPhilip Paeps TZDIR, MANDIR, and LIBDIR. New Makefile macros TZDEFAULT, USRDIR, 1831f2fcff28SPhilip Paeps USRSHAREDIR, BINDIR, ZDUMPDIR, and ZICDIR let installers tailor 1832f2fcff28SPhilip Paeps locations more precisely. (This responds to suggestions from 1833f2fcff28SPhilip Paeps Brian Inglis and from Steve Summit.) 1834f2fcff28SPhilip Paeps 1835f2fcff28SPhilip Paeps The default installation procedure no longer creates the 1836f2fcff28SPhilip Paeps backward-compatibility link US/Pacific-New, which causes 1837f2fcff28SPhilip Paeps confusion during user setup (e.g., see Debian bug 815200). 1838f2fcff28SPhilip Paeps Use 'make BACKWARD="backward pacificnew"' to create the link 1839f2fcff28SPhilip Paeps anyway, for now. Eventually we plan to remove the link entirely. 1840f2fcff28SPhilip Paeps 1841f2fcff28SPhilip Paeps tzdata.zi now contains a version-number comment. 1842f2fcff28SPhilip Paeps (Suggested by Tom Lane.) 1843f2fcff28SPhilip Paeps 1844f2fcff28SPhilip Paeps The Makefile now quotes values like BACKWARD more carefully when 1845f2fcff28SPhilip Paeps passing them to the shell. (Problem reported by Zefram.) 1846f2fcff28SPhilip Paeps 1847f2fcff28SPhilip Paeps Builders no longer need to specify -DHAVE_SNPRINTF on platforms 1848f2fcff28SPhilip Paeps that have snprintf and use pre-C99 compilers. (Problem reported 1849f2fcff28SPhilip Paeps by Jon Skeet.) 1850f2fcff28SPhilip Paeps 1851f2fcff28SPhilip Paeps Changes to code 1852f2fcff28SPhilip Paeps 1853f2fcff28SPhilip Paeps zic has a new option -t FILE that specifies the location of the 1854f2fcff28SPhilip Paeps file that determines local time when TZ is unset. The default for 1855f2fcff28SPhilip Paeps this location can be configured via the new TZDEFAULT makefile 1856f2fcff28SPhilip Paeps macro, which defaults to /etc/localtime. 1857f2fcff28SPhilip Paeps 1858f2fcff28SPhilip Paeps Diagnostics and commentary now distinguish UT from UTC more 1859f2fcff28SPhilip Paeps carefully; see theory.html for more information about UT vs UTC. 1860f2fcff28SPhilip Paeps 1861f2fcff28SPhilip Paeps zic has been ported to GCC 8's -Wstringop-truncation option. 1862f2fcff28SPhilip Paeps (Problem reported by Martin Sebor.) 1863f2fcff28SPhilip Paeps 1864f2fcff28SPhilip Paeps Changes to documentation and commentary 1865f2fcff28SPhilip Paeps 1866f2fcff28SPhilip Paeps The zic man page now documents the longstanding behavior that 1867f2fcff28SPhilip Paeps times and years can be out of the usual range, with negative times 1868f2fcff28SPhilip Paeps counting backwards from midnight and with year 0 preceding year 1. 1869f2fcff28SPhilip Paeps (Problem reported by Michael Deckers.) 1870f2fcff28SPhilip Paeps 1871f2fcff28SPhilip Paeps The theory.html file now mentions the POSIX limit of six chars 1872f2fcff28SPhilip Paeps per abbreviation, and lists alphabetic abbreviations used. 1873f2fcff28SPhilip Paeps 1874f2fcff28SPhilip Paeps The files tz-art.htm and tz-link.htm have been renamed to 1875f2fcff28SPhilip Paeps tz-art.html and tz-link.html, respectively, for consistency with 1876f2fcff28SPhilip Paeps other file names and to simplify web server configuration. 1877f2fcff28SPhilip Paeps 1878f2fcff28SPhilip Paeps 18798d7edd17SPhilip PaepsRelease 2017c - 2017-10-20 14:49:34 -0700 18808d7edd17SPhilip Paeps 18818d7edd17SPhilip Paeps Briefly: 18828d7edd17SPhilip Paeps Northern Cyprus switches from +03 to +02/+03 on 2017-10-29. 18838d7edd17SPhilip Paeps Fiji ends DST 2018-01-14, not 2018-01-21. 18848d7edd17SPhilip Paeps Namibia switches from +01/+02 to +02 on 2018-04-01. 18858d7edd17SPhilip Paeps Sudan switches from +03 to +02 on 2017-11-01. 18868d7edd17SPhilip Paeps Tonga likely switches from +13/+14 to +13 on 2017-11-05. 18878d7edd17SPhilip Paeps Turks & Caicos switches from -04 to -05/-04 on 2018-11-04. 18888d7edd17SPhilip Paeps A new file tzdata.zi now holds a small text copy of all data. 18898d7edd17SPhilip Paeps The zic input format has been regularized slightly. 18908d7edd17SPhilip Paeps 18918d7edd17SPhilip Paeps Changes to future timestamps 18928d7edd17SPhilip Paeps 18938d7edd17SPhilip Paeps Northern Cyprus has decided to resume EU rules starting 18948d7edd17SPhilip Paeps 2017-10-29, thus reinstituting winter time. 18958d7edd17SPhilip Paeps 18968d7edd17SPhilip Paeps Fiji ends DST 2018-01-14 instead of the 2018-01-21 previously 18978d7edd17SPhilip Paeps predicted. (Thanks to Dominic Fok.) Adjust future predictions 18988d7edd17SPhilip Paeps accordingly. 18998d7edd17SPhilip Paeps 19008d7edd17SPhilip Paeps Namibia will switch from +01 with DST to +02 all year on 19018d7edd17SPhilip Paeps 2017-09-03 at 02:00. This affects UT offsets starting 2018-04-01 19028d7edd17SPhilip Paeps at 02:00. (Thanks to Steffen Thorsen.) 19038d7edd17SPhilip Paeps 19048d7edd17SPhilip Paeps Sudan will switch from +03 to +02 on 2017-11-01. (Thanks to Ahmed 19058d7edd17SPhilip Paeps Atyya and Yahia Abdalla.) South Sudan is not switching, so 19068d7edd17SPhilip Paeps Africa/Juba is no longer a link to Africa/Khartoum. 19078d7edd17SPhilip Paeps 19088d7edd17SPhilip Paeps Tonga has likely ended its experiment with DST, and will not 19098d7edd17SPhilip Paeps adjust its clocks on 2017-11-05. Although Tonga has not announced 19108d7edd17SPhilip Paeps whether it will continue to observe DST, the IATA is assuming that 19118d7edd17SPhilip Paeps it will not. (Thanks to David Wade.) 19128d7edd17SPhilip Paeps 19138d7edd17SPhilip Paeps Turks & Caicos will switch from -04 all year to -05 with US DST on 19148d7edd17SPhilip Paeps 2018-03-11 at 03:00. This affects UT offsets starting 2018-11-04 19158d7edd17SPhilip Paeps at 02:00. (Thanks to Steffen Thorsen.) 19168d7edd17SPhilip Paeps 19178d7edd17SPhilip Paeps Changes to past timestamps 19188d7edd17SPhilip Paeps 19198d7edd17SPhilip Paeps Namibia switched from +02 to +01 on 1994-03-21, not 1994-04-03. 19208d7edd17SPhilip Paeps (Thanks to Arthur David Olson.) 19218d7edd17SPhilip Paeps 19228d7edd17SPhilip Paeps Detroit did not observe DST in 1967. 19238d7edd17SPhilip Paeps 19248d7edd17SPhilip Paeps Use railway time for Asia/Kolkata before 1941, by switching to 19258d7edd17SPhilip Paeps Madras local time (UT +052110) in 1870, then to IST (UT +0530) in 19268d7edd17SPhilip Paeps 1906. Also, treat 1941-2's +0630 as DST, like 1942-5. 19278d7edd17SPhilip Paeps 19288d7edd17SPhilip Paeps Europe/Dublin's 1946 and 1947 fallback transitions occurred at 19298d7edd17SPhilip Paeps 02:00 standard time, not 02:00 DST. (Thanks to Michael Deckers.) 19308d7edd17SPhilip Paeps 19318d7edd17SPhilip Paeps Pacific/Apia and Pacific/Pago_Pago switched from Antipodean to 19328d7edd17SPhilip Paeps American time in 1892, not 1879. (Thanks to Michael Deckers.) 19338d7edd17SPhilip Paeps 19348d7edd17SPhilip Paeps Adjust the 1867 transition in Alaska to better reflect the 19358d7edd17SPhilip Paeps historical record, by changing it to occur on 1867-10-18 at 15:30 19368d7edd17SPhilip Paeps Sitka time rather than at the start of 1867-10-17 local time. 19378d7edd17SPhilip Paeps Although strictly speaking this is accurate only for Sitka, 19388d7edd17SPhilip Paeps the rest of Alaska's blanks need to be filled in somehow. 19398d7edd17SPhilip Paeps 19408d7edd17SPhilip Paeps Fix off-by-one errors in UT offsets for Adak and Nome before 1867. 19418d7edd17SPhilip Paeps (Thanks to Michael Deckers.) 19428d7edd17SPhilip Paeps 19438d7edd17SPhilip Paeps Add 7 s to the UT offset in Asia/Yangon before 1920. 19448d7edd17SPhilip Paeps 19458d7edd17SPhilip Paeps Changes to zone names 19468d7edd17SPhilip Paeps 19478d7edd17SPhilip Paeps Remove Canada/East-Saskatchewan from the 'backward' file, as it 19488d7edd17SPhilip Paeps exceeded the 14-character limit and was an unused misnomer anyway. 19498d7edd17SPhilip Paeps 19508d7edd17SPhilip Paeps Changes to build procedure 19518d7edd17SPhilip Paeps 19528d7edd17SPhilip Paeps To support applications that prefer to read time zone data in text 19538d7edd17SPhilip Paeps form, two zic input files tzdata.zi and leapseconds are now 19548d7edd17SPhilip Paeps installed by default. The commands 'zic tzdata.zi' and 'zic -L 19558d7edd17SPhilip Paeps leapseconds tzdata.zi' can reproduce the tzdata binary files 19568d7edd17SPhilip Paeps without and with leap seconds, respectively. To prevent these two 19578d7edd17SPhilip Paeps new files from being installed, use 'make TZDATA_TEXT=', and to 19588d7edd17SPhilip Paeps suppress leap seconds from the tzdata text installation, use 'make 19598d7edd17SPhilip Paeps TZDATA_TEXT=tzdata.zi'. 19608d7edd17SPhilip Paeps 19618d7edd17SPhilip Paeps 'make BACKWARD=' now suppresses backward-compatibility names 19628d7edd17SPhilip Paeps like 'US/Pacific' that are defined in the 'backward' and 19638d7edd17SPhilip Paeps 'pacificnew' files. 19648d7edd17SPhilip Paeps 19658d7edd17SPhilip Paeps 'make check' now works on systems that lack a UTF-8 locale, 19668d7edd17SPhilip Paeps or that lack the nsgmls program. Set UTF8_LOCALE to configure 19678d7edd17SPhilip Paeps the name of a UTF-8 locale, if you have one. 19688d7edd17SPhilip Paeps 19698d7edd17SPhilip Paeps Y2K runtime checks are no longer enabled by default. Add 19708d7edd17SPhilip Paeps -DDEPRECATE_TWO_DIGIT_YEARS to CFLAGS to enable them, instead of 19718d7edd17SPhilip Paeps adding -DNO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU 19728d7edd17SPhilip Paeps to disable them. (New name suggested by Brian Inglis.) 19738d7edd17SPhilip Paeps 19748d7edd17SPhilip Paeps The build procedure for zdump now works on AIX 7.1. 19758d7edd17SPhilip Paeps (Problem reported by Kees Dekker.) 19768d7edd17SPhilip Paeps 19778d7edd17SPhilip Paeps Changes to code 19788d7edd17SPhilip Paeps 19798d7edd17SPhilip Paeps zic and the reference runtime now reject multiple leap seconds 19808d7edd17SPhilip Paeps within 28 days of each other, or leap seconds before the Epoch. 19818d7edd17SPhilip Paeps As a result, support for double leap seconds, which was 19828d7edd17SPhilip Paeps obsolescent and undocumented, has been removed. Double leap 19838d7edd17SPhilip Paeps seconds were an error in the C89 standard; they have never existed 19848d7edd17SPhilip Paeps in civil timekeeping. (Thanks to Robert Elz and Bradley White for 19858d7edd17SPhilip Paeps noticing glitches in the code that uncovered this problem.) 19868d7edd17SPhilip Paeps 19878d7edd17SPhilip Paeps zic now warns about use of the obsolescent and undocumented -y 19888d7edd17SPhilip Paeps option, and about use of the obsolescent TYPE field of Rule lines. 19898d7edd17SPhilip Paeps 19908d7edd17SPhilip Paeps zic now allows unambiguous abbreviations like "Sa" and "Su" for 19918d7edd17SPhilip Paeps weekdays; formerly it rejected them due to a bug. Conversely, zic 19928d7edd17SPhilip Paeps no longer considers non-prefixes to be abbreviations; for example, 19938d7edd17SPhilip Paeps it no longer accepts "lF" as an abbreviation for "lastFriday". 19948d7edd17SPhilip Paeps Also, zic warns about the undocumented usage with a "last-" 19958d7edd17SPhilip Paeps prefix, e.g., "last-Fri". 19968d7edd17SPhilip Paeps 19978d7edd17SPhilip Paeps Similarly, zic now accepts the unambiguous abbreviation "L" for 19988d7edd17SPhilip Paeps "Link" in ordinary context and for "Leap" in leap-second context. 19998d7edd17SPhilip Paeps Conversely, zic no longer accepts non-prefixes such as "La" as 20008d7edd17SPhilip Paeps abbreviations for words like "Leap". 20018d7edd17SPhilip Paeps 20028d7edd17SPhilip Paeps zic no longer accepts leap second lines in ordinary input, or 20038d7edd17SPhilip Paeps ordinary lines in leap second input. Formerly, zic sometimes 20048d7edd17SPhilip Paeps warned about this undocumented usage and handled it incorrectly. 20058d7edd17SPhilip Paeps 20068d7edd17SPhilip Paeps The new macro HAVE_TZNAME governs whether the tzname external 20078d7edd17SPhilip Paeps variable is exported, instead of USG_COMPAT. USG_COMPAT now 20088d7edd17SPhilip Paeps governs only the external variables "timezone" and "daylight". 20098d7edd17SPhilip Paeps This change is needed because the three variables are not in the 20108d7edd17SPhilip Paeps same category: although POSIX requires tzname, it specifies the 20118d7edd17SPhilip Paeps other two variables as optional. Also, USG_COMPAT is now 1 or 0: 20128d7edd17SPhilip Paeps if not defined, the code attempts to guess it from other macros. 20138d7edd17SPhilip Paeps 20148d7edd17SPhilip Paeps localtime.c and difftime.c no longer require stdio.h, and .c files 20158d7edd17SPhilip Paeps other than zic.c no longer require sys/wait.h. 20168d7edd17SPhilip Paeps 20178d7edd17SPhilip Paeps zdump.c no longer assumes snprintf. (Reported by Jonathan Leffler.) 20188d7edd17SPhilip Paeps 20198d7edd17SPhilip Paeps Calculation of time_t extrema works around a bug in GCC 4.8.4 20208d7edd17SPhilip Paeps (Reported by Stan Shebs and Joseph Myers.) 20218d7edd17SPhilip Paeps 20228d7edd17SPhilip Paeps zic.c no longer mistranslates formats of line numbers in non-English 20238d7edd17SPhilip Paeps locales. (Problem reported by Benno Schulenberg.) 20248d7edd17SPhilip Paeps 20258d7edd17SPhilip Paeps Several minor changes have been made to the code to make it a 20268d7edd17SPhilip Paeps bit easier to port to MS-Windows and Solaris. (Thanks to Kees 20278d7edd17SPhilip Paeps Dekker for reporting the problems.) 20288d7edd17SPhilip Paeps 20298d7edd17SPhilip Paeps Changes to documentation and commentary 20308d7edd17SPhilip Paeps 20318d7edd17SPhilip Paeps The two new files 'theory.html' and 'calendars' contain the 20328d7edd17SPhilip Paeps contents of the removed file 'Theory'. The goal is to document 20338d7edd17SPhilip Paeps tzdb theory more accessibly. 20348d7edd17SPhilip Paeps 20358d7edd17SPhilip Paeps The zic man page now documents abbreviation rules. 20368d7edd17SPhilip Paeps 20378d7edd17SPhilip Paeps tz-link.htm now covers how to apply tzdata changes to clients. 20388d7edd17SPhilip Paeps (Thanks to Jorge Fábregas for the AIX link.) It also mentions MySQL. 20398d7edd17SPhilip Paeps 20408d7edd17SPhilip Paeps The leap-seconds.list URL has been updated to something that is 20418d7edd17SPhilip Paeps more reliable for tzdb. (Thanks to Tim Parenti and Brian Inglis.) 20428d7edd17SPhilip Paeps 2043dc135c6eSBaptiste DaroussinRelease 2017b - 2017-03-17 07:30:38 -0700 2044dc135c6eSBaptiste Daroussin 2045dc135c6eSBaptiste Daroussin Briefly: Haiti has resumed DST. 2046dc135c6eSBaptiste Daroussin 2047dc135c6eSBaptiste Daroussin Changes to past and future timestamps 2048dc135c6eSBaptiste Daroussin 2049dc135c6eSBaptiste Daroussin Haiti resumed observance of DST in 2017. (Thanks to Steffen Thorsen.) 2050dc135c6eSBaptiste Daroussin 2051dc135c6eSBaptiste Daroussin Changes to past timestamps 2052dc135c6eSBaptiste Daroussin 2053dc135c6eSBaptiste Daroussin Liberia changed from -004430 to +00 on 1972-01-07, not 1972-05-01. 2054dc135c6eSBaptiste Daroussin 2055dc135c6eSBaptiste Daroussin Use "MMT" to abbreviate Liberia's time zone before 1972, as "-004430" 2056dc135c6eSBaptiste Daroussin is one byte over the POSIX limit. (Problem reported by Derick Rethans.) 2057dc135c6eSBaptiste Daroussin 20588d7edd17SPhilip Paeps Changes to code 20598d7edd17SPhilip Paeps 20608d7edd17SPhilip Paeps The reference localtime implementation now falls back on the 20618d7edd17SPhilip Paeps current US daylight-saving transition rules rather than the 20628d7edd17SPhilip Paeps 1987-2006 rules. This fallback occurs only when (1) the TZ 206389abb9f8SPhilip Paeps environment variable has a value like "AST4ADT" that asks 20648d7edd17SPhilip Paeps for daylight saving time but does not specify the rules, (2) there 20658d7edd17SPhilip Paeps is no file by that name, and (3) the TZDEFRULES file cannot be 20668d7edd17SPhilip Paeps loaded. (Thanks to Tom Lane.) 20678d7edd17SPhilip Paeps 2068dc135c6eSBaptiste Daroussin 2069dc135c6eSBaptiste DaroussinRelease 2017a - 2017-02-28 00:05:36 -0800 2070dc135c6eSBaptiste Daroussin 2071dc135c6eSBaptiste Daroussin Briefly: Southern Chile moves from -04/-03 to -03, and Mongolia 2072dc135c6eSBaptiste Daroussin discontinues DST. 2073dc135c6eSBaptiste Daroussin 2074dc135c6eSBaptiste Daroussin Changes to future timestamps 2075dc135c6eSBaptiste Daroussin 2076dc135c6eSBaptiste Daroussin Mongolia no longer observes DST. (Thanks to Ganbold Tsagaankhuu.) 2077dc135c6eSBaptiste Daroussin 2078dc135c6eSBaptiste Daroussin Chile's Region of Magallanes moves from -04/-03 to -03 year-round. 2079dc135c6eSBaptiste Daroussin Its clocks diverge from America/Santiago starting 2017-05-13 at 2080dc135c6eSBaptiste Daroussin 23:00, hiving off a new zone America/Punta_Arenas. Although the 2081dc135c6eSBaptiste Daroussin Chilean government says this change expires in May 2019, for now 2082dc135c6eSBaptiste Daroussin assume it's permanent. (Thanks to Juan Correa and Deborah 2083dc135c6eSBaptiste Daroussin Goldsmith.) This also affects Antarctica/Palmer. 2084dc135c6eSBaptiste Daroussin 2085dc135c6eSBaptiste Daroussin Changes to past timestamps 2086dc135c6eSBaptiste Daroussin 2087dc135c6eSBaptiste Daroussin Fix many entries for historical timestamps for Europe/Madrid 2088dc135c6eSBaptiste Daroussin before 1979, to agree with tables compiled by Pere Planesas of the 2089dc135c6eSBaptiste Daroussin National Astronomical Observatory of Spain. As a side effect, 2090dc135c6eSBaptiste Daroussin this changes some timestamps for Africa/Ceuta before 1929, which 2091dc135c6eSBaptiste Daroussin are probably guesswork anyway. (Thanks to Steve Allen and 2092dc135c6eSBaptiste Daroussin Pierpaolo Bernardi for the heads-ups, and to Michael Deckers for 2093dc135c6eSBaptiste Daroussin correcting the 1901 transition.) 2094dc135c6eSBaptiste Daroussin 2095dc135c6eSBaptiste Daroussin Ecuador observed DST from 1992-11-28 to 1993-02-05. 2096dc135c6eSBaptiste Daroussin (Thanks to Alois Treindl.) 2097dc135c6eSBaptiste Daroussin 2098dc135c6eSBaptiste Daroussin Asia/Atyrau and Asia/Oral were at +03 (not +04) before 1930-06-21. 2099dc135c6eSBaptiste Daroussin (Thanks to Stepan Golosunov.) 2100dc135c6eSBaptiste Daroussin 2101dc135c6eSBaptiste Daroussin Changes to past and future time zone abbreviations 2102dc135c6eSBaptiste Daroussin 2103dc135c6eSBaptiste Daroussin Switch to numeric time zone abbreviations for South America, as 2104dc135c6eSBaptiste Daroussin part of the ongoing project of removing invented abbreviations. 2105dc135c6eSBaptiste Daroussin This avoids the need to invent an abbreviation for the new Chilean 2106dc135c6eSBaptiste Daroussin new zone. Similarly, switch from invented to numeric time zone 2107dc135c6eSBaptiste Daroussin abbreviations for Afghanistan, American Samoa, the Azores, 2108dc135c6eSBaptiste Daroussin Bangladesh, Bhutan, the British Indian Ocean Territory, Brunei, 2109dc135c6eSBaptiste Daroussin Cape Verde, Chatham Is, Christmas I, Cocos (Keeling) Is, Cook Is, 2110dc135c6eSBaptiste Daroussin Dubai, East Timor, Eucla, Fiji, French Polynesia, Greenland, 2111dc135c6eSBaptiste Daroussin Indochina, Iran, Iraq, Kiribati, Lord Howe, Macquarie, Malaysia, 2112dc135c6eSBaptiste Daroussin the Maldives, Marshall Is, Mauritius, Micronesia, Mongolia, 2113dc135c6eSBaptiste Daroussin Myanmar, Nauru, Nepal, New Caledonia, Niue, Norfolk I, Palau, 2114dc135c6eSBaptiste Daroussin Papua New Guinea, the Philippines, Pitcairn, Qatar, Réunion, St 2115dc135c6eSBaptiste Daroussin Pierre & Miquelon, Samoa, Saudi Arabia, Seychelles, Singapore, 2116dc135c6eSBaptiste Daroussin Solomon Is, Tokelau, Tuvalu, Wake, Vanuatu, Wallis & Futuna, and 2117dc135c6eSBaptiste Daroussin Xinjiang; for 20-minute daylight saving time in Ghana before 1943; 2118dc135c6eSBaptiste Daroussin for half-hour daylight saving time in Belize before 1944 and in 2119dc135c6eSBaptiste Daroussin the Dominican Republic before 1975; and for Canary Islands before 2120dc135c6eSBaptiste Daroussin 1946, for Guinea-Bissau before 1975, for Iceland before 1969, for 2121dc135c6eSBaptiste Daroussin Indian Summer Time before 1942, for Indonesia before around 1964, 2122dc135c6eSBaptiste Daroussin for Kenya before 1960, for Liberia before 1973, for Madeira before 2123dc135c6eSBaptiste Daroussin 1967, for Namibia before 1943, for the Netherlands in 1937-9, for 2124dc135c6eSBaptiste Daroussin Pakistan before 1971, for Western Sahara before 1977, and for 2125dc135c6eSBaptiste Daroussin Zaporozhye in 1880-1924. 2126dc135c6eSBaptiste Daroussin 2127dc135c6eSBaptiste Daroussin For Alaska time from 1900 through 1967, instead of "CAT" use the 2128dc135c6eSBaptiste Daroussin abbreviation "AST", the abbreviation commonly used at the time 2129dc135c6eSBaptiste Daroussin (Atlantic Standard Time had not been standardized yet). Use "AWT" 2130dc135c6eSBaptiste Daroussin and "APT" instead of the invented abbreviations "CAWT" and "CAPT". 2131dc135c6eSBaptiste Daroussin 2132dc135c6eSBaptiste Daroussin Use "CST" and "CDT" instead of invented abbreviations for Macau 2133dc135c6eSBaptiste Daroussin before 1999 and Taiwan before 1938, and use "JST" instead of the 2134dc135c6eSBaptiste Daroussin invented abbreviation "JCST" for Japan and Korea before 1938. 2135dc135c6eSBaptiste Daroussin 2136dc135c6eSBaptiste Daroussin Change to database entry category 2137dc135c6eSBaptiste Daroussin 2138dc135c6eSBaptiste Daroussin Move the Pacific/Johnston link from 'australasia' to 'backward', 2139dc135c6eSBaptiste Daroussin since Johnston is now uninhabited. 2140dc135c6eSBaptiste Daroussin 2141dc135c6eSBaptiste Daroussin Changes to code 2142dc135c6eSBaptiste Daroussin 2143dc135c6eSBaptiste Daroussin zic no longer mishandles some transitions in January 2038 when it 2144dc135c6eSBaptiste Daroussin attempts to work around Qt bug 53071. This fixes a bug affecting 2145dc135c6eSBaptiste Daroussin Pacific/Tongatapu that was introduced in zic 2016e. localtime.c 2146dc135c6eSBaptiste Daroussin now contains a workaround, useful when loading a file generated by 2147dc135c6eSBaptiste Daroussin a buggy zic. (Problem and localtime.c fix reported by Bradley 2148dc135c6eSBaptiste Daroussin White.) 2149dc135c6eSBaptiste Daroussin 2150dc135c6eSBaptiste Daroussin zdump -i now outputs non-hour numeric time zone abbreviations 2151dc135c6eSBaptiste Daroussin without a colon, e.g., "+0530" rather than "+05:30". This agrees 2152dc135c6eSBaptiste Daroussin with zic %z and with common practice, and simplifies auditing of 2153dc135c6eSBaptiste Daroussin zdump output. 2154dc135c6eSBaptiste Daroussin 2155dc135c6eSBaptiste Daroussin zdump is now buildable again with -DUSE_LTZ=0. 2156dc135c6eSBaptiste Daroussin (Problem reported by Joseph Myers.) 2157dc135c6eSBaptiste Daroussin 2158dc135c6eSBaptiste Daroussin zdump.c now always includes private.h, to avoid code duplication 2159dc135c6eSBaptiste Daroussin with private.h. (Problem reported by Kees Dekker.) 2160dc135c6eSBaptiste Daroussin 2161dc135c6eSBaptiste Daroussin localtime.c no longer mishandles early or late timestamps 2162dc135c6eSBaptiste Daroussin when TZ is set to a POSIX-style string that specifies DST. 2163dc135c6eSBaptiste Daroussin (Problem reported by Kees Dekker.) 2164dc135c6eSBaptiste Daroussin 2165dc135c6eSBaptiste Daroussin date and strftime now cause %z to generate "-0000" instead of 2166dc135c6eSBaptiste Daroussin "+0000" when the UT offset is zero and the time zone abbreviation 2167dc135c6eSBaptiste Daroussin begins with "-". 2168dc135c6eSBaptiste Daroussin 2169dc135c6eSBaptiste Daroussin Changes to documentation and commentary 2170dc135c6eSBaptiste Daroussin 2171dc135c6eSBaptiste Daroussin The 'Theory' file now better documents choice of historical time 2172dc135c6eSBaptiste Daroussin zone abbreviations. (Problems reported by Michael Deckers.) 2173dc135c6eSBaptiste Daroussin 2174dc135c6eSBaptiste Daroussin tz-link.htm now covers leap smearing, which is popular in clouds. 2175dc135c6eSBaptiste Daroussin 2176dc135c6eSBaptiste Daroussin 2177e350c46aSBaptiste DaroussinRelease 2016j - 2016-11-22 23:17:13 -0800 2178e350c46aSBaptiste Daroussin 2179e350c46aSBaptiste Daroussin Briefly: Saratov, Russia moves from +03 to +04 on 2016-12-04. 2180e350c46aSBaptiste Daroussin 2181e350c46aSBaptiste Daroussin Changes to future timestamps 2182e350c46aSBaptiste Daroussin 2183e350c46aSBaptiste Daroussin Saratov, Russia switches from +03 to +04 on 2016-12-04 at 02:00. 2184e350c46aSBaptiste Daroussin This hives off a new zone Europe/Saratov from Europe/Volgograd. 2185e350c46aSBaptiste Daroussin (Thanks to Yuri Konotopov and Stepan Golosunov.) 2186e350c46aSBaptiste Daroussin 2187e350c46aSBaptiste Daroussin Changes to past timestamps 2188e350c46aSBaptiste Daroussin 2189e350c46aSBaptiste Daroussin The new zone Asia/Atyrau for Atyraū Region, Kazakhstan, is like 2190dc135c6eSBaptiste Daroussin Asia/Aqtau except it switched from +05/+06 to +04/+05 in spring 2191e350c46aSBaptiste Daroussin 1999, not fall 1994. (Thanks to Stepan Golosunov.) 2192e350c46aSBaptiste Daroussin 2193e350c46aSBaptiste Daroussin Changes to past time zone abbreviations 2194e350c46aSBaptiste Daroussin 2195e350c46aSBaptiste Daroussin Asia/Gaza and Asia/Hebron now use "EEST", not "EET", to denote 2196e350c46aSBaptiste Daroussin summer time before 1948. The old use of "EET" was a typo. 2197e350c46aSBaptiste Daroussin 2198e350c46aSBaptiste Daroussin Changes to code 2199e350c46aSBaptiste Daroussin 2200e350c46aSBaptiste Daroussin zic no longer mishandles file systems that lack hard links, fixing 2201e350c46aSBaptiste Daroussin bugs introduced in 2016g. (Problems reported by Tom Lane.) 2202e350c46aSBaptiste Daroussin Also, when the destination already contains symbolic links, zic 2203e350c46aSBaptiste Daroussin should now work better on systems where the 'link' system call 2204e350c46aSBaptiste Daroussin does not follow symbolic links. 2205e350c46aSBaptiste Daroussin 2206e350c46aSBaptiste Daroussin Changes to documentation and commentary 2207e350c46aSBaptiste Daroussin 2208e350c46aSBaptiste Daroussin tz-link.htm now documents the relationship between release version 2209e350c46aSBaptiste Daroussin numbers and development-repository commit tags. (Suggested by 2210e350c46aSBaptiste Daroussin Paul Koning.) 2211e350c46aSBaptiste Daroussin 2212e350c46aSBaptiste Daroussin The 'Theory' file now documents UT. 2213e350c46aSBaptiste Daroussin 2214e350c46aSBaptiste Daroussin iso3166.tab now accents "Curaçao", and commentary now mentions 2215e350c46aSBaptiste Daroussin the names "Cabo Verde" and "Czechia". (Thanks to Jiří Boháč.) 2216e350c46aSBaptiste Daroussin 2217e350c46aSBaptiste Daroussin 2218ba2b2efdSGlen BarberRelease 2016i - 2016-11-01 23:19:52 -0700 2219ba2b2efdSGlen Barber 2220ba2b2efdSGlen Barber Briefly: Cyprus split into two time zones on 2016-10-30, and Tonga 2221ba2b2efdSGlen Barber reintroduces DST on 2016-11-06. 2222ba2b2efdSGlen Barber 2223ba2b2efdSGlen Barber Changes to future timestamps 2224ba2b2efdSGlen Barber 2225ba2b2efdSGlen Barber Pacific/Tongatapu begins DST on 2016-11-06 at 02:00, ending on 2226ba2b2efdSGlen Barber 2017-01-15 at 03:00. Assume future observances in Tonga will be 2227ba2b2efdSGlen Barber from the first Sunday in November through the third Sunday in 2228ba2b2efdSGlen Barber January, like Fiji. (Thanks to Pulu ʻAnau.) Switch to numeric 2229ba2b2efdSGlen Barber time zone abbreviations for this zone. 2230ba2b2efdSGlen Barber 2231ba2b2efdSGlen Barber Changes to past and future timestamps 2232ba2b2efdSGlen Barber 2233ba2b2efdSGlen Barber Northern Cyprus is now +03 year round, causing a split in Cyprus 2234ba2b2efdSGlen Barber time zones starting 2016-10-30 at 04:00. This creates a zone 2235ba2b2efdSGlen Barber Asia/Famagusta. (Thanks to Even Scharning and Matt Johnson.) 2236ba2b2efdSGlen Barber 2237ba2b2efdSGlen Barber Antarctica/Casey switched from +08 to +11 on 2016-10-22. 2238ba2b2efdSGlen Barber (Thanks to Steffen Thorsen.) 2239ba2b2efdSGlen Barber 2240ba2b2efdSGlen Barber Changes to past timestamps 2241ba2b2efdSGlen Barber 2242ba2b2efdSGlen Barber Several corrections were made for pre-1975 timestamps in Italy. 2243ba2b2efdSGlen Barber These affect Europe/Malta, Europe/Rome, Europe/San_Marino, and 2244ba2b2efdSGlen Barber Europe/Vatican. 2245ba2b2efdSGlen Barber 2246ba2b2efdSGlen Barber First, the 1893-11-01 00:00 transition in Italy used the new UT 2247ba2b2efdSGlen Barber offset (+01), not the old (+00:49:56). (Thanks to Michael 2248ba2b2efdSGlen Barber Deckers.) 2249ba2b2efdSGlen Barber 2250ba2b2efdSGlen Barber Second, rules for daylight saving in Italy were changed to agree 2251ba2b2efdSGlen Barber with Italy's National Institute of Metrological Research (INRiM) 2252ba2b2efdSGlen Barber except for 1944, as follows (thanks to Pierpaolo Bernardi, Brian 2253ba2b2efdSGlen Barber Inglis, and Michael Deckers): 2254ba2b2efdSGlen Barber 2255ba2b2efdSGlen Barber The 1916-06-03 transition was at 24:00, not 00:00. 2256ba2b2efdSGlen Barber 2257ba2b2efdSGlen Barber The 1916-10-01, 1919-10-05, and 1920-09-19 transitions were at 2258ba2b2efdSGlen Barber 00:00, not 01:00. 2259ba2b2efdSGlen Barber 2260ba2b2efdSGlen Barber The 1917-09-30 and 1918-10-06 transitions were at 24:00, not 2261ba2b2efdSGlen Barber 01:00. 2262ba2b2efdSGlen Barber 2263ba2b2efdSGlen Barber The 1944-09-17 transition was at 03:00, not 01:00. This 2264ba2b2efdSGlen Barber particular change is taken from Italian law as INRiM's table, 2265ba2b2efdSGlen Barber (which says 02:00) appears to have a typo here. Also, keep the 2266ba2b2efdSGlen Barber 1944-04-03 transition for Europe/Rome, as Rome was controlled by 2267ba2b2efdSGlen Barber Germany then. 2268ba2b2efdSGlen Barber 2269ba2b2efdSGlen Barber The 1967-1970 and 1972-1974 fallback transitions were at 01:00, 2270ba2b2efdSGlen Barber not 00:00. 2271ba2b2efdSGlen Barber 2272ba2b2efdSGlen Barber Changes to code 2273ba2b2efdSGlen Barber 2274ba2b2efdSGlen Barber The code should now be buildable on AmigaOS merely by setting the 2275ba2b2efdSGlen Barber appropriate Makefile variables. (From a patch by Carsten Larsen.) 2276ba2b2efdSGlen Barber 2277ba2b2efdSGlen Barber 2278ba2b2efdSGlen BarberRelease 2016h - 2016-10-19 23:17:57 -0700 2279ba2b2efdSGlen Barber 2280ba2b2efdSGlen Barber Changes to future timestamps 2281ba2b2efdSGlen Barber 2282ba2b2efdSGlen Barber Asia/Gaza and Asia/Hebron end DST on 2016-10-29 at 01:00, not 2283ba2b2efdSGlen Barber 2016-10-21 at 00:00. (Thanks to Sharef Mustafa.) Predict that 2284ba2b2efdSGlen Barber future fall transitions will be on the last Saturday of October 2285ba2b2efdSGlen Barber at 01:00, which is consistent with predicted spring transitions 2286ba2b2efdSGlen Barber on the last Saturday of March. (Thanks to Tim Parenti.) 2287ba2b2efdSGlen Barber 2288ba2b2efdSGlen Barber Changes to past timestamps 2289ba2b2efdSGlen Barber 2290ba2b2efdSGlen Barber In Turkey, transitions in 1986-1990 were at 01:00 standard time 2291ba2b2efdSGlen Barber not at 02:00, and the spring 1994 transition was on March 20, not 2292ba2b2efdSGlen Barber March 27. (Thanks to Kıvanç Yazan.) 2293ba2b2efdSGlen Barber 2294ba2b2efdSGlen Barber Changes to past and future time zone abbreviations 2295ba2b2efdSGlen Barber 2296ba2b2efdSGlen Barber Asia/Colombo now uses numeric time zone abbreviations like "+0530" 2297ba2b2efdSGlen Barber instead of alphabetic ones like "IST" and "LKT". Various 2298ba2b2efdSGlen Barber English-language sources use "IST", "LKT" and "SLST", with no 2299ba2b2efdSGlen Barber working consensus. (Usage of "SLST" mentioned by Sadika 2300ba2b2efdSGlen Barber Sumanapala.) 2301ba2b2efdSGlen Barber 2302ba2b2efdSGlen Barber Changes to code 2303ba2b2efdSGlen Barber 2304ba2b2efdSGlen Barber zic no longer mishandles relativizing file names when creating 2305ba2b2efdSGlen Barber symbolic links like /etc/localtime, when these symbolic links 2306ba2b2efdSGlen Barber are outside the usual directory hierarchy. This fixes a bug 2307ba2b2efdSGlen Barber introduced in 2016g. (Problem reported by Andreas Stieger.) 2308ba2b2efdSGlen Barber 2309ba2b2efdSGlen Barber Changes to build procedure 2310ba2b2efdSGlen Barber 2311ba2b2efdSGlen Barber New rules 'traditional_tarballs' and 'traditional_signatures' for 2312ba2b2efdSGlen Barber building just the traditional-format distribution. (Requested by 2313ba2b2efdSGlen Barber Deborah Goldsmith.) 2314ba2b2efdSGlen Barber 2315ba2b2efdSGlen Barber The file 'version' is now put into the tzdata tarball too. 2316ba2b2efdSGlen Barber (Requested by Howard Hinnant.) 2317ba2b2efdSGlen Barber 2318ba2b2efdSGlen Barber Changes to documentation and commentary 2319ba2b2efdSGlen Barber 2320ba2b2efdSGlen Barber The 'Theory' file now has a section on interface stability. 2321ba2b2efdSGlen Barber (Requested by Paul Koning.) It also mentions features like 2322ba2b2efdSGlen Barber tm_zone and localtime_rz that have long been supported by the 2323ba2b2efdSGlen Barber reference code. 2324ba2b2efdSGlen Barber 2325ba2b2efdSGlen Barber tz-link.htm has improved coverage of time zone boundaries suitable 2326ba2b2efdSGlen Barber for geolocation. (Thanks to heads-ups from Evan Siroky and Matt 2327ba2b2efdSGlen Barber Johnson.) 2328ba2b2efdSGlen Barber 2329ba2b2efdSGlen Barber The US commentary now mentions Allen and the "day of two noons". 2330ba2b2efdSGlen Barber 2331ba2b2efdSGlen Barber The Fiji commentary mentions the government's 2016-10-03 press 2332ba2b2efdSGlen Barber release. (Thanks to Raymond Kumar.) 2333ba2b2efdSGlen Barber 2334ba2b2efdSGlen Barber 2335ba2b2efdSGlen BarberRelease 2016g - 2016-09-13 08:56:38 -0700 2336ba2b2efdSGlen Barber 2337ba2b2efdSGlen Barber Changes to future timestamps 2338ba2b2efdSGlen Barber 2339ba2b2efdSGlen Barber Turkey switched from EET/EEST (+02/+03) to permanent +03, 2340ba2b2efdSGlen Barber effective 2016-09-07. (Thanks to Burak AYDIN.) Use "+03" rather 2341ba2b2efdSGlen Barber than an invented abbreviation for the new time. 2342ba2b2efdSGlen Barber 2343ba2b2efdSGlen Barber New leap second 2016-12-31 23:59:60 UTC as per IERS Bulletin C 52. 2344ba2b2efdSGlen Barber (Thanks to Tim Parenti.) 2345ba2b2efdSGlen Barber 2346ba2b2efdSGlen Barber Changes to past timestamps 2347ba2b2efdSGlen Barber 2348ba2b2efdSGlen Barber For America/Los_Angeles, spring-forward transition times have been 2349ba2b2efdSGlen Barber corrected from 02:00 to 02:01 in 1948, and from 02:00 to 01:00 in 2350ba2b2efdSGlen Barber 1950-1966. 2351ba2b2efdSGlen Barber 2352ba2b2efdSGlen Barber For zones using Soviet time on 1919-07-01, transitions to UT-based 2353ba2b2efdSGlen Barber time were at 00:00 UT, not at 02:00 local time. The affected 2354ba2b2efdSGlen Barber zones are Europe/Kirov, Europe/Moscow, Europe/Samara, and 2355ba2b2efdSGlen Barber Europe/Ulyanovsk. (Thanks to Alexander Belopolsky.) 2356ba2b2efdSGlen Barber 2357ba2b2efdSGlen Barber Changes to past and future time zone abbreviations 2358ba2b2efdSGlen Barber 2359ba2b2efdSGlen Barber The Factory zone now uses the time zone abbreviation -00 instead 2360ba2b2efdSGlen Barber of a long English-language string, as -00 is now the normal way to 2361ba2b2efdSGlen Barber represent an undefined time zone. 2362ba2b2efdSGlen Barber 2363ba2b2efdSGlen Barber Several zones in Antarctica and the former Soviet Union, along 2364ba2b2efdSGlen Barber with zones intended for ships at sea that cannot use POSIX TZ 2365ba2b2efdSGlen Barber strings, now use numeric time zone abbreviations instead of 2366ba2b2efdSGlen Barber invented or obsolete alphanumeric abbreviations. The affected 2367ba2b2efdSGlen Barber zones are Antarctica/Casey, Antarctica/Davis, 2368ba2b2efdSGlen Barber Antarctica/DumontDUrville, Antarctica/Mawson, Antarctica/Rothera, 2369ba2b2efdSGlen Barber Antarctica/Syowa, Antarctica/Troll, Antarctica/Vostok, 2370ba2b2efdSGlen Barber Asia/Anadyr, Asia/Ashgabat, Asia/Baku, Asia/Bishkek, Asia/Chita, 2371ba2b2efdSGlen Barber Asia/Dushanbe, Asia/Irkutsk, Asia/Kamchatka, Asia/Khandyga, 2372ba2b2efdSGlen Barber Asia/Krasnoyarsk, Asia/Magadan, Asia/Omsk, Asia/Sakhalin, 2373ba2b2efdSGlen Barber Asia/Samarkand, Asia/Srednekolymsk, Asia/Tashkent, Asia/Tbilisi, 2374ba2b2efdSGlen Barber Asia/Ust-Nera, Asia/Vladivostok, Asia/Yakutsk, Asia/Yekaterinburg, 2375ba2b2efdSGlen Barber Asia/Yerevan, Etc/GMT-14, Etc/GMT-13, Etc/GMT-12, Etc/GMT-11, 2376ba2b2efdSGlen Barber Etc/GMT-10, Etc/GMT-9, Etc/GMT-8, Etc/GMT-7, Etc/GMT-6, Etc/GMT-5, 2377ba2b2efdSGlen Barber Etc/GMT-4, Etc/GMT-3, Etc/GMT-2, Etc/GMT-1, Etc/GMT+1, Etc/GMT+2, 2378ba2b2efdSGlen Barber Etc/GMT+3, Etc/GMT+4, Etc/GMT+5, Etc/GMT+6, Etc/GMT+7, Etc/GMT+8, 2379ba2b2efdSGlen Barber Etc/GMT+9, Etc/GMT+10, Etc/GMT+11, Etc/GMT+12, Europe/Kaliningrad, 2380ba2b2efdSGlen Barber Europe/Minsk, Europe/Samara, Europe/Volgograd, and 2381ba2b2efdSGlen Barber Indian/Kerguelen. For Europe/Moscow the invented abbreviation MSM 2382ba2b2efdSGlen Barber was replaced by +05, whereas MSK and MSD were kept as they are not 2383ba2b2efdSGlen Barber our invention and are widely used. 2384ba2b2efdSGlen Barber 2385ba2b2efdSGlen Barber Changes to zone names 2386ba2b2efdSGlen Barber 2387ba2b2efdSGlen Barber Rename Asia/Rangoon to Asia/Yangon, with a backward compatibility link. 2388ba2b2efdSGlen Barber (Thanks to David Massoud.) 2389ba2b2efdSGlen Barber 2390ba2b2efdSGlen Barber Changes to code 2391ba2b2efdSGlen Barber 2392ba2b2efdSGlen Barber zic no longer generates binary files containing POSIX TZ-like 2393ba2b2efdSGlen Barber strings that disagree with the local time type after the last 2394ba2b2efdSGlen Barber explicit transition in the data. This fixes a bug with 239589abb9f8SPhilip Paeps Africa/Casablanca and Africa/El_Aaiun in some year-2037 timestamps 239689abb9f8SPhilip Paeps on the reference platform. (Thanks to Alexander Belopolsky for 239789abb9f8SPhilip Paeps reporting the bug and suggesting a way forward.) 2398ba2b2efdSGlen Barber 2399ba2b2efdSGlen Barber If the installed localtime and/or posixrules files are symbolic 2400ba2b2efdSGlen Barber links, zic now keeps them symbolic links when updating them, for 2401ba2b2efdSGlen Barber compatibility with platforms like OpenSUSE where other programs 2402ba2b2efdSGlen Barber configure these files as symlinks. 2403ba2b2efdSGlen Barber 2404ba2b2efdSGlen Barber zic now avoids hard linking to symbolic links, avoids some 2405ba2b2efdSGlen Barber unnecessary mkdir and stat system calls, and uses shorter file 2406ba2b2efdSGlen Barber names internally. 2407ba2b2efdSGlen Barber 2408ba2b2efdSGlen Barber zdump has a new -i option to generate transitions in a 2409*259e2ad7SPhilip Paeps smaller but still human-readable format. This option is 2410ba2b2efdSGlen Barber experimental, and the output format may change in future versions. 2411ba2b2efdSGlen Barber (Thanks to Jon Skeet for suggesting that an option was needed, 2412ba2b2efdSGlen Barber and thanks to Tim Parenti and Chris Rovick for further comments.) 2413ba2b2efdSGlen Barber 2414ba2b2efdSGlen Barber Changes to build procedure 2415ba2b2efdSGlen Barber 2416ba2b2efdSGlen Barber An experimental distribution format is available, in addition 2417ba2b2efdSGlen Barber to the traditional format which will continue to be distributed. 2418ba2b2efdSGlen Barber The new format is a tarball tzdb-VERSION.tar.lz with signature 2419ba2b2efdSGlen Barber file tzdb-VERSION.tar.lz.asc. It unpacks to a top-level directory 2420ba2b2efdSGlen Barber tzdb-VERSION containing the code and data of the traditional 2421ba2b2efdSGlen Barber two-tarball format, along with extra data that may be useful. 2422ba2b2efdSGlen Barber (Thanks to Antonio Diaz Diaz, Oscar van Vlijmen, and many others 2423ba2b2efdSGlen Barber for comments about the experimental format.) 2424ba2b2efdSGlen Barber 2425ba2b2efdSGlen Barber The release version number is now more accurate in the usual case 2426ba2b2efdSGlen Barber where releases are built from a Git repository. For example, if 2427ba2b2efdSGlen Barber 23 commits and some working-file changes have been made since 2428ba2b2efdSGlen Barber release 2016g, the version number is now something like 2429ba2b2efdSGlen Barber '2016g-23-g50556e3-dirty' instead of the misleading '2016g'. 2430e350c46aSBaptiste Daroussin Tagged releases use the same version number format as before, 2431*259e2ad7SPhilip Paeps e.g., '2016g'. To support the more accurate version number, its 2432ba2b2efdSGlen Barber specification has moved from a line in the Makefile to a new 2433ba2b2efdSGlen Barber source file 'version'. 2434ba2b2efdSGlen Barber 2435ba2b2efdSGlen Barber The experimental distribution contains a file to2050.tzs that 2436ba2b2efdSGlen Barber contains what should be the output of 'zdump -i -c 2050' on 2437ba2b2efdSGlen Barber primary zones. If this file is available, 'make check' now checks 2438ba2b2efdSGlen Barber that zdump generates this output. 2439ba2b2efdSGlen Barber 2440ba2b2efdSGlen Barber 'make check_web' now works on Fedora-like distributions. 2441ba2b2efdSGlen Barber 2442ba2b2efdSGlen Barber Changes to documentation and commentary 2443ba2b2efdSGlen Barber 2444ba2b2efdSGlen Barber tzfile.5 now documents the new restriction on POSIX TZ-like 2445ba2b2efdSGlen Barber strings that is now implemented by zic. 2446ba2b2efdSGlen Barber 2447ba2b2efdSGlen Barber Comments now cite URLs for some 1917-1921 Russian DST decrees. 2448ba2b2efdSGlen Barber (Thanks to Alexander Belopolsky.) 2449ba2b2efdSGlen Barber 2450ba2b2efdSGlen Barber tz-link.htm mentions JuliaTime (thanks to Curtis Vogt) and Time4J 2451ba2b2efdSGlen Barber (thanks to Meno Hochschild) and ThreeTen-Extra, and its 2452ba2b2efdSGlen Barber description of Java 8 has been brought up to date (thanks to 2453ba2b2efdSGlen Barber Stephen Colebourne). Its description of local time on Mars has 2454ba2b2efdSGlen Barber been updated to match current practice, and URLs have been updated 2455ba2b2efdSGlen Barber and some obsolete ones removed. 2456ba2b2efdSGlen Barber 2457ba2b2efdSGlen Barber 2458ba2b2efdSGlen BarberRelease 2016f - 2016-07-05 16:26:51 +0200 2459ba2b2efdSGlen Barber 2460ba2b2efdSGlen Barber Changes affecting future timestamps 2461ba2b2efdSGlen Barber 2462ba2b2efdSGlen Barber The Egyptian government changed its mind on short notice, and 2463ba2b2efdSGlen Barber Africa/Cairo will not introduce DST starting 2016-07-07 after all. 2464ba2b2efdSGlen Barber (Thanks to Mina Samuel.) 2465ba2b2efdSGlen Barber 2466ba2b2efdSGlen Barber Asia/Novosibirsk switches from +06 to +07 on 2016-07-24 at 02:00. 2467ba2b2efdSGlen Barber (Thanks to Stepan Golosunov.) 2468ba2b2efdSGlen Barber 2469ba2b2efdSGlen Barber Changes to past and future timestamps 2470ba2b2efdSGlen Barber 2471ba2b2efdSGlen Barber Asia/Novokuznetsk and Asia/Novosibirsk now use numeric time zone 2472ba2b2efdSGlen Barber abbreviations instead of invented ones. 2473ba2b2efdSGlen Barber 2474ba2b2efdSGlen Barber Changes affecting past timestamps 2475ba2b2efdSGlen Barber 2476ba2b2efdSGlen Barber Europe/Minsk's 1992-03-29 spring-forward transition was at 02:00 not 00:00. 2477ba2b2efdSGlen Barber (Thanks to Stepan Golosunov.) 2478ba2b2efdSGlen Barber 2479ba2b2efdSGlen Barber 2480ba2b2efdSGlen BarberRelease 2016e - 2016-06-14 08:46:16 -0700 2481ba2b2efdSGlen Barber 2482ba2b2efdSGlen Barber Changes affecting future timestamps 2483ba2b2efdSGlen Barber 2484ba2b2efdSGlen Barber Africa/Cairo observes DST in 2016 from July 7 to the end of October. 2485ba2b2efdSGlen Barber Guess October 27 and 24:00 transitions. (Thanks to Steffen Thorsen.) 2486ba2b2efdSGlen Barber For future years, guess April's last Thursday to October's last 2487ba2b2efdSGlen Barber Thursday except for Ramadan. 2488ba2b2efdSGlen Barber 2489ba2b2efdSGlen Barber Changes affecting past timestamps 2490ba2b2efdSGlen Barber 2491ba2b2efdSGlen Barber Locations while uninhabited now use '-00', not 'zzz', as a 2492ba2b2efdSGlen Barber placeholder time zone abbreviation. This is inspired by Internet 2493ba2b2efdSGlen Barber RFC 3339 and is more consistent with numeric time zone 2494ba2b2efdSGlen Barber abbreviations already used elsewhere. The change affects several 2495ba2b2efdSGlen Barber arctic and antarctic locations, e.g., America/Cambridge_Bay before 2496ba2b2efdSGlen Barber 1920 and Antarctica/Troll before 2005. 2497ba2b2efdSGlen Barber 2498ba2b2efdSGlen Barber Asia/Baku's 1992-09-27 transition from +04 (DST) to +04 (non-DST) was 2499ba2b2efdSGlen Barber at 03:00, not 23:00 the previous day. (Thanks to Michael Deckers.) 2500ba2b2efdSGlen Barber 2501ba2b2efdSGlen Barber Changes to code 2502ba2b2efdSGlen Barber 2503ba2b2efdSGlen Barber zic now outputs a dummy transition at time 2**31 - 1 in zones 2504ba2b2efdSGlen Barber whose POSIX-style TZ strings contain a '<'. This mostly works 2505ba2b2efdSGlen Barber around Qt bug 53071 <https://bugreports.qt.io/browse/QTBUG-53071>. 2506ba2b2efdSGlen Barber (Thanks to Zhanibek Adilbekov for reporting the Qt bug.) 2507ba2b2efdSGlen Barber 2508ba2b2efdSGlen Barber Changes affecting documentation and commentary 2509ba2b2efdSGlen Barber 2510ba2b2efdSGlen Barber tz-link.htm says why governments should give plenty of notice for 2511ba2b2efdSGlen Barber time zone or DST changes, and refers to Matt Johnson's blog post. 2512ba2b2efdSGlen Barber 2513ba2b2efdSGlen Barber tz-link.htm mentions Tzdata for Elixir. (Thanks to Matt Johnson.) 2514ba2b2efdSGlen Barber 2515ba2b2efdSGlen Barber 2516ba2b2efdSGlen BarberRelease 2016d - 2016-04-17 22:50:29 -0700 2517ba2b2efdSGlen Barber 2518ba2b2efdSGlen Barber Changes affecting future timestamps 2519ba2b2efdSGlen Barber 2520ba2b2efdSGlen Barber America/Caracas switches from -0430 to -04 on 2016-05-01 at 02:30. 2521ba2b2efdSGlen Barber (Thanks to Alexander Krivenyshev for the heads-up.) 2522ba2b2efdSGlen Barber 2523ba2b2efdSGlen Barber Asia/Magadan switches from +10 to +11 on 2016-04-24 at 02:00. 2524ba2b2efdSGlen Barber (Thanks to Alexander Krivenyshev and Matt Johnson.) 2525ba2b2efdSGlen Barber 2526ba2b2efdSGlen Barber New zone Asia/Tomsk, split off from Asia/Novosibirsk. It covers 2527ba2b2efdSGlen Barber Tomsk Oblast, Russia, which switches from +06 to +07 on 2016-05-29 2528ba2b2efdSGlen Barber at 02:00. (Thanks to Stepan Golosunov.) 2529ba2b2efdSGlen Barber 2530ba2b2efdSGlen Barber Changes affecting past timestamps 2531ba2b2efdSGlen Barber 2532ba2b2efdSGlen Barber New zone Europe/Kirov, split off from Europe/Volgograd. It covers 2533ba2b2efdSGlen Barber Kirov Oblast, Russia, which switched from +04/+05 to +03/+04 on 2534ba2b2efdSGlen Barber 1989-03-26 at 02:00, roughly a year after Europe/Volgograd made 2535ba2b2efdSGlen Barber the same change. (Thanks to Stepan Golosunov.) 2536ba2b2efdSGlen Barber 2537ba2b2efdSGlen Barber Russia and nearby locations had daylight-saving transitions on 2538ba2b2efdSGlen Barber 1992-03-29 at 02:00 and 1992-09-27 at 03:00, instead of on 2539ba2b2efdSGlen Barber 1992-03-28 at 23:00 and 1992-09-26 at 23:00. (Thanks to Stepan 2540ba2b2efdSGlen Barber Golosunov.) 2541ba2b2efdSGlen Barber 2542ba2b2efdSGlen Barber Many corrections to historical time in Kazakhstan from 1991 2543ba2b2efdSGlen Barber through 2005. (Thanks to Stepan Golosunov.) Replace Kazakhstan's 2544ba2b2efdSGlen Barber invented time zone abbreviations with numeric abbreviations. 2545ba2b2efdSGlen Barber 2546ba2b2efdSGlen Barber Changes to commentary 2547ba2b2efdSGlen Barber 2548ba2b2efdSGlen Barber Mention Internet RFCs 7808 (TZDIST) and 7809 (CalDAV time zone references). 2549ba2b2efdSGlen Barber 2550ba2b2efdSGlen Barber 2551ba2b2efdSGlen BarberRelease 2016c - 2016-03-23 00:51:27 -0700 2552ba2b2efdSGlen Barber 2553ba2b2efdSGlen Barber Changes affecting future timestamps 2554ba2b2efdSGlen Barber 2555ba2b2efdSGlen Barber Azerbaijan no longer observes DST. (Thanks to Steffen Thorsen.) 2556ba2b2efdSGlen Barber 2557ba2b2efdSGlen Barber Chile reverts from permanent to seasonal DST. (Thanks to Juan 2558ba2b2efdSGlen Barber Correa for the heads-up, and to Tim Parenti for corrections.) 2559ba2b2efdSGlen Barber Guess that future transitions are August's and May's second 2560ba2b2efdSGlen Barber Saturdays at 24:00 mainland time. Also, call the period from 2561ba2b2efdSGlen Barber 2014-09-07 through 2016-05-14 daylight saving time instead of 2562ba2b2efdSGlen Barber standard time, as that seems more appropriate now. 2563ba2b2efdSGlen Barber 2564ba2b2efdSGlen Barber Changes affecting past timestamps 2565ba2b2efdSGlen Barber 2566ba2b2efdSGlen Barber Europe/Kaliningrad and Europe/Vilnius changed from +03/+04 to 2567ba2b2efdSGlen Barber +02/+03 on 1989-03-26, not 1991-03-31. Europe/Volgograd changed 2568ba2b2efdSGlen Barber from +04/+05 to +03/+04 on 1988-03-27, not 1989-03-26. 2569ba2b2efdSGlen Barber (Thanks to Stepan Golosunov.) 2570ba2b2efdSGlen Barber 2571ba2b2efdSGlen Barber Changes to commentary 2572ba2b2efdSGlen Barber 2573ba2b2efdSGlen Barber Several updates and URLs for historical and proposed Russian changes. 2574ba2b2efdSGlen Barber (Thanks to Stepan Golosunov, Matt Johnson, and Alexander Krivenyshev.) 2575ba2b2efdSGlen Barber 2576ba2b2efdSGlen Barber 2577ba2b2efdSGlen BarberRelease 2016b - 2016-03-12 17:30:14 -0800 2578ba2b2efdSGlen Barber 2579ba2b2efdSGlen Barber Compatibility note 2580ba2b2efdSGlen Barber 2581ba2b2efdSGlen Barber Starting with release 2016b, some data entries cause zic implementations 2582ba2b2efdSGlen Barber derived from tz releases 2005j through 2015e to issue warnings like 2583ba2b2efdSGlen Barber "time zone abbreviation differs from POSIX standard (+03)". 2584ba2b2efdSGlen Barber These warnings should not otherwise affect zic's output and can safely be 2585ba2b2efdSGlen Barber ignored on today's platforms, as the warnings refer to a restriction in 2586ba2b2efdSGlen Barber POSIX.1-1988 that was removed in POSIX.1-2001. One way to suppress the 2587ba2b2efdSGlen Barber warnings is to upgrade to zic derived from tz releases 2015f and later. 2588ba2b2efdSGlen Barber 2589ba2b2efdSGlen Barber Changes affecting future timestamps 2590ba2b2efdSGlen Barber 2591ba2b2efdSGlen Barber New zones Europe/Astrakhan and Europe/Ulyanovsk for Astrakhan and 2592ba2b2efdSGlen Barber Ulyanovsk Oblasts, Russia, both of which will switch from +03 to +04 on 2593ba2b2efdSGlen Barber 2016-03-27 at 02:00 local time. They need distinct zones since their 2594ba2b2efdSGlen Barber post-1970 histories disagree. New zone Asia/Barnaul for Altai Krai and 2595ba2b2efdSGlen Barber Altai Republic, Russia, which will switch from +06 to +07 on the same date 2596ba2b2efdSGlen Barber and local time. The Astrakhan change is already official; the others have 2597ba2b2efdSGlen Barber passed the first reading in the State Duma and are extremely likely. 2598ba2b2efdSGlen Barber Also, Asia/Sakhalin moves from +10 to +11 on 2016-03-27 at 02:00. 2599ba2b2efdSGlen Barber (Thanks to Alexander Krivenyshev for the heads-up, and to Matt Johnson 2600ba2b2efdSGlen Barber and Stepan Golosunov for followup.) 2601ba2b2efdSGlen Barber 2602ba2b2efdSGlen Barber As a trial of a new system that needs less information to be made up, 2603ba2b2efdSGlen Barber the new zones use numeric time zone abbreviations like "+04" 2604ba2b2efdSGlen Barber instead of invented abbreviations like "ASTT". 2605ba2b2efdSGlen Barber 2606ba2b2efdSGlen Barber Haiti will not observe DST in 2016. (Thanks to Jean Antoine via 2607ba2b2efdSGlen Barber Steffen Thorsen.) 2608ba2b2efdSGlen Barber 2609ba2b2efdSGlen Barber Palestine's spring-forward transition on 2016-03-26 is at 01:00, not 00:00. 2610ba2b2efdSGlen Barber (Thanks to Hannah Kreitem.) Guess future transitions will be March's last 2611ba2b2efdSGlen Barber Saturday at 01:00, not March's last Friday at 24:00. 2612ba2b2efdSGlen Barber 2613ba2b2efdSGlen Barber Changes affecting past timestamps 2614ba2b2efdSGlen Barber 2615ba2b2efdSGlen Barber Europe/Chisinau observed DST during 1990, and switched from +04 to 2616ba2b2efdSGlen Barber +03 at 1990-05-06 02:00, instead of switching from +03 to +02. 2617ba2b2efdSGlen Barber (Thanks to Stepan Golosunov.) 2618ba2b2efdSGlen Barber 2619ba2b2efdSGlen Barber 1991 abbreviations in Europe/Samara should be SAMT/SAMST, not 2620ba2b2efdSGlen Barber KUYT/KUYST. (Thanks to Stepan Golosunov.) 2621ba2b2efdSGlen Barber 2622ba2b2efdSGlen Barber Changes to code 2623ba2b2efdSGlen Barber 2624ba2b2efdSGlen Barber tzselect's diagnostics and checking, and checktab.awk's checking, 2625ba2b2efdSGlen Barber have been improved. (Thanks to J William Piggott.) 2626ba2b2efdSGlen Barber 2627ba2b2efdSGlen Barber tzcode now builds under MinGW. (Thanks to Ian Abbott and Esben Haabendal.) 2628ba2b2efdSGlen Barber 2629ba2b2efdSGlen Barber tzselect now tests Julian-date TZ settings more accurately. 2630ba2b2efdSGlen Barber (Thanks to J William Piggott.) 2631ba2b2efdSGlen Barber 2632ba2b2efdSGlen Barber Changes to commentary 2633ba2b2efdSGlen Barber 2634ba2b2efdSGlen Barber Comments in zone tables have been improved. (Thanks to J William Piggott.) 2635ba2b2efdSGlen Barber 2636ba2b2efdSGlen Barber tzselect again limits its menu comments so that menus fit on a 263746bee4edSPhilip Paeps 24×80 alphanumeric display. 2638ba2b2efdSGlen Barber 2639ba2b2efdSGlen Barber A new web page tz-how-to.html. (Thanks to Bill Seymour.) 2640ba2b2efdSGlen Barber 2641ba2b2efdSGlen Barber In the Theory file, the description of possible time zone abbreviations in 2642ba2b2efdSGlen Barber tzdata has been cleaned up, as the old description was unclear and 2643ba2b2efdSGlen Barber inconsistent. (Thanks to Alain Mouette for reporting the problem.) 2644ba2b2efdSGlen Barber 2645ba2b2efdSGlen Barber 2646ba2b2efdSGlen BarberRelease 2016a - 2016-01-26 23:28:02 -0800 2647ba2b2efdSGlen Barber 2648ba2b2efdSGlen Barber Changes affecting future timestamps 2649ba2b2efdSGlen Barber 2650ba2b2efdSGlen Barber America/Cayman will not observe daylight saving this year after all. 2651ba2b2efdSGlen Barber Revert our guess that it would. (Thanks to Matt Johnson.) 2652ba2b2efdSGlen Barber 2653ba2b2efdSGlen Barber Asia/Chita switches from +0800 to +0900 on 2016-03-27 at 02:00. 2654ba2b2efdSGlen Barber (Thanks to Alexander Krivenyshev.) 2655ba2b2efdSGlen Barber 2656ba2b2efdSGlen Barber Asia/Tehran now has DST predictions for the year 2038 and later, 2657ba2b2efdSGlen Barber to be March 21 00:00 to September 21 00:00. This is likely better 2658ba2b2efdSGlen Barber than predicting no DST, albeit off by a day every now and then. 2659ba2b2efdSGlen Barber 2660ba2b2efdSGlen Barber Changes affecting past and future timestamps 2661ba2b2efdSGlen Barber 2662ba2b2efdSGlen Barber America/Metlakatla switched from PST all year to AKST/AKDT on 2663ba2b2efdSGlen Barber 2015-11-01 at 02:00. (Thanks to Steffen Thorsen.) 2664ba2b2efdSGlen Barber 2665ba2b2efdSGlen Barber America/Santa_Isabel has been removed, and replaced with a 2666ba2b2efdSGlen Barber backward compatibility link to America/Tijuana. Its contents were 2667ba2b2efdSGlen Barber apparently based on a misreading of Mexican legislation. 2668ba2b2efdSGlen Barber 2669ba2b2efdSGlen Barber Changes affecting past timestamps 2670ba2b2efdSGlen Barber 2671ba2b2efdSGlen Barber Asia/Karachi's two transition times in 2002 were off by a minute. 2672ba2b2efdSGlen Barber (Thanks to Matt Johnson.) 2673ba2b2efdSGlen Barber 2674ba2b2efdSGlen Barber Changes affecting build procedure 2675ba2b2efdSGlen Barber 2676ba2b2efdSGlen Barber An installer can now combine leap seconds with use of the backzone file, 2677ba2b2efdSGlen Barber e.g., with 'make PACKRATDATA=backzone REDO=posix_right zones'. 2678ba2b2efdSGlen Barber The old 'make posix_packrat' rule is now marked as obsolescent. 2679ba2b2efdSGlen Barber (Thanks to Ian Abbott for an initial implementation.) 2680ba2b2efdSGlen Barber 2681ba2b2efdSGlen Barber Changes affecting documentation and commentary 2682ba2b2efdSGlen Barber 2683ba2b2efdSGlen Barber A new file LICENSE makes it easier to see that the code and data 2684ba2b2efdSGlen Barber are mostly public-domain. (Thanks to James Knight.) The three 2685ba2b2efdSGlen Barber non-public-domain files now use the current (3-clause) BSD license 2686ba2b2efdSGlen Barber instead of older versions of that license. 2687ba2b2efdSGlen Barber 2688ba2b2efdSGlen Barber tz-link.htm mentions the BDE library (thanks to Andrew Paprocki), 2689ba2b2efdSGlen Barber CCTZ (thanks to Tim Parenti), TimeJones.com, and has a new section 2690ba2b2efdSGlen Barber on editing tz source files (with a mention of Sublime zoneinfo, 2691ba2b2efdSGlen Barber thanks to Gilmore Davidson). 2692ba2b2efdSGlen Barber 2693ba2b2efdSGlen Barber The Theory and asia files now mention the 2015 book "The Global 2694ba2b2efdSGlen Barber Transformation of Time, 1870-1950", and cite a couple of reviews. 2695ba2b2efdSGlen Barber 2696ba2b2efdSGlen Barber The America/Chicago entry now documents the informal use of US 2697ba2b2efdSGlen Barber central time in Fort Pierre, South Dakota. (Thanks to Rick 2698ba2b2efdSGlen Barber McDermid, Matt Johnson, and Steve Jones.) 2699ba2b2efdSGlen Barber 2700ba2b2efdSGlen Barber 2701ba2b2efdSGlen BarberRelease 2015g - 2015-10-01 00:39:51 -0700 2702ba2b2efdSGlen Barber 2703ba2b2efdSGlen Barber Changes affecting future timestamps 2704ba2b2efdSGlen Barber 2705ba2b2efdSGlen Barber Turkey's 2015 fall-back transition is scheduled for Nov. 8, not Oct. 25. 2706ba2b2efdSGlen Barber (Thanks to Fatih.) 2707ba2b2efdSGlen Barber 2708ba2b2efdSGlen Barber Norfolk moves from +1130 to +1100 on 2015-10-04 at 02:00 local time. 2709ba2b2efdSGlen Barber (Thanks to Alexander Krivenyshev.) 2710ba2b2efdSGlen Barber 2711ba2b2efdSGlen Barber Fiji's 2016 fall-back transition is scheduled for January 17, not 24. 2712ba2b2efdSGlen Barber (Thanks to Ken Rylander.) 2713ba2b2efdSGlen Barber 2714ba2b2efdSGlen Barber Fort Nelson, British Columbia will not fall back on 2015-11-01. It has 2715ba2b2efdSGlen Barber effectively been on MST (-0700) since it advanced its clocks on 2015-03-08. 2716ba2b2efdSGlen Barber New zone America/Fort_Nelson. (Thanks to Matt Johnson.) 2717ba2b2efdSGlen Barber 2718ba2b2efdSGlen Barber Changes affecting past timestamps 2719ba2b2efdSGlen Barber 2720ba2b2efdSGlen Barber Norfolk observed DST from 1974-10-27 02:00 to 1975-03-02 02:00. 2721ba2b2efdSGlen Barber 2722ba2b2efdSGlen Barber Changes affecting code 2723ba2b2efdSGlen Barber 2724ba2b2efdSGlen Barber localtime no longer mishandles America/Anchorage after 2037. 2725ba2b2efdSGlen Barber (Thanks to Bradley White for reporting the bug.) 2726ba2b2efdSGlen Barber 2727ba2b2efdSGlen Barber On hosts with signed 32-bit time_t, localtime no longer mishandles 2728ba2b2efdSGlen Barber Pacific/Fiji after 2038-01-16 14:00 UTC. 2729ba2b2efdSGlen Barber 2730ba2b2efdSGlen Barber The localtime module allows the variables 'timezone', 'daylight', 2731ba2b2efdSGlen Barber and 'altzone' to be in common storage shared with other modules, 2732ba2b2efdSGlen Barber and declares them in case the system <time.h> does not. 2733ba2b2efdSGlen Barber (Problems reported by Kees Dekker.) 2734ba2b2efdSGlen Barber 2735ba2b2efdSGlen Barber On platforms with tm_zone, strftime.c now assumes it is not NULL. 2736ba2b2efdSGlen Barber This simplifies the code and is consistent with zdump.c. 2737ba2b2efdSGlen Barber (Problem reported by Christos Zoulas.) 2738ba2b2efdSGlen Barber 2739ba2b2efdSGlen Barber Changes affecting documentation 2740ba2b2efdSGlen Barber 2741ba2b2efdSGlen Barber The tzfile man page now documents that transition times denote the 2742ba2b2efdSGlen Barber starts (not the ends) of the corresponding time periods. 2743ba2b2efdSGlen Barber (Ambiguity reported by Bill Seymour.) 2744ba2b2efdSGlen Barber 2745ba2b2efdSGlen Barber 2746ba2b2efdSGlen BarberRelease 2015f - 2015-08-10 18:06:56 -0700 2747ba2b2efdSGlen Barber 2748ba2b2efdSGlen Barber Changes affecting future timestamps 2749ba2b2efdSGlen Barber 2750ba2b2efdSGlen Barber North Korea switches to +0830 on 2015-08-15. (Thanks to Steffen Thorsen.) 2751ba2b2efdSGlen Barber The abbreviation remains "KST". (Thanks to Robert Elz.) 2752ba2b2efdSGlen Barber 2753ba2b2efdSGlen Barber Uruguay no longer observes DST. (Thanks to Steffen Thorsen 2754ba2b2efdSGlen Barber and Pablo Camargo.) 2755ba2b2efdSGlen Barber 2756ba2b2efdSGlen Barber Changes affecting past and future timestamps 2757ba2b2efdSGlen Barber 2758ba2b2efdSGlen Barber Moldova starts and ends DST at 00:00 UTC, not at 01:00 UTC. 2759ba2b2efdSGlen Barber (Thanks to Roman Tudos.) 2760ba2b2efdSGlen Barber 2761ba2b2efdSGlen Barber Changes affecting data format and code 2762ba2b2efdSGlen Barber 2763ba2b2efdSGlen Barber zic's '-y YEARISTYPE' option is no longer documented. The TYPE 2764ba2b2efdSGlen Barber field of a Rule line should now be '-'; the old values 'even', 2765ba2b2efdSGlen Barber 'odd', 'uspres', 'nonpres', 'nonuspres' were already undocumented. 2766ba2b2efdSGlen Barber Although the implementation has not changed, these features do not 2767ba2b2efdSGlen Barber work in the default installation, they are not used in the data, 2768ba2b2efdSGlen Barber and they are now considered obsolescent. 2769ba2b2efdSGlen Barber 2770ba2b2efdSGlen Barber zic now checks that two rules don't take effect at the same time. 2771ba2b2efdSGlen Barber (Thanks to Jon Skeet and Arthur David Olson.) Constraints on 2772ba2b2efdSGlen Barber simultaneity are now documented. 2773ba2b2efdSGlen Barber 2774f2fcff28SPhilip Paeps The two characters '%z' in a zone format now stand for the UT 2775f2fcff28SPhilip Paeps offset, e.g., '-07' for seven hours behind UT and '+0530' for 2776ba2b2efdSGlen Barber five hours and thirty minutes ahead. This better supports time 2777ba2b2efdSGlen Barber zone abbreviations conforming to POSIX.1-2001 and later. 2778ba2b2efdSGlen Barber 2779ba2b2efdSGlen Barber Changes affecting installed data files 2780ba2b2efdSGlen Barber 2781ba2b2efdSGlen Barber Comments for America/Halifax and America/Glace_Bay have been improved. 2782ba2b2efdSGlen Barber (Thanks to Brian Inglis.) 2783ba2b2efdSGlen Barber 2784ba2b2efdSGlen Barber Data entries have been simplified for Atlantic/Canary, Europe/Simferopol, 2785ba2b2efdSGlen Barber Europe/Sofia, and Europe/Tallinn. This yields slightly smaller 2786ba2b2efdSGlen Barber installed data files for Europe/Simferopol and Europe/Tallinn. 2787ba2b2efdSGlen Barber It does not affect timestamps. (Thanks to Howard Hinnant.) 2788ba2b2efdSGlen Barber 2789ba2b2efdSGlen Barber Changes affecting code 2790ba2b2efdSGlen Barber 2791ba2b2efdSGlen Barber zdump and zic no longer warn about valid time zone abbreviations 2792ba2b2efdSGlen Barber like '-05'. 2793ba2b2efdSGlen Barber 2794ba2b2efdSGlen Barber Some Visual Studio 2013 warnings have been suppressed. 2795ba2b2efdSGlen Barber (Thanks to Kees Dekker.) 2796ba2b2efdSGlen Barber 2797ba2b2efdSGlen Barber 'date' no longer sets the time of day and its -a, -d, -n and -t 2798ba2b2efdSGlen Barber options have been removed. Long obsolescent, the implementation 2799ba2b2efdSGlen Barber of these features had porting problems. Builders no longer need 2800ba2b2efdSGlen Barber to configure HAVE_ADJTIME, HAVE_SETTIMEOFDAY, or HAVE_UTMPX_H. 2801ba2b2efdSGlen Barber (Thanks to Kees Dekker for pointing out the problem.) 2802ba2b2efdSGlen Barber 2803ba2b2efdSGlen Barber Changes affecting documentation 2804ba2b2efdSGlen Barber 2805ba2b2efdSGlen Barber The Theory file mentions naming issues earlier, as these seem to be 2806ba2b2efdSGlen Barber poorly publicized (thanks to Gilmore Davidson for reporting the problem). 2807ba2b2efdSGlen Barber 2808ba2b2efdSGlen Barber tz-link.htm mentions Time Zone Database Parser (thanks to Howard Hinnant). 2809ba2b2efdSGlen Barber 2810ba2b2efdSGlen Barber Mention that Herbert Samuel introduced the term "Summer Time". 2811ba2b2efdSGlen Barber 2812ba2b2efdSGlen Barber 2813ba2b2efdSGlen BarberRelease 2015e - 2015-06-13 10:56:02 -0700 2814ba2b2efdSGlen Barber 2815ba2b2efdSGlen Barber Changes affecting future timestamps 2816ba2b2efdSGlen Barber 2817ba2b2efdSGlen Barber Morocco will suspend DST from 2015-06-14 03:00 through 2015-07-19 02:00, 2818ba2b2efdSGlen Barber not 06-13 and 07-18 as we had guessed. (Thanks to Milamber.) 2819ba2b2efdSGlen Barber 2820ba2b2efdSGlen Barber Assume Cayman Islands will observe DST starting next year, using US rules. 2821ba2b2efdSGlen Barber Although it isn't guaranteed, it is the most likely. 2822ba2b2efdSGlen Barber 2823ba2b2efdSGlen Barber Changes affecting data format 2824ba2b2efdSGlen Barber 2825ba2b2efdSGlen Barber The file 'iso3166.tab' now uses UTF-8, so that its entries can better 2826ba2b2efdSGlen Barber spell the names of Åland Islands, Côte d'Ivoire, and Réunion. 2827ba2b2efdSGlen Barber 2828ba2b2efdSGlen Barber Changes affecting code 2829ba2b2efdSGlen Barber 2830ba2b2efdSGlen Barber When displaying data, tzselect converts it to the current locale's 2831ba2b2efdSGlen Barber encoding if the iconv command works. (Problem reported by random832.) 2832ba2b2efdSGlen Barber 2833ba2b2efdSGlen Barber tzselect no longer mishandles Dominica, fixing a bug introduced 2834ba2b2efdSGlen Barber in Release 2014f. (Problem reported by Owen Leibman.) 2835ba2b2efdSGlen Barber 2836ba2b2efdSGlen Barber zic -l no longer fails when compiled with -DTZDEFAULT=\"/etc/localtime\". 2837ba2b2efdSGlen Barber This fixes a bug introduced in Release 2014f. 2838ba2b2efdSGlen Barber (Problem reported by Leonardo Chiquitto.) 2839ba2b2efdSGlen Barber 2840ba2b2efdSGlen Barber 2841ba2b2efdSGlen BarberRelease 2015d - 2015-04-24 08:09:46 -0700 2842ba2b2efdSGlen Barber 2843ba2b2efdSGlen Barber Changes affecting future timestamps 2844ba2b2efdSGlen Barber 2845ba2b2efdSGlen Barber Egypt will not observe DST in 2015 and will consider canceling it 2846ba2b2efdSGlen Barber permanently. For now, assume no DST indefinitely. 2847ba2b2efdSGlen Barber (Thanks to Ahmed Nazmy and Tim Parenti.) 2848ba2b2efdSGlen Barber 2849ba2b2efdSGlen Barber Changes affecting past timestamps 2850ba2b2efdSGlen Barber 2851ba2b2efdSGlen Barber America/Whitehorse switched from UT -09 to -08 on 1967-05-28, not 2852ba2b2efdSGlen Barber 1966-07-01. Also, Yukon's time zone history is documented better. 2853ba2b2efdSGlen Barber (Thanks to Brian Inglis and Dennis Ferguson.) 2854ba2b2efdSGlen Barber 2855ba2b2efdSGlen Barber Change affecting past and future time zone abbreviations 2856ba2b2efdSGlen Barber 2857ba2b2efdSGlen Barber The abbreviations for Hawaii-Aleutian standard and daylight times 2858ba2b2efdSGlen Barber have been changed from HAST/HADT to HST/HDT, as per US Government 2859ba2b2efdSGlen Barber Printing Office style. This affects only America/Adak since 1983, 2860ba2b2efdSGlen Barber as America/Honolulu was already using the new style. 2861ba2b2efdSGlen Barber 2862ba2b2efdSGlen Barber Changes affecting code 2863ba2b2efdSGlen Barber 2864ba2b2efdSGlen Barber zic has some minor performance improvements. 2865ba2b2efdSGlen Barber 2866ba2b2efdSGlen Barber 2867ba2b2efdSGlen BarberRelease 2015c - 2015-04-11 08:55:55 -0700 2868ba2b2efdSGlen Barber 2869ba2b2efdSGlen Barber Changes affecting future timestamps 2870ba2b2efdSGlen Barber 2871ba2b2efdSGlen Barber Egypt's spring-forward transition is at 24:00 on April's last Thursday, 2872ba2b2efdSGlen Barber not 00:00 on April's last Friday. 2015's transition will therefore be on 2873ba2b2efdSGlen Barber Thursday, April 30 at 24:00, not Friday, April 24 at 00:00. Similar fixes 2874ba2b2efdSGlen Barber apply to 2026, 2037, 2043, etc. (Thanks to Steffen Thorsen.) 2875ba2b2efdSGlen Barber 2876ba2b2efdSGlen Barber Changes affecting past timestamps 2877ba2b2efdSGlen Barber 2878ba2b2efdSGlen Barber The following changes affect some pre-1991 Chile-related timestamps 2879ba2b2efdSGlen Barber in America/Santiago, Antarctica/Palmer, and Pacific/Easter. 2880ba2b2efdSGlen Barber 2881ba2b2efdSGlen Barber The 1910 transition was January 10, not January 1. 2882ba2b2efdSGlen Barber 2883ba2b2efdSGlen Barber The 1918 transition was September 10, not September 1. 2884ba2b2efdSGlen Barber 2885ba2b2efdSGlen Barber The UT -04 time observed from 1932 to 1942 is now considered to 2886ba2b2efdSGlen Barber be standard time, not year-round DST. 2887ba2b2efdSGlen Barber 2888ba2b2efdSGlen Barber Santiago observed DST (UT -03) from 1946-07-15 through 2889ba2b2efdSGlen Barber 1946-08-31, then reverted to standard time, then switched to -05 2890ba2b2efdSGlen Barber on 1947-04-01. 2891ba2b2efdSGlen Barber 2892ba2b2efdSGlen Barber Assume transitions before 1968 were at 00:00, since we have no data 2893ba2b2efdSGlen Barber saying otherwise. 2894ba2b2efdSGlen Barber 2895ba2b2efdSGlen Barber The spring 1988 transition was 1988-10-09, not 1988-10-02. 2896ba2b2efdSGlen Barber The fall 1990 transition was 1990-03-11, not 1990-03-18. 2897ba2b2efdSGlen Barber 2898f2fcff28SPhilip Paeps Assume no UT offset change for Pacific/Easter on 1890-01-01, 2899ba2b2efdSGlen Barber and omit all transitions on Pacific/Easter from 1942 through 1946 2900ba2b2efdSGlen Barber since we have no data suggesting that they existed. 2901ba2b2efdSGlen Barber 2902ba2b2efdSGlen Barber One more zone has been turned into a link, as it differed 2903ba2b2efdSGlen Barber from an existing zone only for older timestamps. As usual, 2904f2fcff28SPhilip Paeps this change affects UT offsets in pre-1970 timestamps only. 2905ba2b2efdSGlen Barber The zone's old contents have been moved to the 'backzone' file. 2906ba2b2efdSGlen Barber The affected zone is America/Montreal. 2907ba2b2efdSGlen Barber 2908ba2b2efdSGlen Barber Changes affecting commentary 2909ba2b2efdSGlen Barber 2910ba2b2efdSGlen Barber Mention the TZUpdater tool. 2911ba2b2efdSGlen Barber 2912ba2b2efdSGlen Barber Mention "The Time Now". (Thanks to Brandon Ramsey.) 2913ba2b2efdSGlen Barber 2914ba2b2efdSGlen Barber 2915ba2b2efdSGlen BarberRelease 2015b - 2015-03-19 23:28:11 -0700 2916ba2b2efdSGlen Barber 2917ba2b2efdSGlen Barber Changes affecting future timestamps 2918ba2b2efdSGlen Barber 2919ba2b2efdSGlen Barber Mongolia will start observing DST again this year, from the last 2920ba2b2efdSGlen Barber Saturday in March at 02:00 to the last Saturday in September at 00:00. 2921ba2b2efdSGlen Barber (Thanks to Ganbold Tsagaankhuu.) 2922ba2b2efdSGlen Barber 2923ba2b2efdSGlen Barber Palestine will start DST on March 28, not March 27. Also, 2924ba2b2efdSGlen Barber correct the fall 2014 transition from September 26 to October 24. 2925ba2b2efdSGlen Barber Adjust future predictions accordingly. (Thanks to Steffen Thorsen.) 2926ba2b2efdSGlen Barber 2927ba2b2efdSGlen Barber Changes affecting past timestamps 2928ba2b2efdSGlen Barber 2929ba2b2efdSGlen Barber The 1982 zone shift in Pacific/Easter has been corrected, fixing a 2015a 2930ba2b2efdSGlen Barber regression. (Thanks to Stuart Bishop for reporting the problem.) 2931ba2b2efdSGlen Barber 2932ba2b2efdSGlen Barber Some more zones have been turned into links, when they differed 2933ba2b2efdSGlen Barber from existing zones only for older timestamps. As usual, 2934f2fcff28SPhilip Paeps these changes affect UT offsets in pre-1970 timestamps only. 2935ba2b2efdSGlen Barber Their old contents have been moved to the 'backzone' file. 2936ba2b2efdSGlen Barber The affected zones are: America/Antigua, America/Cayman, 2937ba2b2efdSGlen Barber Pacific/Midway, and Pacific/Saipan. 2938ba2b2efdSGlen Barber 2939ba2b2efdSGlen Barber Changes affecting time zone abbreviations 2940ba2b2efdSGlen Barber 2941ba2b2efdSGlen Barber Correct the 1992-2010 DST abbreviation in Volgograd from "MSK" to "MSD". 2942ba2b2efdSGlen Barber (Thanks to Hank W.) 2943ba2b2efdSGlen Barber 2944ba2b2efdSGlen Barber Changes affecting code 2945ba2b2efdSGlen Barber 2946ba2b2efdSGlen Barber Fix integer overflow bug in reference 'mktime' implementation. 2947ba2b2efdSGlen Barber (Problem reported by Jörg Richter.) 2948ba2b2efdSGlen Barber 2949ba2b2efdSGlen Barber Allow -Dtime_tz=time_t compilations, and allow -Dtime_tz=... libraries 2950ba2b2efdSGlen Barber to be used in the same executable as standard-library time_t functions. 2951ba2b2efdSGlen Barber (Problems reported by Bradley White.) 2952ba2b2efdSGlen Barber 2953ba2b2efdSGlen Barber Changes affecting commentary 2954ba2b2efdSGlen Barber 2955ba2b2efdSGlen Barber Cite the recent Mexican decree changing Quintana Roo's time zone. 2956ba2b2efdSGlen Barber (Thanks to Carlos Raúl Perasso.) 2957ba2b2efdSGlen Barber 2958ba2b2efdSGlen Barber Likewise for the recent Chilean decree. (Thanks to Eduardo Romero Urra.) 2959ba2b2efdSGlen Barber 2960ba2b2efdSGlen Barber Update info about Mars time. 2961ba2b2efdSGlen Barber 2962ba2b2efdSGlen Barber 2963ba2b2efdSGlen BarberRelease 2015a - 2015-01-29 22:35:20 -0800 2964ba2b2efdSGlen Barber 2965ba2b2efdSGlen Barber Changes affecting future timestamps 2966ba2b2efdSGlen Barber 2967ba2b2efdSGlen Barber The Mexican state of Quintana Roo, represented by America/Cancun, 2968ba2b2efdSGlen Barber will shift from Central Time with DST to Eastern Time without DST 2969ba2b2efdSGlen Barber on 2015-02-01 at 02:00. (Thanks to Steffen Thorsen and Gwillim Law.) 2970ba2b2efdSGlen Barber 2971ba2b2efdSGlen Barber Chile will not change clocks in April or thereafter; its new standard time 2972ba2b2efdSGlen Barber will be its old daylight saving time. This affects America/Santiago, 2973ba2b2efdSGlen Barber Pacific/Easter, and Antarctica/Palmer. (Thanks to Juan Correa.) 2974ba2b2efdSGlen Barber 2975ba2b2efdSGlen Barber New leap second 2015-06-30 23:59:60 UTC as per IERS Bulletin C 49. 2976ba2b2efdSGlen Barber (Thanks to Tim Parenti.) 2977ba2b2efdSGlen Barber 2978ba2b2efdSGlen Barber Changes affecting past timestamps 2979ba2b2efdSGlen Barber 2980ba2b2efdSGlen Barber Iceland observed DST in 1919 and 1921, and its 1939 fallback 2981ba2b2efdSGlen Barber transition was Oct. 29, not Nov. 29. Remove incorrect data from 2982ba2b2efdSGlen Barber Shanks about time in Iceland between 1837 and 1908. 2983ba2b2efdSGlen Barber 2984ba2b2efdSGlen Barber Some more zones have been turned into links, when they differed 2985ba2b2efdSGlen Barber from existing zones only for older timestamps. As usual, 2986f2fcff28SPhilip Paeps these changes affect UT offsets in pre-1970 timestamps only. 2987ba2b2efdSGlen Barber Their old contents have been moved to the 'backzone' file. 2988ba2b2efdSGlen Barber The affected zones are: Asia/Aden, Asia/Bahrain, Asia/Kuwait, 2989ba2b2efdSGlen Barber and Asia/Muscat. 2990ba2b2efdSGlen Barber 2991ba2b2efdSGlen Barber Changes affecting code 2992ba2b2efdSGlen Barber 2993ba2b2efdSGlen Barber tzalloc now scrubs time zone abbreviations compatibly with the way 2994ba2b2efdSGlen Barber that tzset always has, by replacing invalid bytes with '_' and by 2995ba2b2efdSGlen Barber shortening too-long abbreviations. 2996ba2b2efdSGlen Barber 2997ba2b2efdSGlen Barber tzselect ports to POSIX awk implementations, no longer mishandles 2998ba2b2efdSGlen Barber POSIX TZ settings when GNU awk is used, and reports POSIX TZ 2999ba2b2efdSGlen Barber settings to the user. (Thanks to Stefan Kuhn.) 3000ba2b2efdSGlen Barber 3001ba2b2efdSGlen Barber Changes affecting build procedure 3002ba2b2efdSGlen Barber 3003ba2b2efdSGlen Barber 'make check' now checks for links to links in the data. 3004ba2b2efdSGlen Barber One such link (for Africa/Asmera) has been fixed. 3005ba2b2efdSGlen Barber (Thanks to Stephen Colebourne for pointing out the problem.) 3006ba2b2efdSGlen Barber 3007ba2b2efdSGlen Barber Changes affecting commentary 3008ba2b2efdSGlen Barber 3009ba2b2efdSGlen Barber The leapseconds file commentary now mentions the expiration date. 3010ba2b2efdSGlen Barber (Problem reported by Martin Burnicki.) 3011ba2b2efdSGlen Barber 3012ba2b2efdSGlen Barber Update Mexican Library of Congress URL. 3013ba2b2efdSGlen Barber 3014ba2b2efdSGlen Barber 3015ba2b2efdSGlen BarberRelease 2014j - 2014-11-10 17:37:11 -0800 3016ba2b2efdSGlen Barber 3017ba2b2efdSGlen Barber Changes affecting current and future timestamps 3018ba2b2efdSGlen Barber 3019ba2b2efdSGlen Barber Turks & Caicos' switch from US eastern time to UT -04 year-round 3020ba2b2efdSGlen Barber did not occur on 2014-11-02 at 02:00. It's currently scheduled 3021ba2b2efdSGlen Barber for 2015-11-01 at 02:00. (Thanks to Chris Walton.) 3022ba2b2efdSGlen Barber 3023ba2b2efdSGlen Barber Changes affecting past timestamps 3024ba2b2efdSGlen Barber 3025ba2b2efdSGlen Barber Many pre-1989 timestamps have been corrected for Asia/Seoul and 3026ba2b2efdSGlen Barber Asia/Pyongyang, based on sources for the Korean-language Wikipedia 3027ba2b2efdSGlen Barber entry for time in Korea. (Thanks to Sanghyuk Jung.) Also, no 3028ba2b2efdSGlen Barber longer guess that Pyongyang mimicked Seoul time after World War II, 3029ba2b2efdSGlen Barber as this is politically implausible. 3030ba2b2efdSGlen Barber 3031ba2b2efdSGlen Barber Some more zones have been turned into links, when they differed 3032ba2b2efdSGlen Barber from existing zones only for older timestamps. As usual, 3033f2fcff28SPhilip Paeps these changes affect UT offsets in pre-1970 timestamps only. 3034ba2b2efdSGlen Barber Their old contents have been moved to the 'backzone' file. 3035ba2b2efdSGlen Barber The affected zones are: Africa/Addis_Ababa, Africa/Asmara, 3036ba2b2efdSGlen Barber Africa/Dar_es_Salaam, Africa/Djibouti, Africa/Kampala, 3037ba2b2efdSGlen Barber Africa/Mogadishu, Indian/Antananarivo, Indian/Comoro, and 3038ba2b2efdSGlen Barber Indian/Mayotte. 3039ba2b2efdSGlen Barber 3040ba2b2efdSGlen Barber Changes affecting commentary 3041ba2b2efdSGlen Barber 3042ba2b2efdSGlen Barber The commentary is less enthusiastic about Shanks as a source, 3043ba2b2efdSGlen Barber and is more careful to distinguish UT from UTC. 3044ba2b2efdSGlen Barber 3045ba2b2efdSGlen Barber 3046ba2b2efdSGlen BarberRelease 2014i - 2014-10-21 22:04:57 -0700 3047ba2b2efdSGlen Barber 3048ba2b2efdSGlen Barber Changes affecting future timestamps 3049ba2b2efdSGlen Barber 3050ba2b2efdSGlen Barber Pacific/Fiji will observe DST from 2014-11-02 02:00 to 2015-01-18 03:00. 3051ba2b2efdSGlen Barber (Thanks to Ken Rylander for the heads-up.) Guess that future 3052ba2b2efdSGlen Barber years will use a similar pattern. 3053ba2b2efdSGlen Barber 3054ba2b2efdSGlen Barber A new Zone Pacific/Bougainville, for the part of Papua New Guinea 3055ba2b2efdSGlen Barber that plans to switch from UT +10 to +11 on 2014-12-28 at 02:00. 3056ba2b2efdSGlen Barber (Thanks to Kiley Walbom for the heads-up.) 3057ba2b2efdSGlen Barber 3058ba2b2efdSGlen Barber Changes affecting time zone abbreviations 3059ba2b2efdSGlen Barber 3060ba2b2efdSGlen Barber Since Belarus is not changing its clocks even though Moscow is, 3061ba2b2efdSGlen Barber the time zone abbreviation in Europe/Minsk is changing from FET 3062*259e2ad7SPhilip Paeps to its more traditional value MSK on 2014-10-26 at 01:00. 3063ba2b2efdSGlen Barber (Thanks to Alexander Bokovoy for the heads-up about Belarus.) 3064ba2b2efdSGlen Barber 3065ba2b2efdSGlen Barber The new abbreviation IDT stands for the pre-1976 use of UT +08 in 3066ba2b2efdSGlen Barber Indochina, to distinguish it better from ICT (+07). 3067ba2b2efdSGlen Barber 3068ba2b2efdSGlen Barber Changes affecting past timestamps 3069ba2b2efdSGlen Barber 3070ba2b2efdSGlen Barber Many timestamps have been corrected for Asia/Ho_Chi_Minh before 1976 3071ba2b2efdSGlen Barber (thanks to Trần Ngọc Quân for an indirect pointer to Trần Tiến Bình's 3072ba2b2efdSGlen Barber authoritative book). Asia/Ho_Chi_Minh has been added to 3073ba2b2efdSGlen Barber zone1970.tab, to give tzselect users in Vietnam two choices, 3074ba2b2efdSGlen Barber since north and south Vietnam disagreed after our 1970 cutoff. 3075ba2b2efdSGlen Barber 3076ba2b2efdSGlen Barber Asia/Phnom_Penh and Asia/Vientiane have been turned into links, as 3077ba2b2efdSGlen Barber they differed from existing zones only for older timestamps. As 3078ba2b2efdSGlen Barber usual, these changes affect pre-1970 timestamps only. Their old 3079ba2b2efdSGlen Barber contents have been moved to the 'backzone' file. 3080ba2b2efdSGlen Barber 3081ba2b2efdSGlen Barber Changes affecting code 3082ba2b2efdSGlen Barber 3083ba2b2efdSGlen Barber The time-related library functions now set errno on failure, and 3084ba2b2efdSGlen Barber some crashes in the new tzalloc-related library functions have 3085ba2b2efdSGlen Barber been fixed. (Thanks to Christos Zoulas for reporting most of 3086ba2b2efdSGlen Barber these problems and for suggesting fixes.) 3087ba2b2efdSGlen Barber 3088ba2b2efdSGlen Barber If USG_COMPAT is defined and the requested timestamp is standard time, 3089ba2b2efdSGlen Barber the tz library's localtime and mktime functions now set the extern 3090ba2b2efdSGlen Barber variable timezone to a value appropriate for that timestamp; and 3091ba2b2efdSGlen Barber similarly for ALTZONE, daylight saving time, and the altzone variable. 3092ba2b2efdSGlen Barber This change is a companion to the tzname change in 2014h, and is 3093ba2b2efdSGlen Barber designed to make timezone and altzone more compatible with tzname. 3094ba2b2efdSGlen Barber 3095ba2b2efdSGlen Barber The tz library's functions now set errno to EOVERFLOW if they fail 3096ba2b2efdSGlen Barber because the result cannot be represented. ctime and ctime_r now 3097ba2b2efdSGlen Barber return NULL and set errno when a timestamp is out of range, rather 3098ba2b2efdSGlen Barber than having undefined behavior. 3099ba2b2efdSGlen Barber 3100ba2b2efdSGlen Barber Some bugs associated with the new 2014g functions have been fixed. 3101ba2b2efdSGlen Barber This includes a bug that largely incapacitated the new functions 3102ba2b2efdSGlen Barber time2posix_z and posix2time_z. (Thanks to Christos Zoulas.) 3103ba2b2efdSGlen Barber It also includes some uses of uninitialized variables after tzalloc. 3104ba2b2efdSGlen Barber The new code uses the standard type 'ssize_t', which the Makefile 3105ba2b2efdSGlen Barber now gives porting advice about. 3106ba2b2efdSGlen Barber 3107ba2b2efdSGlen Barber Changes affecting commentary 3108ba2b2efdSGlen Barber 3109ba2b2efdSGlen Barber Updated URLs for NRC Canada (thanks to Matt Johnson and Brian Inglis). 3110ba2b2efdSGlen Barber 3111ba2b2efdSGlen Barber 3112ba2b2efdSGlen BarberRelease 2014h - 2014-09-25 18:59:03 -0700 3113ba2b2efdSGlen Barber 3114ba2b2efdSGlen Barber Changes affecting past timestamps 3115ba2b2efdSGlen Barber 3116ba2b2efdSGlen Barber America/Jamaica's 1974 spring-forward transition was Jan. 6, not Apr. 28. 3117ba2b2efdSGlen Barber 3118ba2b2efdSGlen Barber Shanks says Asia/Novokuznetsk switched from LMT (not "NMT") on 1924-05-01, 3119ba2b2efdSGlen Barber not 1920-01-06. The old entry was based on a misinterpretation of Shanks. 3120ba2b2efdSGlen Barber 3121ba2b2efdSGlen Barber Some more zones have been turned into links, when they differed 3122ba2b2efdSGlen Barber from existing zones only for older timestamps. As usual, 3123f2fcff28SPhilip Paeps these changes affect UT offsets in pre-1970 timestamps only. 3124ba2b2efdSGlen Barber Their old contents have been moved to the 'backzone' file. 3125ba2b2efdSGlen Barber The affected zones are: Africa/Blantyre, Africa/Bujumbura, 3126ba2b2efdSGlen Barber Africa/Gaborone, Africa/Harare, Africa/Kigali, Africa/Lubumbashi, 3127ba2b2efdSGlen Barber Africa/Lusaka, Africa/Maseru, and Africa/Mbabane. 3128ba2b2efdSGlen Barber 3129ba2b2efdSGlen Barber Changes affecting code 3130ba2b2efdSGlen Barber 3131ba2b2efdSGlen Barber zdump -V and -v now output gmtoff= values on all platforms, 3132ba2b2efdSGlen Barber not merely on platforms defining TM_GMTOFF. 3133ba2b2efdSGlen Barber 3134ba2b2efdSGlen Barber The tz library's localtime and mktime functions now set tzname to a value 3135ba2b2efdSGlen Barber appropriate for the requested timestamp, and zdump now uses this 3136ba2b2efdSGlen Barber on platforms not defining TM_ZONE, fixing a 2014g regression. 3137ba2b2efdSGlen Barber (Thanks to Tim Parenti for reporting the problem.) 3138ba2b2efdSGlen Barber 3139ba2b2efdSGlen Barber The tz library no longer sets tzname if localtime or mktime fails. 3140ba2b2efdSGlen Barber 3141ba2b2efdSGlen Barber zdump -c no longer mishandles transitions near year boundaries. 3142ba2b2efdSGlen Barber (Thanks to Tim Parenti for reporting the problem.) 3143ba2b2efdSGlen Barber 3144ba2b2efdSGlen Barber An access to uninitialized data has been fixed. 3145ba2b2efdSGlen Barber (Thanks to Jörg Richter for reporting the problem.) 3146ba2b2efdSGlen Barber 3147ba2b2efdSGlen Barber When THREAD_SAFE is defined, the code ports to the C11 memory model. 3148ba2b2efdSGlen Barber A memory leak has been fixed if ALL_STATE and THREAD_SAFE are defined 3149ba2b2efdSGlen Barber and two threads race to initialize data used by gmtime-like functions. 3150ba2b2efdSGlen Barber (Thanks to Andy Heninger for reporting the problems.) 3151ba2b2efdSGlen Barber 3152ba2b2efdSGlen Barber Changes affecting build procedure 3153ba2b2efdSGlen Barber 3154*259e2ad7SPhilip Paeps 'make check' now checks better for properly sorted data. 3155ba2b2efdSGlen Barber 3156ba2b2efdSGlen Barber Changes affecting documentation and commentary 3157ba2b2efdSGlen Barber 3158ba2b2efdSGlen Barber zdump's gmtoff=N output is now documented, and its isdst=D output 3159ba2b2efdSGlen Barber is now documented to possibly output D values other than 0 or 1. 3160ba2b2efdSGlen Barber 3161ba2b2efdSGlen Barber zdump -c's treatment of years is now documented to use the 3162ba2b2efdSGlen Barber Gregorian calendar and Universal Time without leap seconds, 3163ba2b2efdSGlen Barber and its behavior at cutoff boundaries is now documented better. 3164ba2b2efdSGlen Barber (Thanks to Arthur David Olson and Tim Parenti for reporting the problems.) 3165ba2b2efdSGlen Barber 3166ba2b2efdSGlen Barber Programs are now documented to use the proleptic Gregorian calendar. 3167ba2b2efdSGlen Barber (Thanks to Alan Barrett for the suggestion.) 3168ba2b2efdSGlen Barber 3169ba2b2efdSGlen Barber Fractional-second GMT offsets have been documented for civil time 3170ba2b2efdSGlen Barber in 19th-century Chennai, Jakarta, and New York. 3171ba2b2efdSGlen Barber 3172ba2b2efdSGlen Barber 3173ba2b2efdSGlen BarberRelease 2014g - 2014-08-28 12:31:23 -0700 3174ba2b2efdSGlen Barber 3175ba2b2efdSGlen Barber Changes affecting future timestamps 3176ba2b2efdSGlen Barber 3177ba2b2efdSGlen Barber Turks & Caicos is switching from US eastern time to UT -04 3178ba2b2efdSGlen Barber year-round, modeled as a switch on 2014-11-02 at 02:00. 3179ba2b2efdSGlen Barber [As noted in 2014j, this switch was later delayed.] 3180ba2b2efdSGlen Barber 3181ba2b2efdSGlen Barber Changes affecting past timestamps 3182ba2b2efdSGlen Barber 3183ba2b2efdSGlen Barber Time in Russia or the USSR before 1926 or so has been corrected by 3184ba2b2efdSGlen Barber a few seconds in the following zones: Asia/Irkutsk, 3185ba2b2efdSGlen Barber Asia/Krasnoyarsk, Asia/Omsk, Asia/Samarkand, Asia/Tbilisi, 3186ba2b2efdSGlen Barber Asia/Vladivostok, Asia/Yakutsk, Europe/Riga, Europe/Samara. For 3187ba2b2efdSGlen Barber Asia/Yekaterinburg the correction is a few minutes. (Thanks to 3188ba2b2efdSGlen Barber Vladimir Karpinsky.) 3189ba2b2efdSGlen Barber 3190ba2b2efdSGlen Barber The Portuguese decree of 1911-05-26 took effect on 1912-01-01. 3191ba2b2efdSGlen Barber This affects 1911 timestamps in Africa/Bissau, Africa/Luanda, 3192ba2b2efdSGlen Barber Atlantic/Azores, and Atlantic/Madeira. Also, Lisbon's pre-1912 3193ba2b2efdSGlen Barber GMT offset was -0:36:45 (rounded from -0:36:44.68), not -0:36:32. 3194ba2b2efdSGlen Barber (Thanks to Stephen Colebourne for pointing to the decree.) 3195ba2b2efdSGlen Barber 3196ba2b2efdSGlen Barber Asia/Dhaka ended DST on 2009-12-31 at 24:00, not 23:59. 3197ba2b2efdSGlen Barber 3198ba2b2efdSGlen Barber A new file 'backzone' contains data which may appeal to 3199ba2b2efdSGlen Barber connoisseurs of old timestamps, although it is out of scope for 3200ba2b2efdSGlen Barber the tz database, is often poorly sourced, and contains some data 3201ba2b2efdSGlen Barber that is known to be incorrect. The new file is not recommended 3202ba2b2efdSGlen Barber for ordinary use and its entries are not installed by default. 3203ba2b2efdSGlen Barber (Thanks to Lester Caine for the high-quality Jersey, Guernsey, and 3204ba2b2efdSGlen Barber Isle of Man entries.) 3205ba2b2efdSGlen Barber 3206ba2b2efdSGlen Barber Some more zones have been turned into links, when they differed 3207ba2b2efdSGlen Barber from existing zones only for older timestamps. As usual, 3208f2fcff28SPhilip Paeps these changes affect UT offsets in pre-1970 timestamps only. 3209ba2b2efdSGlen Barber Their old contents have been moved to the 'backzone' file. 3210ba2b2efdSGlen Barber The affected zones are: Africa/Bangui, Africa/Brazzaville, 3211ba2b2efdSGlen Barber Africa/Douala, Africa/Kinshasa, Africa/Libreville, Africa/Luanda, 3212ba2b2efdSGlen Barber Africa/Malabo, Africa/Niamey, and Africa/Porto-Novo. 3213ba2b2efdSGlen Barber 3214ba2b2efdSGlen Barber Changes affecting code 3215ba2b2efdSGlen Barber 3216ba2b2efdSGlen Barber Unless NETBSD_INSPIRED is defined to 0, the tz library now 3217ba2b2efdSGlen Barber supplies functions for creating and using objects that represent 3218ba2b2efdSGlen Barber timezones. The new functions are tzalloc, tzfree, localtime_rz, 3219ba2b2efdSGlen Barber mktime_z, and (if STD_INSPIRED is also defined) posix2time_z and 3220ba2b2efdSGlen Barber time2posix_z. They are intended for performance: for example, 3221ba2b2efdSGlen Barber localtime_rz (unlike localtime_r) is trivially thread-safe without 3222ba2b2efdSGlen Barber locking. (Thanks to Christos Zoulas for proposing NetBSD-inspired 3223ba2b2efdSGlen Barber functions, and to Alan Barrett and Jonathan Lennox for helping to 3224ba2b2efdSGlen Barber debug the change.) 3225ba2b2efdSGlen Barber 3226ba2b2efdSGlen Barber zdump now builds with the tz library unless USE_LTZ is defined to 0, 3227ba2b2efdSGlen Barber This lets zdump use tz features even if the system library lacks them. 3228ba2b2efdSGlen Barber To build zdump with the system library, use 'make CFLAGS=-DUSE_LTZ=0 3229ba2b2efdSGlen Barber TZDOBJS=zdump.o CHECK_TIME_T_ALTERNATIVES='. 3230ba2b2efdSGlen Barber 3231ba2b2efdSGlen Barber zdump now uses localtime_rz if available, as it's significantly faster, 3232ba2b2efdSGlen Barber and it can help zdump better diagnose invalid timezone names. 3233ba2b2efdSGlen Barber Define HAVE_LOCALTIME_RZ to 0 to suppress this. HAVE_LOCALTIME_RZ 3234ba2b2efdSGlen Barber defaults to 1 if NETBSD_INSPIRED && USE_LTZ. When localtime_rz is 3235ba2b2efdSGlen Barber not available, zdump now uses localtime_r and tzset if available, 3236ba2b2efdSGlen Barber as this is a bit cleaner and faster than plain localtime. Compile 3237ba2b2efdSGlen Barber with -DHAVE_LOCALTIME_R=0 and/or -DHAVE_TZSET=0 if your system 3238ba2b2efdSGlen Barber lacks these two functions. 3239ba2b2efdSGlen Barber 3240ba2b2efdSGlen Barber If THREAD_SAFE is defined to 1, the tz library is now thread-safe. 3241ba2b2efdSGlen Barber Although not needed for tz's own applications, which are single-threaded, 3242ba2b2efdSGlen Barber this supports POSIX better if the tz library is used in multithreaded apps. 3243ba2b2efdSGlen Barber 3244ba2b2efdSGlen Barber Some crashes have been fixed when zdump or the tz library is given 3245ba2b2efdSGlen Barber invalid or outlandish input. 3246ba2b2efdSGlen Barber 3247ba2b2efdSGlen Barber The tz library no longer mishandles leap seconds on platforms with 3248ba2b2efdSGlen Barber unsigned time_t in timezones that lack ordinary transitions after 1970. 3249ba2b2efdSGlen Barber 3250ba2b2efdSGlen Barber The tz code now attempts to infer TM_GMTOFF and TM_ZONE if not 3251ba2b2efdSGlen Barber already defined, to make it easier to configure on common platforms. 3252ba2b2efdSGlen Barber Define NO_TM_GMTOFF and NO_TM_ZONE to suppress this. 3253ba2b2efdSGlen Barber 3254ba2b2efdSGlen Barber Unless the new macro UNINIT_TRAP is defined to 1, the tz code now 3255ba2b2efdSGlen Barber assumes that reading uninitialized memory yields garbage values 3256ba2b2efdSGlen Barber but does not cause other problems such as traps. 3257ba2b2efdSGlen Barber 3258ba2b2efdSGlen Barber If TM_GMTOFF is defined and UNINIT_TRAP is 0, mktime is now 3259ba2b2efdSGlen Barber more likely to guess right for ambiguous timestamps near 3260ba2b2efdSGlen Barber transitions where tm_isdst does not change. 3261ba2b2efdSGlen Barber 3262ba2b2efdSGlen Barber If HAVE_STRFTIME_L is defined to 1, the tz library now defines 3263ba2b2efdSGlen Barber strftime_l for compatibility with recent versions of POSIX. 3264ba2b2efdSGlen Barber Only the C locale is supported, though. HAVE_STRFTIME_L defaults 3265ba2b2efdSGlen Barber to 1 on recent POSIX versions, and to 0 otherwise. 3266ba2b2efdSGlen Barber 3267ba2b2efdSGlen Barber tzselect -c now uses a hybrid distance measure that works better 3268ba2b2efdSGlen Barber in Africa. (Thanks to Alan Barrett for noting the problem.) 3269ba2b2efdSGlen Barber 3270ba2b2efdSGlen Barber The C source code now ports to NetBSD when GCC_DEBUG_FLAGS is used, 3271ba2b2efdSGlen Barber or when time_tz is defined. 3272ba2b2efdSGlen Barber 3273ba2b2efdSGlen Barber When HAVE_UTMPX_H is set the 'date' command now builds on systems 3274ba2b2efdSGlen Barber whose <utmpx.h> file does not define WTMPX_FILE, and when setting 3275ba2b2efdSGlen Barber the date it updates the wtmpx file if _PATH_WTMPX is defined. 3276ba2b2efdSGlen Barber This affects GNU/Linux and similar systems. 3277ba2b2efdSGlen Barber 3278ba2b2efdSGlen Barber For easier maintenance later, some C code has been simplified, 3279ba2b2efdSGlen Barber some lint has been removed, and the code has been tweaked so that 3280ba2b2efdSGlen Barber plain 'make' is more likely to work. 3281ba2b2efdSGlen Barber 3282ba2b2efdSGlen Barber The C type 'bool' is now used for boolean values, instead of 'int'. 3283ba2b2efdSGlen Barber 3284ba2b2efdSGlen Barber The long-obsolete LOCALE_HOME code has been removed. 3285ba2b2efdSGlen Barber 3286ba2b2efdSGlen Barber The long-obsolete 'gtime' function has been removed. 3287ba2b2efdSGlen Barber 3288ba2b2efdSGlen Barber Changes affecting build procedure 3289ba2b2efdSGlen Barber 3290ba2b2efdSGlen Barber 'zdump' no longer links in ialloc.o, as it's not needed. 3291ba2b2efdSGlen Barber 3292ba2b2efdSGlen Barber 'make check_time_t_alternatives' no longer assumes GNU diff. 3293ba2b2efdSGlen Barber 3294ba2b2efdSGlen Barber Changes affecting distribution tarballs 3295ba2b2efdSGlen Barber 3296ba2b2efdSGlen Barber The files checktab.awk and zoneinfo2tdf.pl are now distributed in 3297ba2b2efdSGlen Barber the tzdata tarball instead of the tzcode tarball, since they help 3298ba2b2efdSGlen Barber maintain the data. The NEWS and Theory files are now also 3299ba2b2efdSGlen Barber distributed in the tzdata tarball, as they're relevant for data. 3300ba2b2efdSGlen Barber (Thanks to Alan Barrett for pointing this out.) Also, the 3301ba2b2efdSGlen Barber leapseconds.awk file is no longer distributed in the tzcode 3302ba2b2efdSGlen Barber tarball, since it belongs in the tzdata tarball (where 2014f 3303ba2b2efdSGlen Barber inadvertently also distributed it). 3304ba2b2efdSGlen Barber 3305ba2b2efdSGlen Barber Changes affecting documentation and commentary 3306ba2b2efdSGlen Barber 3307ba2b2efdSGlen Barber A new file CONTRIBUTING is distributed. (Thanks to Tim Parenti for 3308ba2b2efdSGlen Barber suggesting a CONTRIBUTING file, and to Tony Finch and Walter Harms 3309ba2b2efdSGlen Barber for debugging it.) 3310ba2b2efdSGlen Barber 3311ba2b2efdSGlen Barber The man pages have been updated to use function prototypes, 3312ba2b2efdSGlen Barber to document thread-safe variants like localtime_r, and to document 3313ba2b2efdSGlen Barber the NetBSD-inspired functions tzalloc, tzfree, localtime_rz, and 3314ba2b2efdSGlen Barber mktime_z. 3315ba2b2efdSGlen Barber 3316ba2b2efdSGlen Barber The fields in Link lines have been renamed to be more descriptive 3317ba2b2efdSGlen Barber and more like the parameters of 'ln'. LINK-FROM has become TARGET, 3318ba2b2efdSGlen Barber and LINK-TO has become LINK-NAME. 3319ba2b2efdSGlen Barber 3320ba2b2efdSGlen Barber tz-link.htm mentions the IETF's tzdist working group; Windows 3321ba2b2efdSGlen Barber Runtime etc. (thanks to Matt Johnson); and HP-UX's tztab. 3322ba2b2efdSGlen Barber 3323ba2b2efdSGlen Barber Some broken URLs have been fixed in the commentary. (Thanks to 3324ba2b2efdSGlen Barber Lester Caine.) 3325ba2b2efdSGlen Barber 3326ba2b2efdSGlen Barber Commentary about Philippines DST has been updated, and commentary 3327ba2b2efdSGlen Barber on pre-1970 time in India has been added. 3328ba2b2efdSGlen Barber 3329ba2b2efdSGlen Barber 3330ba2b2efdSGlen BarberRelease 2014f - 2014-08-05 17:42:36 -0700 3331ba2b2efdSGlen Barber 3332ba2b2efdSGlen Barber Changes affecting future timestamps 3333ba2b2efdSGlen Barber 3334ba2b2efdSGlen Barber Russia will subtract an hour from most of its time zones on 2014-10-26 3335ba2b2efdSGlen Barber at 02:00 local time. (Thanks to Alexander Krivenyshev.) 3336ba2b2efdSGlen Barber There are a few exceptions: Magadan Oblast (Asia/Magadan) and Zabaykalsky 3337ba2b2efdSGlen Barber Krai are subtracting two hours; conversely, Chukotka Autonomous Okrug 3338ba2b2efdSGlen Barber (Asia/Anadyr), Kamchatka Krai (Asia/Kamchatka), Kemerovo Oblast 3339ba2b2efdSGlen Barber (Asia/Novokuznetsk), and the Samara Oblast and the Udmurt Republic 3340ba2b2efdSGlen Barber (Europe/Samara) are not changing their clocks. The changed zones are 3341ba2b2efdSGlen Barber Europe/Kaliningrad, Europe/Moscow, Europe/Simferopol, Europe/Volgograd, 3342ba2b2efdSGlen Barber Asia/Yekaterinburg, Asia/Omsk, Asia/Novosibirsk, Asia/Krasnoyarsk, 3343ba2b2efdSGlen Barber Asia/Irkutsk, Asia/Yakutsk, Asia/Vladivostok, Asia/Khandyga, 3344ba2b2efdSGlen Barber Asia/Sakhalin, and Asia/Ust-Nera; Asia/Magadan will have two hours 3345ba2b2efdSGlen Barber subtracted; and Asia/Novokuznetsk's time zone abbreviation is affected, 3346ba2b2efdSGlen Barber but not its UTC offset. Two zones are added: Asia/Chita (split 3347ba2b2efdSGlen Barber from Asia/Yakutsk, and also with two hours subtracted) and 3348ba2b2efdSGlen Barber Asia/Srednekolymsk (split from Asia/Magadan, but with only one hour 3349ba2b2efdSGlen Barber subtracted). (Thanks to Tim Parenti for much of the above.) 3350ba2b2efdSGlen Barber 3351ba2b2efdSGlen Barber Changes affecting time zone abbreviations 3352ba2b2efdSGlen Barber 3353ba2b2efdSGlen Barber Australian eastern time zone abbreviations are now AEST/AEDT not EST, 3354ba2b2efdSGlen Barber and similarly for the other Australian zones. That is, for eastern 3355ba2b2efdSGlen Barber standard and daylight saving time the abbreviations are AEST and AEDT 3356ba2b2efdSGlen Barber instead of the former EST for both; similarly, ACST/ACDT, ACWST/ACWDT, 3357ba2b2efdSGlen Barber and AWST/AWDT are now used instead of the former CST, CWST, and WST. 3358f2fcff28SPhilip Paeps This change does not affect UT offsets, only time zone abbreviations. 3359ba2b2efdSGlen Barber (Thanks to Rich Tibbett and many others.) 3360ba2b2efdSGlen Barber 3361ba2b2efdSGlen Barber Asia/Novokuznetsk shifts from NOVT to KRAT (remaining on UT +07) 3362ba2b2efdSGlen Barber effective 2014-10-26 at 02:00 local time. 3363ba2b2efdSGlen Barber 3364ba2b2efdSGlen Barber The time zone abbreviation for Xinjiang Time (observed in Ürümqi) 3365ba2b2efdSGlen Barber has been changed from URUT to XJT. (Thanks to Luther Ma.) 3366ba2b2efdSGlen Barber 3367ba2b2efdSGlen Barber Prefer MSK/MSD for Moscow time in Russia, even in other cities. 3368ba2b2efdSGlen Barber Similarly, prefer EET/EEST for eastern European time in Russia. 3369ba2b2efdSGlen Barber 3370ba2b2efdSGlen Barber Change time zone abbreviations in (western) Samoa to use "ST" and 3371ba2b2efdSGlen Barber "DT" suffixes, as this is more likely to match common practice. 3372ba2b2efdSGlen Barber Prefix "W" to (western) Samoa time when its standard-time offset 3373ba2b2efdSGlen Barber disagrees with that of American Samoa. 3374ba2b2efdSGlen Barber 3375ba2b2efdSGlen Barber America/Metlakatla now uses PST, not MeST, to abbreviate its time zone. 3376ba2b2efdSGlen Barber 3377ba2b2efdSGlen Barber Time zone abbreviations have been updated for Japan's two time 3378ba2b2efdSGlen Barber zones used 1896-1937. JWST now stands for Western Standard 3379ba2b2efdSGlen Barber Time, and JCST for Central Standard Time (formerly this was CJT). 3380ba2b2efdSGlen Barber These abbreviations are now used for time in Korea, Taiwan, 3381ba2b2efdSGlen Barber and Sakhalin while controlled by Japan. 3382ba2b2efdSGlen Barber 3383ba2b2efdSGlen Barber Changes affecting past timestamps 3384ba2b2efdSGlen Barber 3385ba2b2efdSGlen Barber China's five zones have been simplified to two, since the post-1970 3386ba2b2efdSGlen Barber differences in the other three seem to have been imaginary. The 3387ba2b2efdSGlen Barber zones Asia/Harbin, Asia/Chongqing, and Asia/Kashgar have been 3388ba2b2efdSGlen Barber removed; backwards-compatibility links still work, albeit with 3389ba2b2efdSGlen Barber different behaviors for timestamps before May 1980. Asia/Urumqi's 3390ba2b2efdSGlen Barber 1980 transition to UT +08 has been removed, so that it is now at 3391ba2b2efdSGlen Barber +06 and not +08. (Thanks to Luther Ma and to Alois Treindl; 3392ba2b2efdSGlen Barber Treindl sent helpful translations of two papers by Guo Qingsheng.) 3393ba2b2efdSGlen Barber 3394ba2b2efdSGlen Barber Some zones have been turned into links, when they differed from existing 3395f2fcff28SPhilip Paeps zones only for older UT offsets where data entries were likely invented. 3396f2fcff28SPhilip Paeps These changes affect UT offsets in pre-1970 timestamps only. This is 3397ba2b2efdSGlen Barber similar to the change in release 2013e, except this time for western 3398ba2b2efdSGlen Barber Africa. The affected zones are: Africa/Bamako, Africa/Banjul, 3399ba2b2efdSGlen Barber Africa/Conakry, Africa/Dakar, Africa/Freetown, Africa/Lome, 3400ba2b2efdSGlen Barber Africa/Nouakchott, Africa/Ouagadougou, Africa/Sao_Tome, and 3401ba2b2efdSGlen Barber Atlantic/St_Helena. This also affects the backwards-compatibility 3402ba2b2efdSGlen Barber link Africa/Timbuktu. (Thanks to Alan Barrett, Stephen Colebourne, 3403ba2b2efdSGlen Barber Tim Parenti, and David Patte for reporting problems in earlier 3404ba2b2efdSGlen Barber versions of this change.) 3405ba2b2efdSGlen Barber 3406ba2b2efdSGlen Barber Asia/Shanghai's pre-standard-time UT offset has been changed from 3407ba2b2efdSGlen Barber 8:05:57 to 8:05:43, the location of Xujiahui Observatory. Its 3408ba2b2efdSGlen Barber transition to standard time has been changed from 1928 to 1901. 3409ba2b2efdSGlen Barber 3410ba2b2efdSGlen Barber Asia/Taipei switched to JWST on 1896-01-01, then to JST on 1937-10-01, 3411ba2b2efdSGlen Barber then to CST on 1945-09-21 at 01:00, and did not observe DST in 1945. 3412ba2b2efdSGlen Barber In 1946 it observed DST from 05-15 through 09-30; in 1947 3413ba2b2efdSGlen Barber from 04-15 through 10-31; and in 1979 from 07-01 through 09-30. 3414ba2b2efdSGlen Barber (Thanks to Yu-Cheng Chuang.) 3415ba2b2efdSGlen Barber 3416ba2b2efdSGlen Barber Asia/Riyadh's transition to standard time is now 1947-03-14, not 1950. 3417ba2b2efdSGlen Barber 3418ba2b2efdSGlen Barber Europe/Helsinki's 1942 fall-back transition was 10-04 at 01:00, not 3419ba2b2efdSGlen Barber 10-03 at 00:00. (Thanks to Konstantin Hyppönen.) 3420ba2b2efdSGlen Barber 3421ba2b2efdSGlen Barber Pacific/Pago_Pago has been changed from UT -11:30 to -11 for the 3422ba2b2efdSGlen Barber period from 1911 to 1950. 3423ba2b2efdSGlen Barber 3424ba2b2efdSGlen Barber Pacific/Chatham has been changed to New Zealand standard time plus 3425ba2b2efdSGlen Barber 45 minutes for the period before 1957, reflecting a 1956 remark in 3426ba2b2efdSGlen Barber the New Zealand parliament. 3427ba2b2efdSGlen Barber 3428ba2b2efdSGlen Barber Europe/Budapest has several pre-1946 corrections: in 1918 the transition 3429ba2b2efdSGlen Barber out of DST was on 09-16, not 09-29; in 1919 it was on 11-24, not 09-15; in 3430ba2b2efdSGlen Barber 1945 it was on 11-01, not 11-03; in 1941 the transition to DST was 04-08 3431ba2b2efdSGlen Barber not 04-06 at 02:00; and there was no DST in 1920. 3432ba2b2efdSGlen Barber 3433ba2b2efdSGlen Barber Africa/Accra is now assumed to have observed DST from 1920 through 1935. 3434ba2b2efdSGlen Barber 3435ba2b2efdSGlen Barber Time in Russia before 1927 or so has been corrected by a few seconds in 3436ba2b2efdSGlen Barber the following zones: Europe/Moscow, Asia/Irkutsk, Asia/Tbilisi, 3437ba2b2efdSGlen Barber Asia/Tashkent, Asia/Vladivostok, Asia/Yekaterinburg, Europe/Helsinki, and 3438ba2b2efdSGlen Barber Europe/Riga. Also, Moscow's location has been changed to its Kilometer 0 3439ba2b2efdSGlen Barber point. (Thanks to Vladimir Karpinsky for the Moscow changes.) 3440ba2b2efdSGlen Barber 3441ba2b2efdSGlen Barber Changes affecting data format 3442ba2b2efdSGlen Barber 3443ba2b2efdSGlen Barber A new file 'zone1970.tab' supersedes 'zone.tab' in the installed data. 3444ba2b2efdSGlen Barber The new file's extended format allows multiple country codes per zone. 3445ba2b2efdSGlen Barber The older file is still installed but is deprecated; its format is 3446ba2b2efdSGlen Barber not changing and it will still be distributed for a while, but new 3447ba2b2efdSGlen Barber applications should use the new file. 3448ba2b2efdSGlen Barber 3449ba2b2efdSGlen Barber The new file format simplifies maintenance of obscure locations. 3450ba2b2efdSGlen Barber To test this, it adds coverage for the Crozet Islands and the 3451ba2b2efdSGlen Barber Scattered Islands. (Thanks to Tobias Conradi and Antoine Leca.) 3452ba2b2efdSGlen Barber 3453ba2b2efdSGlen Barber The file 'iso3166.tab' is planned to switch from ASCII to UTF-8. 3454ba2b2efdSGlen Barber It is still ASCII now, but commentary about the switch has been added. 3455ba2b2efdSGlen Barber The new file 'zone1970.tab' already uses UTF-8. 3456ba2b2efdSGlen Barber 3457ba2b2efdSGlen Barber Changes affecting code 3458ba2b2efdSGlen Barber 3459ba2b2efdSGlen Barber 'localtime', 'mktime', etc. now use much less stack space if ALL_STATE 3460ba2b2efdSGlen Barber is defined. (Thanks to Elliott Hughes for reporting the problem.) 3461ba2b2efdSGlen Barber 3462ba2b2efdSGlen Barber 'zic' no longer mishandles input when ignoring case in locales that 3463ba2b2efdSGlen Barber are not compatible with English, e.g., unibyte Turkish locales when 3464ba2b2efdSGlen Barber compiled with HAVE_GETTEXT. 3465ba2b2efdSGlen Barber 3466ba2b2efdSGlen Barber Error diagnostics of 'zic' and 'yearistype' have been reworded so that 3467ba2b2efdSGlen Barber they no longer use ASCII '-' as if it were a dash. 3468ba2b2efdSGlen Barber 3469ba2b2efdSGlen Barber 'zic' now rejects output file names that contain '.' or '..' components. 3470ba2b2efdSGlen Barber (Thanks to Tim Parenti for reporting the problem.) 3471ba2b2efdSGlen Barber 3472ba2b2efdSGlen Barber 'zic -v' now warns about output file names that do not follow 3473ba2b2efdSGlen Barber POSIX rules, or that contain a digit or '.'. (Thanks to Arthur 3474ba2b2efdSGlen Barber David Olson for starting the ball rolling on this.) 3475ba2b2efdSGlen Barber 3476ba2b2efdSGlen Barber Some lint has been removed when using GCC_DEBUG_FLAGS with GCC 4.9.0. 3477ba2b2efdSGlen Barber 3478ba2b2efdSGlen Barber Changes affecting build procedure 3479ba2b2efdSGlen Barber 3480ba2b2efdSGlen Barber 'zic' no longer links in localtime.o and asctime.o, as they're not needed. 3481ba2b2efdSGlen Barber (Thanks to John Cochran.) 3482ba2b2efdSGlen Barber 3483ba2b2efdSGlen Barber Changes affecting documentation and commentary 3484ba2b2efdSGlen Barber 3485ba2b2efdSGlen Barber The 'Theory' file documents legacy names, the longstanding 3486ba2b2efdSGlen Barber exceptions to the POSIX-inspired file name rules. 3487ba2b2efdSGlen Barber 3488ba2b2efdSGlen Barber The 'zic' documentation clarifies the role of time types when 3489ba2b2efdSGlen Barber interpreting dates. (Thanks to Arthur David Olson.) 3490ba2b2efdSGlen Barber 3491ba2b2efdSGlen Barber Documentation and commentary now prefer UTF-8 to US-ASCII, 3492ba2b2efdSGlen Barber allowing the use of proper accents in foreign words and names. 3493ba2b2efdSGlen Barber Code and data have not changed because of this. (Thanks to 3494ba2b2efdSGlen Barber Garrett Wollman, Ian Abbott, and Guy Harris for helping to debug 3495ba2b2efdSGlen Barber this.) 3496ba2b2efdSGlen Barber 3497ba2b2efdSGlen Barber Non-HTML documentation and commentary now use plain-text URLs instead of 3498ba2b2efdSGlen Barber HTML insertions, and are more consistent about bracketing URLs when they 3499ba2b2efdSGlen Barber are not already surrounded by white space. (Thanks to suggestions by 3500ba2b2efdSGlen Barber Steffen Nurpmeso.) 3501ba2b2efdSGlen Barber 3502ba2b2efdSGlen Barber There is new commentary about Xujiahui Observatory, the five time-zone 3503ba2b2efdSGlen Barber project in China from 1918 to 1949, timekeeping in Japanese-occupied 3504ba2b2efdSGlen Barber Shanghai, and Tibet Time in the 1950s. The sharp-eyed can spot the 3505ba2b2efdSGlen Barber warlord Jin Shuren in the data. 3506ba2b2efdSGlen Barber 3507ba2b2efdSGlen Barber Commentary about the coverage of each Russian zone has been standardized. 35082865ab3fSPhilip Paeps (Thanks to Tim Parenti.) 3509ba2b2efdSGlen Barber 3510ba2b2efdSGlen Barber There is new commentary about contemporary timekeeping in Ethiopia. 3511ba2b2efdSGlen Barber 3512ba2b2efdSGlen Barber Obsolete comments about a 2007 proposal for DST in Kuwait has been removed. 3513ba2b2efdSGlen Barber 3514ba2b2efdSGlen Barber There is new commentary about time in Poland in 1919. 3515ba2b2efdSGlen Barber 3516ba2b2efdSGlen Barber Proper credit has been given to DST inventor George Vernon Hudson. 3517ba2b2efdSGlen Barber 3518ba2b2efdSGlen Barber Commentary about time in Metlakatla, AK and Resolute, NU has been 3519ba2b2efdSGlen Barber improved, with a new source for the former. 3520ba2b2efdSGlen Barber 3521ba2b2efdSGlen Barber In zone.tab, Pacific/Easter no longer mentions Salas y Gómez, as it 3522ba2b2efdSGlen Barber is uninhabited. 3523ba2b2efdSGlen Barber 3524ba2b2efdSGlen Barber Commentary about permanent Antarctic bases has been updated. 3525ba2b2efdSGlen Barber 3526ba2b2efdSGlen Barber Several typos have been corrected. (Thanks to Tim Parenti for 3527ba2b2efdSGlen Barber contributing some of these fixes.) 3528ba2b2efdSGlen Barber 3529ba2b2efdSGlen Barber tz-link.htm now mentions the JavaScript libraries Moment Timezone, 3530ba2b2efdSGlen Barber TimezoneJS.Date, Walltime-js, and Timezone. (Thanks to a heads-up 3531ba2b2efdSGlen Barber from Matt Johnson.) Also, it mentions the Go 'latlong' package. 3532ba2b2efdSGlen Barber (Thanks to a heads-up from Dirkjan Ochtman.) 3533ba2b2efdSGlen Barber 3534ba2b2efdSGlen Barber The files usno1988, usno1989, usno1989a, usno1995, usno1997, and usno1998 3535ba2b2efdSGlen Barber have been removed. These obsolescent US Naval Observatory entries were no 3536ba2b2efdSGlen Barber longer helpful for maintenance. (Thanks to Tim Parenti for the suggestion.) 3537ba2b2efdSGlen Barber 3538ba2b2efdSGlen Barber 3539ba2b2efdSGlen BarberRelease 2014e - 2014-06-12 21:53:52 -0700 3540ba2b2efdSGlen Barber 3541ba2b2efdSGlen Barber Changes affecting near-future timestamps 3542ba2b2efdSGlen Barber 3543ba2b2efdSGlen Barber Egypt's 2014 Ramadan-based transitions are June 26 and July 31 at 24:00. 3544ba2b2efdSGlen Barber (Thanks to Imed Chihi.) Guess that from 2015 on Egypt will temporarily 3545ba2b2efdSGlen Barber switch to standard time at 24:00 the last Thursday before Ramadan, and 3546ba2b2efdSGlen Barber back to DST at 00:00 the first Friday after Ramadan. 3547ba2b2efdSGlen Barber 3548ba2b2efdSGlen Barber Similarly, Morocco's are June 28 at 03:00 and August 2 at 02:00. (Thanks 3549ba2b2efdSGlen Barber to Milamber Space Network.) Guess that from 2015 on Morocco will 3550ba2b2efdSGlen Barber temporarily switch to standard time at 03:00 the last Saturday before 3551ba2b2efdSGlen Barber Ramadan, and back to DST at 02:00 the first Saturday after Ramadan. 3552ba2b2efdSGlen Barber 3553ba2b2efdSGlen Barber Changes affecting past timestamps 3554ba2b2efdSGlen Barber 3555ba2b2efdSGlen Barber The abbreviation "MSM" (Moscow Midsummer Time) is now used instead of 3556ba2b2efdSGlen Barber "MSD" for Moscow's double daylight time in summer 1921. Also, a typo 3557ba2b2efdSGlen Barber "VLASST" has been repaired to be "VLAST" for Vladivostok summer time 3558ba2b2efdSGlen Barber in 1991. (Thanks to Hank W. for reporting the problems.) 3559ba2b2efdSGlen Barber 3560ba2b2efdSGlen Barber Changes affecting commentary 3561ba2b2efdSGlen Barber 3562ba2b2efdSGlen Barber tz-link.htm now cites RFC 7265 for jCal, mentions PTP and the 3563ba2b2efdSGlen Barber draft CalDAV extension, updates URLs for TSP, TZInfo, IATA, and 3564ba2b2efdSGlen Barber removes stale pointers to World Time Explorer and WORLDTIME. 3565ba2b2efdSGlen Barber 3566ba2b2efdSGlen Barber 3567ba2b2efdSGlen BarberRelease 2014d - 2014-05-27 21:34:40 -0700 3568ba2b2efdSGlen Barber 3569ba2b2efdSGlen Barber Changes affecting code 3570ba2b2efdSGlen Barber 3571ba2b2efdSGlen Barber zic no longer generates files containing timestamps before the Big Bang. 357289abb9f8SPhilip Paeps This works around GNOME glib bug 878 357389abb9f8SPhilip Paeps <https://gitlab.gnome.org/GNOME/glib/issues/878> 3574ba2b2efdSGlen Barber (Thanks to Leonardo Chiquitto for reporting the bug, and to 3575ba2b2efdSGlen Barber Arthur David Olson and James Cloos for suggesting improvements to the fix.) 3576ba2b2efdSGlen Barber 3577ba2b2efdSGlen Barber Changes affecting documentation 3578ba2b2efdSGlen Barber 3579ba2b2efdSGlen Barber tz-link.htm now mentions GNOME. 3580ba2b2efdSGlen Barber 3581ba2b2efdSGlen Barber 3582ba2b2efdSGlen BarberRelease 2014c - 2014-05-13 07:44:13 -0700 3583ba2b2efdSGlen Barber 3584ba2b2efdSGlen Barber Changes affecting near-future timestamps 3585ba2b2efdSGlen Barber 3586ba2b2efdSGlen Barber Egypt observes DST starting 2014-05-15 at 24:00. 3587ba2b2efdSGlen Barber (Thanks to Ahmad El-Dardiry and Gunther Vermier.) 3588ba2b2efdSGlen Barber Details have not been announced, except that DST will not be observed 3589ba2b2efdSGlen Barber during Ramadan. Guess that DST will stop during the same Ramadan dates as 3590ba2b2efdSGlen Barber Morocco, and that Egypt's future spring and fall transitions will be the 3591ba2b2efdSGlen Barber same as 2010 when it last observed DST, namely April's last Friday at 3592ba2b2efdSGlen Barber 00:00 to September's last Thursday at 23:00 standard time. Also, guess 3593ba2b2efdSGlen Barber that Ramadan transitions will be at 00:00 standard time. 3594ba2b2efdSGlen Barber 3595ba2b2efdSGlen Barber Changes affecting code 3596ba2b2efdSGlen Barber 3597ba2b2efdSGlen Barber zic now generates transitions for minimum time values, eliminating guesswork 3598ba2b2efdSGlen Barber when handling low-valued timestamps. (Thanks to Arthur David Olson.) 3599ba2b2efdSGlen Barber 3600ba2b2efdSGlen Barber Port to Cygwin sans glibc. (Thanks to Arthur David Olson.) 3601ba2b2efdSGlen Barber 3602ba2b2efdSGlen Barber Changes affecting commentary and documentation 3603ba2b2efdSGlen Barber 3604ba2b2efdSGlen Barber Remove now-confusing comment about Jordan. (Thanks to Oleksii Nochovnyi.) 3605ba2b2efdSGlen Barber 3606ba2b2efdSGlen Barber 3607ba2b2efdSGlen BarberRelease 2014b - 2014-03-24 21:28:50 -0700 3608ba2b2efdSGlen Barber 3609ba2b2efdSGlen Barber Changes affecting near-future timestamps 3610ba2b2efdSGlen Barber 3611ba2b2efdSGlen Barber Crimea switches to Moscow time on 2014-03-30 at 02:00 local time. 3612ba2b2efdSGlen Barber (Thanks to Alexander Krivenyshev.) Move its zone.tab entry from UA to RU. 3613ba2b2efdSGlen Barber 3614ba2b2efdSGlen Barber New entry for Troll station, Antarctica. (Thanks to Paul-Inge Flakstad and 3615ba2b2efdSGlen Barber Bengt-Inge Larsson.) This is currently an approximation; a better version 3616ba2b2efdSGlen Barber will require the zic and localtime fixes mentioned below, and the plan is 3617ba2b2efdSGlen Barber to wait for a while until at least the zic fixes propagate. 3618ba2b2efdSGlen Barber 3619ba2b2efdSGlen Barber Changes affecting code 3620ba2b2efdSGlen Barber 3621ba2b2efdSGlen Barber 'zic' and 'localtime' no longer reject locations needing four transitions 3622ba2b2efdSGlen Barber per year for the foreseeable future. (Thanks to Andrew Main (Zefram).) 3623ba2b2efdSGlen Barber Also, 'zic' avoids some unlikely failures due to integer overflow. 3624ba2b2efdSGlen Barber 3625ba2b2efdSGlen Barber Changes affecting build procedure 3626ba2b2efdSGlen Barber 3627ba2b2efdSGlen Barber 'make check' now detects Rule lines defined but never used. 3628ba2b2efdSGlen Barber The NZAQ rules, an instance of this problem, have been removed. 3629ba2b2efdSGlen Barber 3630ba2b2efdSGlen Barber Changes affecting commentary and documentation 3631ba2b2efdSGlen Barber 3632ba2b2efdSGlen Barber Fix Tuesday/Thursday typo in description of time in Israel. 3633ba2b2efdSGlen Barber (Thanks to Bert Katz via Pavel Kharitonov and Mike Frysinger.) 3634ba2b2efdSGlen Barber 3635ba2b2efdSGlen Barber Microsoft Windows 8.1 doesn't support tz database names. (Thanks 3636ba2b2efdSGlen Barber to Donald MacQueen.) Instead, the Microsoft Windows Store app 3637ba2b2efdSGlen Barber library supports them. 3638ba2b2efdSGlen Barber 3639ba2b2efdSGlen Barber Add comments about Johnston Island time in the 1960s. 3640ba2b2efdSGlen Barber (Thanks to Lyle McElhaney.) 3641ba2b2efdSGlen Barber 3642ba2b2efdSGlen Barber Morocco's 2014 DST start will be as predicted. 3643ba2b2efdSGlen Barber (Thanks to Sebastien Willemijns.) 3644ba2b2efdSGlen Barber 3645ba2b2efdSGlen Barber 3646ba2b2efdSGlen BarberRelease 2014a - 2014-03-07 23:30:29 -0800 3647ba2b2efdSGlen Barber 3648ba2b2efdSGlen Barber Changes affecting near-future timestamps 3649ba2b2efdSGlen Barber 3650ba2b2efdSGlen Barber Turkey begins DST on 2014-03-31, not 03-30. (Thanks to Faruk Pasin for 3651ba2b2efdSGlen Barber the heads-up, and to Tim Parenti for simplifying the update.) 3652ba2b2efdSGlen Barber 3653ba2b2efdSGlen Barber Changes affecting past timestamps 3654ba2b2efdSGlen Barber 3655*259e2ad7SPhilip Paeps Fiji ended DST on 2014-01-19 at 02:00, not the previously scheduled 03:00. 3656ba2b2efdSGlen Barber (Thanks to Steffen Thorsen.) 3657ba2b2efdSGlen Barber 3658ba2b2efdSGlen Barber Ukraine switched from Moscow to Eastern European time on 1990-07-01 3659ba2b2efdSGlen Barber (not 1992-01-01), and observed DST during the entire next winter. 3660ba2b2efdSGlen Barber (Thanks to Vladimir in Moscow via Alois Treindl.) 3661ba2b2efdSGlen Barber 3662ba2b2efdSGlen Barber In 1988 Israel observed DST from 04-10 to 09-04, not 04-09 to 09-03. 3663ba2b2efdSGlen Barber (Thanks to Avigdor Finkelstein.) 3664ba2b2efdSGlen Barber 3665ba2b2efdSGlen Barber Changes affecting code 3666ba2b2efdSGlen Barber 3667ba2b2efdSGlen Barber A uninitialized-storage bug in 'localtime' has been fixed. 3668ba2b2efdSGlen Barber (Thanks to Logan Chien.) 3669ba2b2efdSGlen Barber 3670ba2b2efdSGlen Barber Changes affecting the build procedure 3671ba2b2efdSGlen Barber 3672ba2b2efdSGlen Barber The settings for 'make check_web' now default to Ubuntu 13.10. 3673ba2b2efdSGlen Barber 3674ba2b2efdSGlen Barber Changes affecting commentary and documentation 3675ba2b2efdSGlen Barber 3676ba2b2efdSGlen Barber The boundary of the US Pacific time zone is given more accurately. 3677ba2b2efdSGlen Barber (Thanks to Alan Mintz.) 3678ba2b2efdSGlen Barber 3679ba2b2efdSGlen Barber Chile's 2014 DST will be as predicted. (Thanks to José Miguel Garrido.) 3680ba2b2efdSGlen Barber 3681ba2b2efdSGlen Barber Paraguay's 2014 DST will be as predicted. (Thanks to Carlos Raúl Perasso.) 3682ba2b2efdSGlen Barber 3683ba2b2efdSGlen Barber Better descriptions of countries with same time zone history as 3684ba2b2efdSGlen Barber Trinidad and Tobago since 1970. (Thanks to Alan Barrett for suggestion.) 3685ba2b2efdSGlen Barber 3686ba2b2efdSGlen Barber Several changes affect tz-link.htm, the main web page. 3687ba2b2efdSGlen Barber 3688ba2b2efdSGlen Barber Mention Time.is (thanks to Even Scharning) and WX-now (thanks to 3689ba2b2efdSGlen Barber David Braverman). 3690ba2b2efdSGlen Barber 3691ba2b2efdSGlen Barber Mention xCal (Internet RFC 6321) and jCal. 3692ba2b2efdSGlen Barber 3693ba2b2efdSGlen Barber Microsoft has some support for tz database names. 3694ba2b2efdSGlen Barber 3695ba2b2efdSGlen Barber CLDR data formats include both XML and JSON. 3696ba2b2efdSGlen Barber 3697ba2b2efdSGlen Barber Mention Maggiolo's map of solar vs standard time. 3698ba2b2efdSGlen Barber (Thanks to Arthur David Olson.) 3699ba2b2efdSGlen Barber 3700ba2b2efdSGlen Barber Mention TZ4Net. (Thanks to Matt Johnson.) 3701ba2b2efdSGlen Barber 3702ba2b2efdSGlen Barber Mention the timezone-olson Haskell package. 3703ba2b2efdSGlen Barber 3704ba2b2efdSGlen Barber Mention zeitverschiebung.net. (Thanks to Martin Jäger.) 3705ba2b2efdSGlen Barber 3706ba2b2efdSGlen Barber Remove moribund links to daylight-savings-time.info and to 3707ba2b2efdSGlen Barber Simple Timer + Clocks. 3708ba2b2efdSGlen Barber 3709ba2b2efdSGlen Barber Update two links. (Thanks to Oscar van Vlijmen.) 3710ba2b2efdSGlen Barber 3711ba2b2efdSGlen Barber Fix some formatting glitches, e.g., remove random newlines from 3712ba2b2efdSGlen Barber abbr elements' title attributes. 3713ba2b2efdSGlen Barber 3714ba2b2efdSGlen Barber 3715ba2b2efdSGlen BarberRelease 2013i - 2013-12-17 07:25:23 -0800 3716ba2b2efdSGlen Barber 3717ba2b2efdSGlen Barber Changes affecting near-future timestamps: 3718ba2b2efdSGlen Barber 3719ba2b2efdSGlen Barber Jordan switches back to standard time at 00:00 on December 20, 2013. 3720ba2b2efdSGlen Barber The 2006-2011 transition schedule is planned to resume in 2014. 3721ba2b2efdSGlen Barber (Thanks to Steffen Thorsen.) 3722ba2b2efdSGlen Barber 3723ba2b2efdSGlen Barber Changes affecting past timestamps: 3724ba2b2efdSGlen Barber 3725ba2b2efdSGlen Barber In 2004, Cuba began DST on March 28, not April 4. 3726ba2b2efdSGlen Barber (Thanks to Steffen Thorsen.) 3727ba2b2efdSGlen Barber 3728ba2b2efdSGlen Barber Changes affecting code 3729ba2b2efdSGlen Barber 3730ba2b2efdSGlen Barber The compile-time flag NOSOLAR has been removed, as nowadays the 3731ba2b2efdSGlen Barber benefit of slightly shrinking runtime table size is outweighed by the 3732ba2b2efdSGlen Barber cost of disallowing potential future updates that exceed old limits. 3733ba2b2efdSGlen Barber 3734ba2b2efdSGlen Barber Changes affecting documentation and commentary 3735ba2b2efdSGlen Barber 3736ba2b2efdSGlen Barber The files solar87, solar88, and solar89 are no longer distributed. 3737ba2b2efdSGlen Barber They were a negative experiment - that is, a demonstration that 3738ba2b2efdSGlen Barber tz data can represent solar time only with some difficulty and error. 3739ba2b2efdSGlen Barber Their presence in the distribution caused confusion, as Riyadh 3740ba2b2efdSGlen Barber civil time was generally not solar time in those years. 3741ba2b2efdSGlen Barber 3742ba2b2efdSGlen Barber tz-link.htm now mentions Noda Time. (Thanks to Matt Johnson.) 3743ba2b2efdSGlen Barber 3744ba2b2efdSGlen Barber 3745ba2b2efdSGlen BarberRelease 2013h - 2013-10-25 15:32:32 -0700 3746ba2b2efdSGlen Barber 3747ba2b2efdSGlen Barber Changes affecting current and future timestamps: 3748ba2b2efdSGlen Barber 3749ba2b2efdSGlen Barber Libya has switched its UT offset back to +02 without DST, instead 3750ba2b2efdSGlen Barber of +01 with DST. (Thanks to Even Scharning.) 3751ba2b2efdSGlen Barber 3752ba2b2efdSGlen Barber Western Sahara (Africa/El_Aaiun) uses Morocco's DST rules. 3753ba2b2efdSGlen Barber (Thanks to Gwillim Law.) 3754ba2b2efdSGlen Barber 3755ba2b2efdSGlen Barber Changes affecting future timestamps: 3756ba2b2efdSGlen Barber 3757ba2b2efdSGlen Barber Acre and (we guess) western Amazonas will switch from UT -04 to -05 3758ba2b2efdSGlen Barber on 2013-11-10. This affects America/Rio_Branco and America/Eirunepe. 3759ba2b2efdSGlen Barber (Thanks to Steffen Thorsen.) 3760ba2b2efdSGlen Barber 3761ba2b2efdSGlen Barber Add entries for DST transitions in Morocco in the year 2038. 3762ba2b2efdSGlen Barber This avoids some year-2038 glitches introduced in 2013g. 3763ba2b2efdSGlen Barber (Thanks to Yoshito Umaoka for reporting the problem.) 3764ba2b2efdSGlen Barber 3765ba2b2efdSGlen Barber Changes affecting API 3766ba2b2efdSGlen Barber 3767ba2b2efdSGlen Barber The 'tzselect' command no longer requires the 'select' command, 3768ba2b2efdSGlen Barber and should now work with /bin/sh on more platforms. It also works 3769ba2b2efdSGlen Barber around a bug in BusyBox awk before version 1.21.0. (Thanks to 3770ba2b2efdSGlen Barber Patrick 'P. J.' McDermott and Alan Barrett.) 3771ba2b2efdSGlen Barber 3772ba2b2efdSGlen Barber Changes affecting code 3773ba2b2efdSGlen Barber 3774ba2b2efdSGlen Barber Fix localtime overflow bugs with 32-bit unsigned time_t. 3775ba2b2efdSGlen Barber 3776ba2b2efdSGlen Barber zdump no longer assumes sscanf returns maximal values on overflow. 3777ba2b2efdSGlen Barber 3778ba2b2efdSGlen Barber Changes affecting the build procedure 3779ba2b2efdSGlen Barber 3780ba2b2efdSGlen Barber The builder can specify which programs to use, if any, instead of 3781ba2b2efdSGlen Barber 'ar' and 'ranlib', and libtz.a is now built locally before being 3782ba2b2efdSGlen Barber installed. (Thanks to Michael Forney.) 3783ba2b2efdSGlen Barber 3784ba2b2efdSGlen Barber A dependency typo in the 'zdump' rule has been fixed. 3785ba2b2efdSGlen Barber (Thanks to Andrew Paprocki.) 3786ba2b2efdSGlen Barber 3787ba2b2efdSGlen Barber The Makefile has been simplified by assuming that 'mkdir -p' and 'cp -f' 3788ba2b2efdSGlen Barber work as specified by POSIX.2-1992 or later; this is portable nowadays. 3789ba2b2efdSGlen Barber 3790ba2b2efdSGlen Barber 'make clean' no longer removes 'leapseconds', since it's 3791ba2b2efdSGlen Barber host-independent and is part of the distribution. 3792ba2b2efdSGlen Barber 3793ba2b2efdSGlen Barber The unused makefile macros TZCSRCS, TZDSRCS, DATESRCS have been removed. 3794ba2b2efdSGlen Barber 3795ba2b2efdSGlen Barber Changes affecting documentation and commentary 3796ba2b2efdSGlen Barber 3797ba2b2efdSGlen Barber tz-link.htm now mentions TC TIMEZONE's draft time zone service protocol 3798ba2b2efdSGlen Barber (thanks to Mike Douglass) and TimezoneJS.Date (thanks to Jim Fehrle). 3799ba2b2efdSGlen Barber 3800ba2b2efdSGlen Barber Update URLs in tz-link page. Add URLs for Microsoft Windows, since 3801ba2b2efdSGlen Barber 8.1 introduces tz support. Remove URLs for Tru64 and UnixWare (no 3802ba2b2efdSGlen Barber longer maintained) and for old advisories. SOFA now does C. 3803ba2b2efdSGlen Barber 3804ba2b2efdSGlen BarberRelease 2013g - 2013-09-30 21:08:26 -0700 3805ba2b2efdSGlen Barber 3806ba2b2efdSGlen Barber Changes affecting current and near-future timestamps 3807ba2b2efdSGlen Barber 3808ba2b2efdSGlen Barber Morocco now observes DST from the last Sunday in March to the last 3809ba2b2efdSGlen Barber Sunday in October, not April to September respectively. (Thanks 3810ba2b2efdSGlen Barber to Steffen Thorsen.) 3811ba2b2efdSGlen Barber 3812ba2b2efdSGlen Barber Changes affecting 'zic' 3813ba2b2efdSGlen Barber 3814ba2b2efdSGlen Barber 'zic' now runs on platforms that lack both hard links and symlinks. 3815ba2b2efdSGlen Barber (Thanks to Theo Veenker for reporting the problem, for MinGW.) 3816ba2b2efdSGlen Barber Also, fix some bugs on platforms that lack hard links but have symlinks. 3817ba2b2efdSGlen Barber 3818ba2b2efdSGlen Barber 'zic -v' again warns that Asia/Tehran has no POSIX environment variable 3819ba2b2efdSGlen Barber to predict the far future, fixing a bug introduced in 2013e. 3820ba2b2efdSGlen Barber 3821ba2b2efdSGlen Barber Changes affecting the build procedure 3822ba2b2efdSGlen Barber 3823ba2b2efdSGlen Barber The 'leapseconds' file is again put into the tzdata tarball. 3824ba2b2efdSGlen Barber Also, 'leapseconds.awk', so tzdata is self-contained. (Thanks to 3825ba2b2efdSGlen Barber Matt Burgess and Ian Abbott.) The timestamps of these and other 3826ba2b2efdSGlen Barber dependent files in tarballs are adjusted more consistently. 3827ba2b2efdSGlen Barber 3828ba2b2efdSGlen Barber Changes affecting documentation and commentary 3829ba2b2efdSGlen Barber 3830ba2b2efdSGlen Barber The README file is now part of the data tarball as well as the code. 3831ba2b2efdSGlen Barber It now states that files are public domain unless otherwise specified. 3832ba2b2efdSGlen Barber (Thanks to Andrew Main (Zefram) for asking for clarifications.) 3833ba2b2efdSGlen Barber Its details about the 1989 release moved to a place of honor near 3834ba2b2efdSGlen Barber the end of NEWS. 3835ba2b2efdSGlen Barber 3836ba2b2efdSGlen Barber 3837ba2b2efdSGlen BarberRelease 2013f - 2013-09-24 23:37:36 -0700 3838ba2b2efdSGlen Barber 3839ba2b2efdSGlen Barber Changes affecting near-future timestamps 3840ba2b2efdSGlen Barber 3841ba2b2efdSGlen Barber Tocantins will very likely not observe DST starting this spring. 3842ba2b2efdSGlen Barber (Thanks to Steffen Thorsen.) 3843ba2b2efdSGlen Barber 3844ba2b2efdSGlen Barber Jordan will likely stay at UT +03 indefinitely, and will not fall 3845ba2b2efdSGlen Barber back this fall. 3846ba2b2efdSGlen Barber 3847ba2b2efdSGlen Barber Palestine will fall back at 00:00, not 01:00. (Thanks to Steffen Thorsen.) 3848ba2b2efdSGlen Barber 3849ba2b2efdSGlen Barber Changes affecting API 3850ba2b2efdSGlen Barber 3851ba2b2efdSGlen Barber The types of the global variables 'timezone' and 'altzone' (if present) 3852ba2b2efdSGlen Barber have been changed back to 'long'. This is required for 'timezone' 3853ba2b2efdSGlen Barber by POSIX, and for 'altzone' by common practice, e.g., Solaris 11. 3854ba2b2efdSGlen Barber These variables were originally 'long' in the tz code, but were 3855ba2b2efdSGlen Barber mistakenly changed to 'time_t' in 1987; nobody reported the 3856ba2b2efdSGlen Barber incompatibility until now. The difference matters on x32, where 3857ba2b2efdSGlen Barber 'long' is 32 bits and 'time_t' is 64. (Thanks to Elliott Hughes.) 3858ba2b2efdSGlen Barber 3859ba2b2efdSGlen Barber Changes affecting the build procedure 3860ba2b2efdSGlen Barber 3861ba2b2efdSGlen Barber Avoid long strings in leapseconds.awk to work around a mawk bug. 3862ba2b2efdSGlen Barber (Thanks to Cyril Baurand.) 3863ba2b2efdSGlen Barber 3864ba2b2efdSGlen Barber Changes affecting documentation and commentary 3865ba2b2efdSGlen Barber 3866ba2b2efdSGlen Barber New file 'NEWS' that contains release notes like this one. 3867ba2b2efdSGlen Barber 3868ba2b2efdSGlen Barber Paraguay's law does not specify DST transition time; 00:00 is customary. 3869ba2b2efdSGlen Barber (Thanks to Waldemar Villamayor-Venialbo.) 3870ba2b2efdSGlen Barber 3871ba2b2efdSGlen Barber Minor capitalization fixes. 3872ba2b2efdSGlen Barber 3873ba2b2efdSGlen Barber Changes affecting version-control only 3874ba2b2efdSGlen Barber 3875ba2b2efdSGlen Barber The experimental GitHub repository now contains annotated and 3876ba2b2efdSGlen Barber signed tags for recent releases, e.g., '2013e' for Release 2013e. 3877ba2b2efdSGlen Barber Releases are tagged starting with 2012e; earlier releases were 3878ba2b2efdSGlen Barber done differently, and tags would either not have a simple name or 3879ba2b2efdSGlen Barber not exactly match what was released. 3880ba2b2efdSGlen Barber 3881ba2b2efdSGlen Barber 'make set-timestamps' is now simpler and a bit more portable. 3882ba2b2efdSGlen Barber 3883ba2b2efdSGlen Barber 3884ba2b2efdSGlen BarberRelease 2013e - 2013-09-19 23:50:04 -0700 3885ba2b2efdSGlen Barber 3886ba2b2efdSGlen Barber Changes affecting near-future timestamps 3887ba2b2efdSGlen Barber 3888ba2b2efdSGlen Barber This year Fiji will start DST on October 27, not October 20. 3889ba2b2efdSGlen Barber (Thanks to David Wheeler for the heads-up.) For now, guess that 3890ba2b2efdSGlen Barber Fiji will continue to spring forward the Sunday before the fourth 3891ba2b2efdSGlen Barber Monday in October. 3892ba2b2efdSGlen Barber 3893ba2b2efdSGlen Barber Changes affecting current and future time zone abbreviations 3894ba2b2efdSGlen Barber 3895ba2b2efdSGlen Barber Use WIB/WITA/WIT rather than WIT/CIT/EIT for alphabetic Indonesian 3896ba2b2efdSGlen Barber time zone abbreviations since 1932. (Thanks to George Ziegler, 3897ba2b2efdSGlen Barber Priyadi Iman Nurcahyo, Zakaria, Jason Grimes, Martin Pitt, and 3898ba2b2efdSGlen Barber Benny Lin.) This affects Asia/Dili, Asia/Jakarta, Asia/Jayapura, 3899ba2b2efdSGlen Barber Asia/Makassar, and Asia/Pontianak. 3900ba2b2efdSGlen Barber 3901ba2b2efdSGlen Barber Use ART (UT -03, standard time), rather than WARST (also -03, but 3902ba2b2efdSGlen Barber daylight saving time) for San Luis, Argentina since 2009. 3903ba2b2efdSGlen Barber 3904ba2b2efdSGlen Barber Changes affecting Godthåb timestamps after 2037 if version mismatch 3905ba2b2efdSGlen Barber 3906ba2b2efdSGlen Barber Allow POSIX-like TZ strings where the transition time's hour can 3907ba2b2efdSGlen Barber range from -167 through 167, instead of the POSIX-required 0 3908ba2b2efdSGlen Barber through 24. E.g., TZ='FJT-12FJST,M10.3.1/146,M1.3.4/75' for the 3909*259e2ad7SPhilip Paeps new Fiji rules. This is a more compact way to represent 3910ba2b2efdSGlen Barber far-future timestamps for America/Godthab, America/Santiago, 3911ba2b2efdSGlen Barber Antarctica/Palmer, Asia/Gaza, Asia/Hebron, Asia/Jerusalem, 3912ba2b2efdSGlen Barber Pacific/Easter, and Pacific/Fiji. Other zones are unaffected by 3913ba2b2efdSGlen Barber this change. (Derived from a suggestion by Arthur David Olson.) 3914ba2b2efdSGlen Barber 3915ba2b2efdSGlen Barber Allow POSIX-like TZ strings where daylight saving time is in 3916ba2b2efdSGlen Barber effect all year. E.g., TZ='WART4WARST,J1/0,J365/25' for Western 3917*259e2ad7SPhilip Paeps Argentina Summer Time all year. This supports a more compact way 3918ba2b2efdSGlen Barber to represent the 2013d data for America/Argentina/San_Luis. 3919ba2b2efdSGlen Barber Because of the change for San Luis noted above this change does not 3920ba2b2efdSGlen Barber affect the current data. (Thanks to Andrew Main (Zefram) for 3921ba2b2efdSGlen Barber suggestions that improved this change.) 3922ba2b2efdSGlen Barber 3923ba2b2efdSGlen Barber Where these two TZ changes take effect, there is a minor extension 3924ba2b2efdSGlen Barber to the tz file format in that it allows new values for the 3925ba2b2efdSGlen Barber embedded TZ-format string, and the tz file format version number 3926ba2b2efdSGlen Barber has therefore been increased from 2 to 3 as a precaution. 3927ba2b2efdSGlen Barber Version-2-based client code should continue to work as before for 3928ba2b2efdSGlen Barber all timestamps before 2038. Existing version-2-based client code 3929ba2b2efdSGlen Barber (tzcode, GNU/Linux, Solaris) has been tested on version-3-format 3930ba2b2efdSGlen Barber files, and typically works in practice even for timestamps after 3931ba2b2efdSGlen Barber 2037; the only known exception is America/Godthab. 3932ba2b2efdSGlen Barber 3933ba2b2efdSGlen Barber Changes affecting timestamps before 1970 3934ba2b2efdSGlen Barber 3935ba2b2efdSGlen Barber Pacific/Johnston is now a link to Pacific/Honolulu. This corrects 3936ba2b2efdSGlen Barber some errors before 1947. 3937ba2b2efdSGlen Barber 3938ba2b2efdSGlen Barber Some zones have been turned into links, when they differ from existing 3939ba2b2efdSGlen Barber zones only in older data entries that were likely invented or that 3940ba2b2efdSGlen Barber differ only in LMT or transitions from LMT. These changes affect 3941ba2b2efdSGlen Barber only timestamps before 1943. The affected zones are: 3942ba2b2efdSGlen Barber Africa/Juba, America/Anguilla, America/Aruba, America/Dominica, 3943ba2b2efdSGlen Barber America/Grenada, America/Guadeloupe, America/Marigot, 3944ba2b2efdSGlen Barber America/Montserrat, America/St_Barthelemy, America/St_Kitts, 3945ba2b2efdSGlen Barber America/St_Lucia, America/St_Thomas, America/St_Vincent, 3946ba2b2efdSGlen Barber America/Tortola, and Europe/Vaduz. (Thanks to Alois Treindl for 3947ba2b2efdSGlen Barber confirming that the old Europe/Vaduz zone was wrong and the new 3948ba2b2efdSGlen Barber link is better for WWII-era times.) 3949ba2b2efdSGlen Barber 3950ba2b2efdSGlen Barber Change Kingston Mean Time from -5:07:12 to -5:07:11. This affects 3951ba2b2efdSGlen Barber America/Cayman, America/Jamaica and America/Grand_Turk timestamps 3952ba2b2efdSGlen Barber from 1890 to 1912. 3953ba2b2efdSGlen Barber 3954ba2b2efdSGlen Barber Change the UT offset of Bern Mean Time from 0:29:44 to 0:29:46. 3955ba2b2efdSGlen Barber This affects Europe/Zurich timestamps from 1853 to 1894. (Thanks 39562865ab3fSPhilip Paeps to Alois Treindl.) 3957ba2b2efdSGlen Barber 3958ba2b2efdSGlen Barber Change the date of the circa-1850 Zurich transition from 1849-09-12 3959ba2b2efdSGlen Barber to 1853-07-16, overriding Shanks with data from Messerli about 3960ba2b2efdSGlen Barber postal and telegraph time in Switzerland. 3961ba2b2efdSGlen Barber 3962ba2b2efdSGlen Barber Changes affecting time zone abbreviations before 1970 3963ba2b2efdSGlen Barber 3964ba2b2efdSGlen Barber For Asia/Jakarta, use BMT (not JMT) for mean time from 1923 to 1932, 3965ba2b2efdSGlen Barber as Jakarta was called Batavia back then. 3966ba2b2efdSGlen Barber 3967ba2b2efdSGlen Barber Changes affecting API 3968ba2b2efdSGlen Barber 3969ba2b2efdSGlen Barber The 'zic' command now outputs a dummy transition when far-future 3970ba2b2efdSGlen Barber data can't be summarized using a TZ string, and uses a 402-year 3971ba2b2efdSGlen Barber window rather than a 400-year window. For the current data, this 3972ba2b2efdSGlen Barber affects only the Asia/Tehran file. It does not affect any of the 3973ba2b2efdSGlen Barber timestamps that this file represents, so zdump outputs the same 3974ba2b2efdSGlen Barber information as before. (Thanks to Andrew Main (Zefram).) 3975ba2b2efdSGlen Barber 3976ba2b2efdSGlen Barber The 'date' command has a new '-r' option, which lets you specify 3977ba2b2efdSGlen Barber the integer time to display, a la FreeBSD. 3978ba2b2efdSGlen Barber 3979ba2b2efdSGlen Barber The 'tzselect' command has two new options '-c' and '-n', which lets you 3980ba2b2efdSGlen Barber select a zone based on latitude and longitude. 3981ba2b2efdSGlen Barber 3982ba2b2efdSGlen Barber The 'zic' command's '-v' option now warns about constructs that 3983ba2b2efdSGlen Barber require the new version-3 binary file format. (Thanks to Arthur 3984ba2b2efdSGlen Barber David Olson for the suggestion.) 3985ba2b2efdSGlen Barber 3986ba2b2efdSGlen Barber Support for floating-point time_t has been removed. 3987ba2b2efdSGlen Barber It was always dicey, and POSIX no longer requires it. 3988ba2b2efdSGlen Barber (Thanks to Eric Blake for suggesting to the POSIX committee to 3989ba2b2efdSGlen Barber remove it, and thanks to Alan Barrett, Clive D.W. Feather, Andy 3990ba2b2efdSGlen Barber Heninger, Arthur David Olson, and Alois Treindl, for reporting 3991ba2b2efdSGlen Barber bugs and elucidating some of the corners of the old floating-point 3992ba2b2efdSGlen Barber implementation.) 3993ba2b2efdSGlen Barber 3994ba2b2efdSGlen Barber The signatures of 'offtime', 'timeoff', and 'gtime' have been 3995ba2b2efdSGlen Barber changed back to the old practice of using 'long' to represent UT 3996ba2b2efdSGlen Barber offsets. This had been inadvertently and mistakenly changed to 3997ba2b2efdSGlen Barber 'int_fast32_t'. (Thanks to Christos Zoulas.) 3998ba2b2efdSGlen Barber 3999ba2b2efdSGlen Barber The code avoids undefined behavior on integer overflow in some 4000ba2b2efdSGlen Barber more places, including gmtime, localtime, mktime and zdump. 4001ba2b2efdSGlen Barber 4002ba2b2efdSGlen Barber Changes affecting the zdump utility 4003ba2b2efdSGlen Barber 4004ba2b2efdSGlen Barber zdump now outputs "UT" when referring to Universal Time, not "UTC". 4005ba2b2efdSGlen Barber "UTC" does not make sense for timestamps that predate the introduction 4006*259e2ad7SPhilip Paeps of UTC, whereas "UT", a more generic term, does. (Thanks to Steve Allen 4007ba2b2efdSGlen Barber for clarifying UT vs UTC.) 4008ba2b2efdSGlen Barber 4009ba2b2efdSGlen Barber Data changes affecting behavior of tzselect and similar programs 4010ba2b2efdSGlen Barber 4011*259e2ad7SPhilip Paeps Country code BQ is now called the more common name "Caribbean Netherlands" 4012*259e2ad7SPhilip Paeps rather than the more official "Bonaire, St Eustatius & Saba". 4013ba2b2efdSGlen Barber 4014ba2b2efdSGlen Barber Remove from zone.tab the names America/Montreal, America/Shiprock, 4015ba2b2efdSGlen Barber and Antarctica/South_Pole, as they are equivalent to existing 4016ba2b2efdSGlen Barber same-country-code zones for post-1970 timestamps. The data entries for 4017ba2b2efdSGlen Barber these names are unchanged, so the names continue to work as before. 4018ba2b2efdSGlen Barber 4019ba2b2efdSGlen Barber Changes affecting code internals 4020ba2b2efdSGlen Barber 4021ba2b2efdSGlen Barber zic -c now runs way faster on 64-bit hosts when given large numbers. 4022ba2b2efdSGlen Barber 4023ba2b2efdSGlen Barber zic now uses vfprintf to avoid allocating and freeing some memory. 4024ba2b2efdSGlen Barber 4025ba2b2efdSGlen Barber tzselect now computes the list of continents from the data, 4026ba2b2efdSGlen Barber rather than have it hard-coded. 4027ba2b2efdSGlen Barber 4028ba2b2efdSGlen Barber Minor changes pacify GCC 4.7.3 and GCC 4.8.1. 4029ba2b2efdSGlen Barber 4030ba2b2efdSGlen Barber Changes affecting the build procedure 4031ba2b2efdSGlen Barber 4032ba2b2efdSGlen Barber The 'leapseconds' file is now generated automatically from a 4033ba2b2efdSGlen Barber new file 'leap-seconds.list', which is a copy of 40348d7edd17SPhilip Paeps <ftp://ftp.nist.gov/pub/time/leap-seconds.list> 4035ba2b2efdSGlen Barber A new source file 'leapseconds.awk' implements this. 4036ba2b2efdSGlen Barber The goal is simplification of the future maintenance of 'leapseconds'. 4037ba2b2efdSGlen Barber 4038ba2b2efdSGlen Barber When building the 'posix' or 'right' subdirectories, if the 4039ba2b2efdSGlen Barber subdirectory would be a copy of the default subdirectory, it is 4040ba2b2efdSGlen Barber now made a symbolic link if that is supported. This saves about 4041ba2b2efdSGlen Barber 2 MB of file system space. 4042ba2b2efdSGlen Barber 4043ba2b2efdSGlen Barber The links America/Shiprock and Antarctica/South_Pole have been 4044ba2b2efdSGlen Barber moved to the 'backward' file. This affects only nondefault builds 4045ba2b2efdSGlen Barber that omit 'backward'. 4046ba2b2efdSGlen Barber 4047ba2b2efdSGlen Barber Changes affecting version-control only 4048ba2b2efdSGlen Barber 4049ba2b2efdSGlen Barber .gitignore now ignores 'date'. 4050ba2b2efdSGlen Barber 4051ba2b2efdSGlen Barber Changes affecting documentation and commentary 4052ba2b2efdSGlen Barber 4053ba2b2efdSGlen Barber Changes to the 'tzfile' man page 4054ba2b2efdSGlen Barber 4055ba2b2efdSGlen Barber It now mentions that the binary file format may be extended in 4056ba2b2efdSGlen Barber future versions by appending data. 4057ba2b2efdSGlen Barber 4058ba2b2efdSGlen Barber It now refers to the 'zdump' and 'zic' man pages. 4059ba2b2efdSGlen Barber 4060ba2b2efdSGlen Barber Changes to the 'zic' man page 4061ba2b2efdSGlen Barber 4062ba2b2efdSGlen Barber It lists conditions that elicit a warning with '-v'. 4063ba2b2efdSGlen Barber 4064ba2b2efdSGlen Barber It says that the behavior is unspecified when duplicate names 4065ba2b2efdSGlen Barber are given, or if the source of one link is the target of another. 4066ba2b2efdSGlen Barber 4067ba2b2efdSGlen Barber Its examples are updated to match the latest data. 4068ba2b2efdSGlen Barber 4069ba2b2efdSGlen Barber The definition of white space has been clarified slightly. 4070ba2b2efdSGlen Barber (Thanks to Michael Deckers.) 4071ba2b2efdSGlen Barber 4072ba2b2efdSGlen Barber Changes to the 'Theory' file 4073ba2b2efdSGlen Barber 4074ba2b2efdSGlen Barber There is a new section about the accuracy of the tz database, 4075ba2b2efdSGlen Barber describing the many ways that errors can creep in, and 4076ba2b2efdSGlen Barber explaining why so many of the pre-1970 timestamps are wrong or 4077ba2b2efdSGlen Barber misleading (thanks to Steve Allen, Lester Caine, and Garrett 4078ba2b2efdSGlen Barber Wollman for discussions that contributed to this). 4079ba2b2efdSGlen Barber 4080ba2b2efdSGlen Barber The 'Theory' file describes LMT better (this follows a 4081ba2b2efdSGlen Barber suggestion by Guy Harris). 4082ba2b2efdSGlen Barber 4083ba2b2efdSGlen Barber It refers to the 2013 edition of POSIX rather than the 2004 edition. 4084ba2b2efdSGlen Barber 4085ba2b2efdSGlen Barber It's mentioned that excluding 'backward' should not affect the 4086ba2b2efdSGlen Barber other data, and it suggests at least one zone.tab name per 4087ba2b2efdSGlen Barber inhabited country (thanks to Stephen Colebourne). 4088ba2b2efdSGlen Barber 4089ba2b2efdSGlen Barber Some longstanding restrictions on names are documented, e.g., 4090ba2b2efdSGlen Barber 'America/New_York' precludes 'America/New_York/Bronx'. 4091ba2b2efdSGlen Barber 4092ba2b2efdSGlen Barber It gives more reasons for the 1970 cutoff. 4093ba2b2efdSGlen Barber 4094ba2b2efdSGlen Barber It now mentions which time_t variants are supported, such as 4095ba2b2efdSGlen Barber signed integer time_t. (Thanks to Paul Goyette for reporting 4096ba2b2efdSGlen Barber typos in an experimental version of this change.) 4097ba2b2efdSGlen Barber 4098ba2b2efdSGlen Barber (Thanks to Philip Newton for correcting typos in these changes.) 4099ba2b2efdSGlen Barber 4100ba2b2efdSGlen Barber Documentation and commentary is more careful to distinguish UT in 4101ba2b2efdSGlen Barber general from UTC in particular. (Thanks to Steve Allen.) 4102ba2b2efdSGlen Barber 4103ba2b2efdSGlen Barber Add a better source for the Zurich 1894 transition. 4104ba2b2efdSGlen Barber (Thanks to Pierre-Yves Berger.) 4105ba2b2efdSGlen Barber 4106ba2b2efdSGlen Barber Update shapefile citations in tz-link.htm. (Thanks to Guy Harris.) 4107ba2b2efdSGlen Barber 4108ba2b2efdSGlen Barber 4109ba2b2efdSGlen BarberRelease 2013d - 2013-07-05 07:38:01 -0700 4110ba2b2efdSGlen Barber 4111ba2b2efdSGlen Barber Changes affecting future timestamps: 4112ba2b2efdSGlen Barber 4113ba2b2efdSGlen Barber Morocco's midsummer transitions this year are July 7 and August 10, 4114ba2b2efdSGlen Barber not July 9 and August 8. (Thanks to Andrew Paprocki.) 4115ba2b2efdSGlen Barber 4116ba2b2efdSGlen Barber Israel now falls back on the last Sunday of October. 4117ba2b2efdSGlen Barber (Thanks to Ephraim Silverberg.) 4118ba2b2efdSGlen Barber 4119ba2b2efdSGlen Barber Changes affecting past timestamps: 4120ba2b2efdSGlen Barber 4121ba2b2efdSGlen Barber Specify Jerusalem's location more precisely; this changes the pre-1880 4122ba2b2efdSGlen Barber times by 2 s. 4123ba2b2efdSGlen Barber 4124ba2b2efdSGlen Barber Changing affecting metadata only: 4125ba2b2efdSGlen Barber 4126ba2b2efdSGlen Barber Fix typos in the entries for country codes BQ and SX. 4127ba2b2efdSGlen Barber 4128ba2b2efdSGlen Barber Changes affecting code: 4129ba2b2efdSGlen Barber 4130ba2b2efdSGlen Barber Rework the code to fix a bug with handling Australia/Macquarie on 4131ba2b2efdSGlen Barber 32-bit hosts (thanks to Arthur David Olson). 4132ba2b2efdSGlen Barber 4133ba2b2efdSGlen Barber Port to platforms like NetBSD, where time_t can be wider than long. 4134ba2b2efdSGlen Barber 4135ba2b2efdSGlen Barber Add support for testing time_t types other than the system's. 4136ba2b2efdSGlen Barber Run 'make check_time_t_alternatives' to try this out. 4137ba2b2efdSGlen Barber Currently, the tests fail for unsigned time_t; 4138ba2b2efdSGlen Barber this should get fixed at some point. 4139ba2b2efdSGlen Barber 4140ba2b2efdSGlen Barber Changes affecting documentation and commentary: 4141ba2b2efdSGlen Barber 4142ba2b2efdSGlen Barber Deemphasize the significance of national borders. 4143ba2b2efdSGlen Barber 4144ba2b2efdSGlen Barber Update the zdump man page. 4145ba2b2efdSGlen Barber 4146ba2b2efdSGlen Barber Remove obsolete NOID comment (thanks to Denis Excoffier). 4147ba2b2efdSGlen Barber 4148ba2b2efdSGlen Barber Update several URLs and comments in the web pages. 4149ba2b2efdSGlen Barber 4150ba2b2efdSGlen Barber Spelling fixes (thanks to Kevin Lyda and Jonathan Leffler). 4151ba2b2efdSGlen Barber 4152ba2b2efdSGlen Barber Update URL for CLDR Zone->Tzid table (thanks to Yoshito Umaoka). 4153ba2b2efdSGlen Barber 4154ba2b2efdSGlen Barber 4155ba2b2efdSGlen BarberRelease 2013c - 2013-04-19 16:17:40 -0700 4156ba2b2efdSGlen Barber 4157ba2b2efdSGlen Barber Changes affecting current and future timestamps: 4158ba2b2efdSGlen Barber 4159ba2b2efdSGlen Barber Palestine observed DST starting March 29, 2013. (Thanks to 4160ba2b2efdSGlen Barber Steffen Thorsen.) From 2013 on, Gaza and Hebron both observe DST, 4161ba2b2efdSGlen Barber with the predicted rules being the last Thursday in March at 24:00 4162ba2b2efdSGlen Barber to the first Friday on or after September 21 at 01:00. 4163ba2b2efdSGlen Barber 4164ba2b2efdSGlen Barber Assume that the recent change to Paraguay's DST rules is permanent, 4165ba2b2efdSGlen Barber by moving the end of DST to the 4th Sunday in March every year. 4166ba2b2efdSGlen Barber (Thanks to Carlos Raúl Perasso.) 4167ba2b2efdSGlen Barber 4168ba2b2efdSGlen Barber Changes affecting past timestamps: 4169ba2b2efdSGlen Barber 4170ba2b2efdSGlen Barber Fix some historical data for Palestine to agree with that of 4171ba2b2efdSGlen Barber timeanddate.com, as follows: 4172ba2b2efdSGlen Barber 4173ba2b2efdSGlen Barber The spring 2008 change in Gaza and Hebron was on 00:00 Mar 28, not 4174ba2b2efdSGlen Barber 00:00 Apr 1. 4175ba2b2efdSGlen Barber 4176ba2b2efdSGlen Barber The fall 2009 change in Gaza and Hebron on Sep 4 was at 01:00, not 4177ba2b2efdSGlen Barber 02:00. 4178ba2b2efdSGlen Barber 4179ba2b2efdSGlen Barber The spring 2010 change in Hebron was 00:00 Mar 26, not 00:01 Mar 27. 4180ba2b2efdSGlen Barber 4181ba2b2efdSGlen Barber The spring 2011 change in Gaza was 00:01 Apr 1, not 12:01 Apr 2. 4182ba2b2efdSGlen Barber 4183ba2b2efdSGlen Barber The spring 2011 change in Hebron on Apr 1 was at 00:01, not 12:01. 4184ba2b2efdSGlen Barber 4185ba2b2efdSGlen Barber The fall 2011 change in Hebron on Sep 30 was at 00:00, not 03:00. 4186ba2b2efdSGlen Barber 4187ba2b2efdSGlen Barber Fix times of habitation for Macquarie to agree with the Tasmania 4188ba2b2efdSGlen Barber Parks & Wildlife Service history, which indicates that permanent 4189ba2b2efdSGlen Barber habitation was 1899-1919 and 1948 on. 4190ba2b2efdSGlen Barber 4191ba2b2efdSGlen Barber Changing affecting metadata only: 4192ba2b2efdSGlen Barber 4193ba2b2efdSGlen Barber Macquarie Island is politically part of Australia, not Antarctica. 4194ba2b2efdSGlen Barber (Thanks to Tobias Conradi.) 4195ba2b2efdSGlen Barber 4196*259e2ad7SPhilip Paeps Sort Macquarie more consistently with other parts of Australia. 4197ba2b2efdSGlen Barber (Thanks to Tim Parenti.) 4198ba2b2efdSGlen Barber 4199ba2b2efdSGlen Barber 4200ba2b2efdSGlen BarberRelease 2013b - 2013-03-10 22:33:40 -0700 4201ba2b2efdSGlen Barber 4202ba2b2efdSGlen Barber Changes affecting current and future timestamps: 4203ba2b2efdSGlen Barber 4204ba2b2efdSGlen Barber Haiti uses US daylight-saving rules this year, and presumably future years. 4205ba2b2efdSGlen Barber This changes timestamps starting today. (Thanks to Steffen Thorsen.) 4206ba2b2efdSGlen Barber 4207ba2b2efdSGlen Barber Paraguay will end DST on March 24 this year. 4208ba2b2efdSGlen Barber (Thanks to Steffen Thorsen.) For now, assume it's just this year. 4209ba2b2efdSGlen Barber 4210ba2b2efdSGlen Barber Morocco does not observe DST during Ramadan; 4211ba2b2efdSGlen Barber try to predict Ramadan in Morocco as best we can. 4212ba2b2efdSGlen Barber (Thanks to Erik Homoet for the heads-up.) 4213ba2b2efdSGlen Barber 4214ba2b2efdSGlen Barber Changes affecting commentary: 4215ba2b2efdSGlen Barber 4216ba2b2efdSGlen Barber Update URLs in tz-link page. Add URLs for webOS, BB10, iOS. 4217ba2b2efdSGlen Barber Update URL for Solaris. Mention Internet RFC 6557. 4218ba2b2efdSGlen Barber Update Internet RFCs 2445->5545, 2822->5322. 4219ba2b2efdSGlen Barber Switch from FTP to HTTP for Internet RFCs. 4220ba2b2efdSGlen Barber 4221ba2b2efdSGlen Barber 4222ba2b2efdSGlen BarberRelease 2013a - 2013-02-27 09:20:35 -0800 4223ba2b2efdSGlen Barber 4224ba2b2efdSGlen Barber Change affecting binary data format: 4225ba2b2efdSGlen Barber 4226ba2b2efdSGlen Barber The zone offset at the end of version-2-format zone files is now 4227ba2b2efdSGlen Barber allowed to be 24:00, as per POSIX.1-2008. (Thanks to Arthur David Olson.) 4228ba2b2efdSGlen Barber 4229ba2b2efdSGlen Barber Changes affecting current and future timestamps: 4230ba2b2efdSGlen Barber 4231ba2b2efdSGlen Barber Chile's 2013 rules, and we guess rules for 2014 and later, will be 4232ba2b2efdSGlen Barber the same as 2012, namely Apr Sun>=23 03:00 UTC to Sep Sun>=2 04:00 UTC. 4233ba2b2efdSGlen Barber (Thanks to Steffen Thorsen and Robert Elz.) 4234ba2b2efdSGlen Barber 4235ba2b2efdSGlen Barber New Zones Asia/Khandyga, Asia/Ust-Nera, Europe/Busingen. 4236ba2b2efdSGlen Barber (Thanks to Tobias Conradi and Arthur David Olson.) 4237ba2b2efdSGlen Barber 4238ba2b2efdSGlen Barber Many changes affect historical timestamps before 1940. 4239ba2b2efdSGlen Barber These were deduced from: Milne J. Civil time. Geogr J. 1899 42408d7edd17SPhilip Paeps Feb;13(2):173-94 <https://www.jstor.org/stable/1774359>. 4241ba2b2efdSGlen Barber 4242ba2b2efdSGlen Barber Changes affecting the code: 4243ba2b2efdSGlen Barber 4244ba2b2efdSGlen Barber Fix zic bug that mishandled Egypt's 2010 changes (this also affected 4245ba2b2efdSGlen Barber the data). (Thanks to Arthur David Olson.) 4246ba2b2efdSGlen Barber 4247ba2b2efdSGlen Barber Fix localtime bug when time_t is unsigned and data files were generated 4248ba2b2efdSGlen Barber by a signed time_t system. (Thanks to Doug Bailey for reporting and 4249ba2b2efdSGlen Barber to Arthur David Olson for fixing.) 4250ba2b2efdSGlen Barber 4251ba2b2efdSGlen Barber Allow the email address for bug reports to be set by the packager. 4252ba2b2efdSGlen Barber The default is tz@iana.org, as before. (Thanks to Joseph S. Myers.) 4253ba2b2efdSGlen Barber 4254ba2b2efdSGlen Barber Update HTML checking to be compatible with Ubuntu 12.10. 4255ba2b2efdSGlen Barber 4256ba2b2efdSGlen Barber Check that files are a safe subset of ASCII. At some point we may 4257ba2b2efdSGlen Barber relax this requirement to a safe subset of UTF-8. Without the 4258ba2b2efdSGlen Barber check, some non-UTF-8 encodings were leaking into the distribution. 4259ba2b2efdSGlen Barber 4260ba2b2efdSGlen Barber Commentary changes: 4261ba2b2efdSGlen Barber 4262ba2b2efdSGlen Barber Restore a comment about copyright notices that was inadvertently deleted. 4263ba2b2efdSGlen Barber (Thanks to Arthur David Olson.) 4264ba2b2efdSGlen Barber 4265ba2b2efdSGlen Barber Improve the commentary about which districts observe what times 42662865ab3fSPhilip Paeps in Russia. (Thanks to Oscar van Vlijmen and Arthur David Olson.) 4267ba2b2efdSGlen Barber 4268ba2b2efdSGlen Barber Add web page links to tz.js. 4269ba2b2efdSGlen Barber 4270ba2b2efdSGlen Barber Add "Run by the Monkeys" to tz-art. (Thanks to Arthur David Olson.) 4271ba2b2efdSGlen Barber 4272ba2b2efdSGlen Barber 4273ba2b2efdSGlen BarberRelease 2012j - 2012-11-12 18:34:49 -0800 4274ba2b2efdSGlen Barber 4275ba2b2efdSGlen Barber Libya moved to CET this weekend, but with DST planned next year. 4276ba2b2efdSGlen Barber (Thanks to Even Scharning, Steffen Thorsen, and Tim Parenti.) 4277ba2b2efdSGlen Barber 4278ba2b2efdSGlen Barber Signatures now have the extension .asc, not .sign, as that's more 4279ba2b2efdSGlen Barber standard. (Thanks to Phil Pennock.) 4280ba2b2efdSGlen Barber 4281ba2b2efdSGlen Barber The output of 'zdump --version', and of 'zic --version', now 4282ba2b2efdSGlen Barber uses a format that is more typical for --version. 4283ba2b2efdSGlen Barber (Thanks to Joseph S. Myers.) 4284ba2b2efdSGlen Barber 4285ba2b2efdSGlen Barber The output of 'tzselect --help', 'zdump --help', and 'zic --help' 4286ba2b2efdSGlen Barber now uses tz@iana.org rather than the old elsie address. 4287ba2b2efdSGlen Barber 4288ba2b2efdSGlen Barber zic -v now complains about abbreviations that are less than 3 4289ba2b2efdSGlen Barber or more than 6 characters, as per Posix. Formerly, it checked 4290ba2b2efdSGlen Barber for abbreviations that were more than 3. 4291ba2b2efdSGlen Barber 4292ba2b2efdSGlen Barber 'make public' no longer puts its temporary directory under /tmp, 4293ba2b2efdSGlen Barber and uses the just-built zic rather than the system zic. 4294ba2b2efdSGlen Barber 4295ba2b2efdSGlen Barber Various fixes to documentation and commentary. 4296ba2b2efdSGlen Barber 4297ba2b2efdSGlen Barber 4298ba2b2efdSGlen BarberRelease 2012i - 2012-11-03 12:57:09 -0700 4299ba2b2efdSGlen Barber 4300ba2b2efdSGlen Barber Cuba switches from DST tomorrow at 01:00. (Thanks to Steffen Thorsen.) 4301ba2b2efdSGlen Barber 4302ba2b2efdSGlen Barber Linker flags can now be specified via LDFLAGS. 4303ba2b2efdSGlen Barber AWK now defaults to 'awk', not 'nawk'. 4304ba2b2efdSGlen Barber The shell in tzselect now defaults to /bin/bash, but this can 4305ba2b2efdSGlen Barber be overridden by specifying KSHELL. 4306ba2b2efdSGlen Barber The main web page now mentions the unofficial GitHub repository. 4307ba2b2efdSGlen Barber (Thanks to Mike Frysinger.) 4308ba2b2efdSGlen Barber 4309ba2b2efdSGlen Barber Tarball signatures can now be built by running 'make signatures'. 4310ba2b2efdSGlen Barber There are also new makefile rules 'tarballs', 'check_public', and 4311ba2b2efdSGlen Barber separate makefile rules for each tarball and signature file. 4312ba2b2efdSGlen Barber A few makefile rules are now more portable to strict POSIX. 4313ba2b2efdSGlen Barber 4314ba2b2efdSGlen Barber The main web page now lists the canonical IANA URL. 4315ba2b2efdSGlen Barber 4316ba2b2efdSGlen Barber 4317ba2b2efdSGlen BarberRelease 2012h - 2012-10-26 22:49:10 -0700 4318ba2b2efdSGlen Barber 4319ba2b2efdSGlen Barber Bahia no longer has DST. (Thanks to Kelley Cook.) 4320ba2b2efdSGlen Barber 4321ba2b2efdSGlen Barber Tocantins has DST. (Thanks to Rodrigo Severo.) 4322ba2b2efdSGlen Barber 4323ba2b2efdSGlen Barber Israel has new DST rules next year. (Thanks to Ephraim Silverberg.) 4324ba2b2efdSGlen Barber 4325ba2b2efdSGlen Barber Jordan stays on DST this winter. (Thanks to Steffen Thorsen.) 4326ba2b2efdSGlen Barber 4327ba2b2efdSGlen Barber Web page updates. 4328ba2b2efdSGlen Barber 4329ba2b2efdSGlen Barber More C modernization, except that at Arthur David Olson's suggestion 4330ba2b2efdSGlen Barber the instances of 'register' were kept. 4331ba2b2efdSGlen Barber 4332ba2b2efdSGlen Barber 4333ba2b2efdSGlen BarberRelease 2012g - 2012-10-17 20:59:45 -0700 4334ba2b2efdSGlen Barber 4335ba2b2efdSGlen Barber Samoa fall 2012 and later. (Thanks to Nicholas Pereira and Robert Elz.) 4336ba2b2efdSGlen Barber 4337ba2b2efdSGlen Barber Palestine fall 2012. (Thanks to Steffen Thorsen.) 4338ba2b2efdSGlen Barber 4339ba2b2efdSGlen Barber Assume C89. 4340ba2b2efdSGlen Barber 4341ba2b2efdSGlen Barber To attack the version-number problem, this release ships the file 4342ba2b2efdSGlen Barber 'Makefile' (which contains the release number) in both the tzcode and 4343ba2b2efdSGlen Barber the tzdata tarballs. The two Makefiles are identical, and should be 4344ba2b2efdSGlen Barber identical in any matching pair of tarballs, so it shouldn't matter 4345ba2b2efdSGlen Barber which order you extract the tarballs. Perhaps we can come up with a 4346ba2b2efdSGlen Barber better version-number scheme at some point; this scheme does have the 4347ba2b2efdSGlen Barber virtue of not adding more files. 4348ba2b2efdSGlen Barber 4349ba2b2efdSGlen Barber 4350ba2b2efdSGlen BarberRelease 2012f - 2012-09-12 23:17:03 -0700 4351ba2b2efdSGlen Barber 4352ba2b2efdSGlen Barber * australasia (Pacific/Fiji): Fiji DST is October 21 through January 4353ba2b2efdSGlen Barber 20 this year. (Thanks to Steffen Thorsen.) 4354ba2b2efdSGlen Barber 4355ba2b2efdSGlen Barber 4356ba2b2efdSGlen BarberRelease 2012e - 2012-08-02 20:44:55 -0700 4357ba2b2efdSGlen Barber 4358ba2b2efdSGlen Barber * australasia (Pacific/Fakaofo): Tokelau is UT +13, not +14. 4359ba2b2efdSGlen Barber (Thanks to Steffen Thorsen.) 4360ba2b2efdSGlen Barber 4361ba2b2efdSGlen Barber * Use a single version number for both code and data. 4362ba2b2efdSGlen Barber 4363ba2b2efdSGlen Barber * .gitignore: New file. 4364ba2b2efdSGlen Barber 4365ba2b2efdSGlen Barber * Remove trailing white space. 4366ba2b2efdSGlen Barber 4367ba2b2efdSGlen Barber 4368ba2b2efdSGlen BarberRelease code2012c-data2012d - 2012-07-19 16:35:33 -0700 4369ba2b2efdSGlen Barber 4370ba2b2efdSGlen Barber Changes for Morocco's timestamps, which take effect in a couple of 4371ba2b2efdSGlen Barber hours, along with infrastructure changes to accommodate how the tz 4372ba2b2efdSGlen Barber code and data are released on IANA. 4373ba2b2efdSGlen Barber 4374ba2b2efdSGlen Barber 4375ba2b2efdSGlen BarberRelease data2012c - 2012-03-27 12:17:25 -0400 4376ba2b2efdSGlen Barber 4377ba2b2efdSGlen Barber africa 4378ba2b2efdSGlen Barber Summer time changes for Morocco (to start late April 2012) 4379ba2b2efdSGlen Barber 4380ba2b2efdSGlen Barber asia 4381ba2b2efdSGlen Barber Changes for 2012 for Gaza & the West Bank (Hebron) and Syria 4382ba2b2efdSGlen Barber 4383ba2b2efdSGlen Barber northamerica 4384ba2b2efdSGlen Barber Haiti following US/Canada rules for 2012 (and we're assuming, 4385ba2b2efdSGlen Barber for now anyway, for the future). 4386ba2b2efdSGlen Barber 4387ba2b2efdSGlen Barber 4388ba2b2efdSGlen BarberRelease 2012b - 2012-03-02 12:29:15 +0700 4389ba2b2efdSGlen Barber 4390ba2b2efdSGlen Barber There is just one change to tzcode2012b (compared with 2012a): 4391ba2b2efdSGlen Barber the Makefile that was accidentally included with 2012a has been 4392ba2b2efdSGlen Barber replaced with the version that should have been there, which is 4393ba2b2efdSGlen Barber identical with the previous version (from tzcode2011i). 4394ba2b2efdSGlen Barber 4395ba2b2efdSGlen Barber There are just two changes in tzdata2012b compared with 2012a. 4396ba2b2efdSGlen Barber 4397ba2b2efdSGlen Barber Most significantly, summer time in Cuba has been delayed 3 weeks 4398ba2b2efdSGlen Barber (now starts April 1 rather than March 11). Since Mar 11 (the old start 4399ba2b2efdSGlen Barber date, as listed in 2012a) is just a little over a week away, this 4400ba2b2efdSGlen Barber change is urgent. 4401ba2b2efdSGlen Barber 4402ba2b2efdSGlen Barber Less importantly, an excess tab in one of the changes in zone.tab 4403ba2b2efdSGlen Barber in 2012a has been removed. 4404ba2b2efdSGlen Barber 4405ba2b2efdSGlen Barber 4406ba2b2efdSGlen BarberRelease 2012a - 2012-03-01 18:28:10 +0700 4407ba2b2efdSGlen Barber 4408ba2b2efdSGlen Barber The changes in tzcode2012a (compared to the previous version, 2011i) 4409ba2b2efdSGlen Barber are entirely to the README and tz-art.htm and tz-link.htm files, if 4410ba2b2efdSGlen Barber none of those concern you, you can ignore the code update. The changes 4411ba2b2efdSGlen Barber reflect the changed addresses for the mailing list and the code and 4412ba2b2efdSGlen Barber data distribution points & methods (and a link to DateTime::TimeZone::Tzfile 4413ba2b2efdSGlen Barber has been added to tz-link.htm). 4414ba2b2efdSGlen Barber 4415ba2b2efdSGlen Barber In tzdata2012a (compared to the previous release, which was 2011n) 4416ba2b2efdSGlen Barber the major changes are: 4417ba2b2efdSGlen Barber Chile 2011/2012 and 2012/2013 summer time date adjustments. 4418ba2b2efdSGlen Barber Falkland Islands onto permanent summer time (we're assuming for the 4419ba2b2efdSGlen Barber foreseeable future, though 2012 is all we're fairly certain of.) 4420ba2b2efdSGlen Barber Armenia has abolished Summer Time. 4421ba2b2efdSGlen Barber Tokelau jumped the International Date Line back last December 4422ba2b2efdSGlen Barber (just the same as their near neighbour, Samoa). 4423ba2b2efdSGlen Barber America/Creston is a new zone for a small area of British Columbia 4424ba2b2efdSGlen Barber There will be a leapsecond 2012-06-30 23:59:60 UTC. 4425ba2b2efdSGlen Barber 4426ba2b2efdSGlen Barber Other minor changes are: 4427ba2b2efdSGlen Barber Corrections to 1918 Canadian summer time end dates. 4428ba2b2efdSGlen Barber Updated URL for UK time zone history (in comments) 4429ba2b2efdSGlen Barber A few typos in Le Corre's list of free French place names (comments) 4430ba2b2efdSGlen Barber 4431ba2b2efdSGlen Barber 4432ba2b2efdSGlen BarberRelease data2011n - 2011-10-30 14:57:54 +0700 4433ba2b2efdSGlen Barber 4434ba2b2efdSGlen Barber There are three changes of note - most urgently, Cuba (America/Havana) 4435ba2b2efdSGlen Barber has extended summer time by two weeks, now to end on Nov 13, rather than 4436ba2b2efdSGlen Barber the (already past) Oct 30. Second, the Pridnestrovian Moldavian Republic 4437ba2b2efdSGlen Barber (Europe/Tiraspol) decided not to split from the rest of Moldova after 4438ba2b2efdSGlen Barber all, and consequently that zone has been removed (again) and reinstated 4439ba2b2efdSGlen Barber in the "backward" file as a link to Europe/Chisinau. And third, the 4440ba2b2efdSGlen Barber end date for Fiji's summer time this summer was moved forward from the 4441ba2b2efdSGlen Barber earlier planned Feb 26, to Jan 22. 4442ba2b2efdSGlen Barber 4443ba2b2efdSGlen Barber Apart from that, Moldova (MD) returns to a single entry in zone.tab 4444ba2b2efdSGlen Barber (and the incorrect syntax that was in the 2011m version of that file 4445ba2b2efdSGlen Barber is so fixed - it would have been fixed in a different way had this 4446ba2b2efdSGlen Barber change not happened - that's the "missing" sccs version id). 4447ba2b2efdSGlen Barber 4448ba2b2efdSGlen Barber 4449ba2b2efdSGlen BarberRelease data2011m - 2011-10-24 21:42:16 +0700 4450ba2b2efdSGlen Barber 4451ba2b2efdSGlen Barber In particular, the typos in comments in the data (2011-11-17 should have 4452ba2b2efdSGlen Barber been 2011-10-17 as Alan Barrett noted, and spelling of Tiraspol that 4453ba2b2efdSGlen Barber Tim Parenti noted) have been fixed, and the change for Ukraine has been 4454ba2b2efdSGlen Barber made in all 4 Ukrainian zones, rather than just Kiev (again, thanks to 4455ba2b2efdSGlen Barber Tim Parenti, and also Denys Gavrysh) 4456ba2b2efdSGlen Barber 4457ba2b2efdSGlen Barber In addition, I added Europe/Tiraspol to zone.tab. 4458ba2b2efdSGlen Barber 4459ba2b2efdSGlen Barber This time, all the files have new version numbers... (including the files 4460ba2b2efdSGlen Barber otherwise unchanged in 2011m that were changed in 2011l but didn't get new 4461ba2b2efdSGlen Barber version numbers there...) 4462ba2b2efdSGlen Barber 4463ba2b2efdSGlen Barber 4464ba2b2efdSGlen BarberRelease data2011l - 2011-10-10 11:15:43 +0700 4465ba2b2efdSGlen Barber 4466ba2b2efdSGlen Barber There are just 2 changes that cause different generated tzdata files from 4467ba2b2efdSGlen Barber zic, to Asia/Hebron and Pacific/Fiji - the possible change for Bahia, Brazil 4468ba2b2efdSGlen Barber is included, but commented out. Compared with the diff I sent out last week, 4469ba2b2efdSGlen Barber this version also includes attributions for the sources for the changes 4470ba2b2efdSGlen Barber (in much the same format as ado used, but the html tags have not been 4471ba2b2efdSGlen Barber checked, verified, or used in any way at all, so if there are errors there, 4472ba2b2efdSGlen Barber please let me know.) 4473ba2b2efdSGlen Barber 4474ba2b2efdSGlen Barber 4475ba2b2efdSGlen BarberRelease data2011k - 2011-09-20 17:54:03 -0400 4476ba2b2efdSGlen Barber 4477ba2b2efdSGlen Barber [not summarized] 4478ba2b2efdSGlen Barber 4479ba2b2efdSGlen Barber 4480ba2b2efdSGlen BarberRelease data2011j - 2011-09-12 09:22:49 -0400 4481ba2b2efdSGlen Barber 4482ba2b2efdSGlen Barber (contemporary changes for Samoa; past changes for Kenya, Uganda, and 4483ba2b2efdSGlen Barber Tanzania); there are also two spelling corrections to comments in 4484ba2b2efdSGlen Barber the australasia file (with thanks to Christos Zoulas). 4485ba2b2efdSGlen Barber 4486ba2b2efdSGlen Barber 4487ba2b2efdSGlen BarberRelease 2011i - 2011-08-29 05:56:32 -0400 4488ba2b2efdSGlen Barber 4489ba2b2efdSGlen Barber [not summarized] 4490ba2b2efdSGlen Barber 4491ba2b2efdSGlen Barber 4492ba2b2efdSGlen BarberRelease data2011h - 2011-06-15 18:41:48 -0400 4493ba2b2efdSGlen Barber 4494ba2b2efdSGlen Barber Russia and Curaçao changes 4495ba2b2efdSGlen Barber 4496ba2b2efdSGlen Barber 4497ba2b2efdSGlen BarberRelease 2011g - 2011-04-25 09:07:22 -0400 4498ba2b2efdSGlen Barber 4499ba2b2efdSGlen Barber update the rules for Egypt to reflect its abandonment of DST this year 4500ba2b2efdSGlen Barber 4501ba2b2efdSGlen Barber 4502ba2b2efdSGlen BarberRelease 2011f - 2011-04-06 17:14:53 -0400 4503ba2b2efdSGlen Barber 4504ba2b2efdSGlen Barber [not summarized] 4505ba2b2efdSGlen Barber 4506ba2b2efdSGlen Barber 4507ba2b2efdSGlen BarberRelease 2011e - 2011-03-31 16:04:38 -0400 4508ba2b2efdSGlen Barber 4509ba2b2efdSGlen Barber Morocco, Chile, and tz-link changes 4510ba2b2efdSGlen Barber 4511ba2b2efdSGlen Barber 4512ba2b2efdSGlen BarberRelease 2011d - 2011-03-14 09:18:01 -0400 4513ba2b2efdSGlen Barber 4514ba2b2efdSGlen Barber changes that impact present-day timestamps in Cuba, Samoa, and Turkey 4515ba2b2efdSGlen Barber 4516ba2b2efdSGlen Barber 4517ba2b2efdSGlen BarberRelease 2011c - 2011-03-07 09:30:09 -0500 4518ba2b2efdSGlen Barber 4519ba2b2efdSGlen Barber These do affect current timestamps in Chile and Annette Island, Canada. 4520ba2b2efdSGlen Barber 4521ba2b2efdSGlen Barber 4522ba2b2efdSGlen BarberRelease 2011b - 2011-02-07 08:44:50 -0500 4523ba2b2efdSGlen Barber 4524ba2b2efdSGlen Barber [not summarized] 4525ba2b2efdSGlen Barber 4526ba2b2efdSGlen Barber 4527ba2b2efdSGlen BarberRelease 2011a - 2011-01-24 10:30:16 -0500 4528ba2b2efdSGlen Barber 4529ba2b2efdSGlen Barber [not summarized] 4530ba2b2efdSGlen Barber 4531ba2b2efdSGlen Barber 4532ba2b2efdSGlen BarberRelease data2010o - 2010-11-01 09:18:23 -0400 4533ba2b2efdSGlen Barber 4534ba2b2efdSGlen Barber change to the end of DST in Fiji in 2011 4535ba2b2efdSGlen Barber 4536ba2b2efdSGlen Barber 4537ba2b2efdSGlen BarberRelease 2010n - 2010-10-25 08:19:17 -0400 4538ba2b2efdSGlen Barber 4539ba2b2efdSGlen Barber [not summarized] 4540ba2b2efdSGlen Barber 4541ba2b2efdSGlen Barber 4542ba2b2efdSGlen BarberRelease 2010m - 2010-09-27 09:24:48 -0400 4543ba2b2efdSGlen Barber 4544ba2b2efdSGlen Barber Hong Kong, Vostok, and zic.c changes 4545ba2b2efdSGlen Barber 4546ba2b2efdSGlen Barber 4547ba2b2efdSGlen BarberRelease 2010l - 2010-08-16 06:57:25 -0400 4548ba2b2efdSGlen Barber 4549ba2b2efdSGlen Barber [not summarized] 4550ba2b2efdSGlen Barber 4551ba2b2efdSGlen Barber 4552ba2b2efdSGlen BarberRelease 2010k - 2010-07-26 10:42:27 -0400 4553ba2b2efdSGlen Barber 4554ba2b2efdSGlen Barber [not summarized] 4555ba2b2efdSGlen Barber 4556ba2b2efdSGlen Barber 4557ba2b2efdSGlen BarberRelease 2010j - 2010-05-10 09:07:48 -0400 4558ba2b2efdSGlen Barber 4559ba2b2efdSGlen Barber changes for Bahía de Banderas and for version naming 4560ba2b2efdSGlen Barber 4561ba2b2efdSGlen Barber 4562ba2b2efdSGlen BarberRelease data2010i - 2010-04-16 18:50:45 -0400 4563ba2b2efdSGlen Barber 4564ba2b2efdSGlen Barber the end of DST in Morocco on 2010-08-08 4565ba2b2efdSGlen Barber 4566ba2b2efdSGlen Barber 4567ba2b2efdSGlen BarberRelease data2010h - 2010-04-05 09:58:56 -0400 4568ba2b2efdSGlen Barber 4569ba2b2efdSGlen Barber [not summarized] 4570ba2b2efdSGlen Barber 4571ba2b2efdSGlen Barber 4572ba2b2efdSGlen BarberRelease data2010g - 2010-03-24 11:14:53 -0400 4573ba2b2efdSGlen Barber 4574ba2b2efdSGlen Barber [not summarized] 4575ba2b2efdSGlen Barber 4576ba2b2efdSGlen Barber 4577ba2b2efdSGlen BarberRelease 2010f - 2010-03-22 09:45:46 -0400 4578ba2b2efdSGlen Barber 4579ba2b2efdSGlen Barber [not summarized] 4580ba2b2efdSGlen Barber 4581ba2b2efdSGlen Barber 4582ba2b2efdSGlen BarberRelease data2010e - 2010-03-08 14:24:27 -0500 4583ba2b2efdSGlen Barber 4584ba2b2efdSGlen Barber corrects the Dhaka bug found by Danvin Ruangchan 4585ba2b2efdSGlen Barber 4586ba2b2efdSGlen Barber 4587ba2b2efdSGlen BarberRelease data2010d - 2010-03-06 07:26:01 -0500 4588ba2b2efdSGlen Barber 4589ba2b2efdSGlen Barber [not summarized] 4590ba2b2efdSGlen Barber 4591ba2b2efdSGlen Barber 4592ba2b2efdSGlen BarberRelease 2010c - 2010-03-01 09:20:58 -0500 4593ba2b2efdSGlen Barber 4594ba2b2efdSGlen Barber changes including KRE's suggestion for earlier initialization of 4595ba2b2efdSGlen Barber "goahead" and "goback" structure elements 4596ba2b2efdSGlen Barber 4597ba2b2efdSGlen Barber 4598ba2b2efdSGlen BarberRelease code2010a - 2010-02-16 10:40:04 -0500 4599ba2b2efdSGlen Barber 4600ba2b2efdSGlen Barber [not summarized] 4601ba2b2efdSGlen Barber 4602ba2b2efdSGlen Barber 4603ba2b2efdSGlen BarberRelease data2010b - 2010-01-20 12:37:01 -0500 4604ba2b2efdSGlen Barber 4605ba2b2efdSGlen Barber Mexico changes 4606ba2b2efdSGlen Barber 4607ba2b2efdSGlen Barber 4608ba2b2efdSGlen BarberRelease data2010a - 2010-01-18 08:30:04 -0500 4609ba2b2efdSGlen Barber 4610ba2b2efdSGlen Barber changes to Dhaka 4611ba2b2efdSGlen Barber 4612ba2b2efdSGlen Barber 4613ba2b2efdSGlen BarberRelease data2009u - 2009-12-26 08:32:28 -0500 4614ba2b2efdSGlen Barber 4615ba2b2efdSGlen Barber changes to DST in Bangladesh 4616ba2b2efdSGlen Barber 4617ba2b2efdSGlen Barber 4618ba2b2efdSGlen BarberRelease 2009t - 2009-12-21 13:24:27 -0500 4619ba2b2efdSGlen Barber 4620ba2b2efdSGlen Barber [not summarized] 4621ba2b2efdSGlen Barber 4622ba2b2efdSGlen Barber 4623ba2b2efdSGlen BarberRelease data2009s - 2009-11-14 10:26:32 -0500 4624ba2b2efdSGlen Barber 4625ba2b2efdSGlen Barber (cosmetic) Antarctica change and the DST-in-Fiji-in-2009-and-2010 change 4626ba2b2efdSGlen Barber 4627ba2b2efdSGlen Barber 4628ba2b2efdSGlen BarberRelease 2009r - 2009-11-09 10:10:31 -0500 4629ba2b2efdSGlen Barber 4630ba2b2efdSGlen Barber "antarctica" and "tz-link.htm" changes 4631ba2b2efdSGlen Barber 4632ba2b2efdSGlen Barber 4633ba2b2efdSGlen BarberRelease 2009q - 2009-11-02 09:12:40 -0500 4634ba2b2efdSGlen Barber 4635ba2b2efdSGlen Barber with two corrections as reported by Eric Muller and Philip Newton 4636ba2b2efdSGlen Barber 4637ba2b2efdSGlen Barber 4638ba2b2efdSGlen BarberRelease data2009p - 2009-10-23 15:05:27 -0400 4639ba2b2efdSGlen Barber 4640ba2b2efdSGlen Barber Argentina (including San Luis) changes (with the correction from 4641ba2b2efdSGlen Barber Mariano Absatz) 4642ba2b2efdSGlen Barber 4643ba2b2efdSGlen Barber 4644ba2b2efdSGlen BarberRelease data2009o - 2009-10-14 16:49:38 -0400 4645ba2b2efdSGlen Barber 4646ba2b2efdSGlen Barber Samoa (commentary only), Pakistan, and Bangladesh changes 4647ba2b2efdSGlen Barber 4648ba2b2efdSGlen Barber 4649ba2b2efdSGlen BarberRelease data2009n - 2009-09-22 15:13:38 -0400 4650ba2b2efdSGlen Barber 4651ba2b2efdSGlen Barber added commentary for Argentina and a change to the end of DST in 4652ba2b2efdSGlen Barber 2009 in Pakistan 4653ba2b2efdSGlen Barber 4654ba2b2efdSGlen Barber 4655ba2b2efdSGlen BarberRelease data2009m - 2009-09-03 10:23:43 -0400 4656ba2b2efdSGlen Barber 4657ba2b2efdSGlen Barber Samoa and Palestine changes 4658ba2b2efdSGlen Barber 4659ba2b2efdSGlen Barber 4660ba2b2efdSGlen BarberRelease data2009l - 2009-08-14 09:13:07 -0400 4661ba2b2efdSGlen Barber 4662ba2b2efdSGlen Barber Samoa (comments only) and Egypt 4663ba2b2efdSGlen Barber 4664ba2b2efdSGlen Barber 4665ba2b2efdSGlen BarberRelease 2009k - 2009-07-20 09:46:08 -0400 4666ba2b2efdSGlen Barber 4667ba2b2efdSGlen Barber [not summarized] 4668ba2b2efdSGlen Barber 4669ba2b2efdSGlen Barber 4670ba2b2efdSGlen BarberRelease data2009j - 2009-06-15 06:43:59 -0400 4671ba2b2efdSGlen Barber 4672ba2b2efdSGlen Barber Bangladesh change (with a short turnaround since the DST change is 4673ba2b2efdSGlen Barber impending) 4674ba2b2efdSGlen Barber 4675ba2b2efdSGlen Barber 4676ba2b2efdSGlen BarberRelease 2009i - 2009-06-08 09:21:22 -0400 4677ba2b2efdSGlen Barber 4678ba2b2efdSGlen Barber updating for DST in Bangladesh this year 4679ba2b2efdSGlen Barber 4680ba2b2efdSGlen Barber 4681ba2b2efdSGlen BarberRelease 2009h - 2009-05-26 09:19:14 -0400 4682ba2b2efdSGlen Barber 4683ba2b2efdSGlen Barber [not summarized] 4684ba2b2efdSGlen Barber 4685ba2b2efdSGlen Barber 4686ba2b2efdSGlen BarberRelease data2009g - 2009-04-20 16:34:07 -0400 4687ba2b2efdSGlen Barber 4688ba2b2efdSGlen Barber Cairo 4689ba2b2efdSGlen Barber 4690ba2b2efdSGlen Barber 4691ba2b2efdSGlen BarberRelease data2009f - 2009-04-10 11:00:52 -0400 4692ba2b2efdSGlen Barber 4693ba2b2efdSGlen Barber correct DST in Pakistan 4694ba2b2efdSGlen Barber 4695ba2b2efdSGlen Barber 4696ba2b2efdSGlen BarberRelease 2009e - 2009-04-06 09:08:11 -0400 4697ba2b2efdSGlen Barber 4698ba2b2efdSGlen Barber [not summarized] 4699ba2b2efdSGlen Barber 4700ba2b2efdSGlen Barber 4701ba2b2efdSGlen BarberRelease 2009d - 2009-03-23 09:38:12 -0400 4702ba2b2efdSGlen Barber 4703ba2b2efdSGlen Barber Morocco, Tunisia, Argentina, and American Astronomical Society changes 4704ba2b2efdSGlen Barber 4705ba2b2efdSGlen Barber 4706ba2b2efdSGlen BarberRelease data2009c - 2009-03-16 09:47:51 -0400 4707ba2b2efdSGlen Barber 4708ba2b2efdSGlen Barber change to the start of Cuban DST 4709ba2b2efdSGlen Barber 4710ba2b2efdSGlen Barber 4711ba2b2efdSGlen BarberRelease 2009b - 2009-02-09 11:15:22 -0500 4712ba2b2efdSGlen Barber 4713ba2b2efdSGlen Barber [not summarized] 4714ba2b2efdSGlen Barber 4715ba2b2efdSGlen Barber 4716ba2b2efdSGlen BarberRelease 2009a - 2009-01-21 10:09:39 -0500 4717ba2b2efdSGlen Barber 4718ba2b2efdSGlen Barber [not summarized] 4719ba2b2efdSGlen Barber 4720ba2b2efdSGlen Barber 4721ba2b2efdSGlen BarberRelease data2008i - 2008-10-21 12:10:25 -0400 4722ba2b2efdSGlen Barber 4723ba2b2efdSGlen Barber southamerica and zone.tab files, with Argentina DST rule changes and 4724ba2b2efdSGlen Barber United States zone reordering and recommenting 4725ba2b2efdSGlen Barber 4726ba2b2efdSGlen Barber 4727ba2b2efdSGlen BarberRelease 2008h - 2008-10-13 07:33:56 -0400 4728ba2b2efdSGlen Barber 4729ba2b2efdSGlen Barber [not summarized] 4730ba2b2efdSGlen Barber 4731ba2b2efdSGlen Barber 4732ba2b2efdSGlen BarberRelease 2008g - 2008-10-06 09:03:18 -0400 4733ba2b2efdSGlen Barber 4734ba2b2efdSGlen Barber Fix a broken HTML anchor and update Brazil's DST transitions; 4735ba2b2efdSGlen Barber there's also a slight reordering of information in tz-art.htm. 4736ba2b2efdSGlen Barber 4737ba2b2efdSGlen Barber 4738ba2b2efdSGlen BarberRelease data2008f - 2008-09-09 22:33:26 -0400 4739ba2b2efdSGlen Barber 4740ba2b2efdSGlen Barber [not summarized] 4741ba2b2efdSGlen Barber 4742ba2b2efdSGlen Barber 4743ba2b2efdSGlen BarberRelease 2008e - 2008-07-28 14:11:17 -0400 4744ba2b2efdSGlen Barber 4745ba2b2efdSGlen Barber changes by Arthur David Olson and Jesper Nørgaard Welen 4746ba2b2efdSGlen Barber 4747ba2b2efdSGlen Barber 4748ba2b2efdSGlen BarberRelease data2008d - 2008-07-07 09:51:38 -0400 4749ba2b2efdSGlen Barber 4750ba2b2efdSGlen Barber changes by Arthur David Olson, Paul Eggert, and Rodrigo Severo 4751ba2b2efdSGlen Barber 4752ba2b2efdSGlen Barber 4753ba2b2efdSGlen BarberRelease data2008c - 2008-05-19 17:48:03 -0400 4754ba2b2efdSGlen Barber 4755ba2b2efdSGlen Barber Pakistan, Morocco, and Mongolia 4756ba2b2efdSGlen Barber 4757ba2b2efdSGlen Barber 4758ba2b2efdSGlen BarberRelease data2008b - 2008-03-24 08:30:59 -0400 4759ba2b2efdSGlen Barber 4760ba2b2efdSGlen Barber including renaming Asia/Calcutta to Asia/Kolkata, with a backward 4761ba2b2efdSGlen Barber link provided 4762ba2b2efdSGlen Barber 4763ba2b2efdSGlen Barber 4764ba2b2efdSGlen BarberRelease 2008a - 2008-03-08 05:42:16 -0500 4765ba2b2efdSGlen Barber 4766ba2b2efdSGlen Barber [not summarized] 4767ba2b2efdSGlen Barber 4768ba2b2efdSGlen Barber 4769ba2b2efdSGlen BarberRelease 2007k - 2007-12-31 10:25:22 -0500 4770ba2b2efdSGlen Barber 4771ba2b2efdSGlen Barber most importantly, changes to the "southamerica" file based on 4772ba2b2efdSGlen Barber Argentina's readoption of daylight saving time 4773ba2b2efdSGlen Barber 4774ba2b2efdSGlen Barber 4775ba2b2efdSGlen BarberRelease 2007j - 2007-12-03 09:51:01 -0500 4776ba2b2efdSGlen Barber 4777ba2b2efdSGlen Barber 1. eliminate the "P" (parameter) macro; 4778ba2b2efdSGlen Barber 4779ba2b2efdSGlen Barber 2. the "noncontroversial" changes circulated on the time zone 4780ba2b2efdSGlen Barber mailing list (less the changes to "logwtmp.c"); 4781ba2b2efdSGlen Barber 4782ba2b2efdSGlen Barber 3. eliminate "too many transition" errors when "min" is used in time 4783ba2b2efdSGlen Barber zone rules; 4784ba2b2efdSGlen Barber 4785ba2b2efdSGlen Barber 4. changes by Paul Eggert (including updated information for Venezuela). 4786ba2b2efdSGlen Barber 4787ba2b2efdSGlen Barber 4788ba2b2efdSGlen BarberRelease data2007i - 2007-10-30 10:28:11 -0400 4789ba2b2efdSGlen Barber 4790ba2b2efdSGlen Barber changes for Cuba and Syria 4791ba2b2efdSGlen Barber 4792ba2b2efdSGlen Barber 4793ba2b2efdSGlen BarberRelease 2007h - 2007-10-01 10:05:51 -0400 4794ba2b2efdSGlen Barber 4795ba2b2efdSGlen Barber changes by Paul Eggert, as well as an updated link to the ICU 4796ba2b2efdSGlen Barber project in tz-link.htm 4797ba2b2efdSGlen Barber 4798ba2b2efdSGlen Barber 4799ba2b2efdSGlen BarberRelease 2007g - 2007-08-20 10:47:59 -0400 4800ba2b2efdSGlen Barber 4801ba2b2efdSGlen Barber changes by Paul Eggert 4802ba2b2efdSGlen Barber 4803ba2b2efdSGlen Barber The "leapseconds" file has been updated to incorporate the most 4804ba2b2efdSGlen Barber recent International Earth Rotation and Reference Systems Service 4805ba2b2efdSGlen Barber (IERS) bulletin. 4806ba2b2efdSGlen Barber 4807ba2b2efdSGlen Barber There's an addition to tz-art.htm regarding the television show "Medium". 4808ba2b2efdSGlen Barber 4809ba2b2efdSGlen Barber 4810ba2b2efdSGlen BarberRelease 2007f - 2007-05-07 10:46:46 -0400 4811ba2b2efdSGlen Barber 4812ba2b2efdSGlen Barber changes by Paul Eggert (including Haiti, Turks and Caicos, and New 4813ba2b2efdSGlen Barber Zealand) 4814ba2b2efdSGlen Barber 4815ba2b2efdSGlen Barber changes to zic.c to allow hour values greater than 24 (along with 4816ba2b2efdSGlen Barber Paul's improved time value overflow checking) 4817ba2b2efdSGlen Barber 4818ba2b2efdSGlen Barber 4819ba2b2efdSGlen BarberRelease 2007e - 2007-04-02 10:11:52 -0400 4820ba2b2efdSGlen Barber 4821ba2b2efdSGlen Barber Syria and Honduras changes by Paul Eggert 4822ba2b2efdSGlen Barber 4823ba2b2efdSGlen Barber zic.c variable renaming changes by Arthur David Olson 4824ba2b2efdSGlen Barber 4825ba2b2efdSGlen Barber 4826ba2b2efdSGlen BarberRelease 2007d - 2007-03-20 08:48:30 -0400 4827ba2b2efdSGlen Barber 4828ba2b2efdSGlen Barber changes by Paul Eggert 4829ba2b2efdSGlen Barber 4830ba2b2efdSGlen Barber the elimination of white space at the ends of lines 4831ba2b2efdSGlen Barber 4832ba2b2efdSGlen Barber 4833ba2b2efdSGlen BarberRelease 2007c - 2007-02-26 09:09:37 -0500 4834ba2b2efdSGlen Barber 4835ba2b2efdSGlen Barber changes by Paul Eggert 4836ba2b2efdSGlen Barber 4837ba2b2efdSGlen Barber 4838ba2b2efdSGlen BarberRelease 2007b - 2007-02-12 09:34:20 -0500 4839ba2b2efdSGlen Barber 4840ba2b2efdSGlen Barber Paul Eggert's proposed change to the quotation handling logic in zic.c. 4841ba2b2efdSGlen Barber 4842ba2b2efdSGlen Barber changes to the commentary in "leapseconds" reflecting the IERS 4843ba2b2efdSGlen Barber announcement that there is to be no positive leap second at the end 4844ba2b2efdSGlen Barber of June 2007. 4845ba2b2efdSGlen Barber 4846ba2b2efdSGlen Barber 4847ba2b2efdSGlen BarberRelease 2007a - 2007-01-08 12:28:29 -0500 4848ba2b2efdSGlen Barber 4849ba2b2efdSGlen Barber changes by Paul Eggert 4850ba2b2efdSGlen Barber 48519f9fc6bbSPhilip Paeps Derick Rethans's Asmara change 4852ba2b2efdSGlen Barber 4853ba2b2efdSGlen Barber Oscar van Vlijmen's Easter Island local mean time change 4854ba2b2efdSGlen Barber 4855ba2b2efdSGlen Barber symbolic link changes 4856ba2b2efdSGlen Barber 4857ba2b2efdSGlen Barber 4858ba2b2efdSGlen BarberRelease 2006p - 2006-11-27 08:54:27 -0500 4859ba2b2efdSGlen Barber 4860ba2b2efdSGlen Barber changes by Paul Eggert 4861ba2b2efdSGlen Barber 4862ba2b2efdSGlen Barber 4863ba2b2efdSGlen BarberRelease 2006o - 2006-11-06 09:18:07 -0500 4864ba2b2efdSGlen Barber 4865ba2b2efdSGlen Barber changes by Paul Eggert 4866ba2b2efdSGlen Barber 4867ba2b2efdSGlen Barber 4868ba2b2efdSGlen BarberRelease 2006n - 2006-10-10 11:32:06 -0400 4869ba2b2efdSGlen Barber 4870ba2b2efdSGlen Barber changes by Paul Eggert 4871ba2b2efdSGlen Barber 4872ba2b2efdSGlen Barber 4873ba2b2efdSGlen BarberRelease 2006m - 2006-10-02 15:32:35 -0400 4874ba2b2efdSGlen Barber 4875ba2b2efdSGlen Barber changes for Uruguay, Palestine, and Egypt by Paul Eggert 4876ba2b2efdSGlen Barber 4877ba2b2efdSGlen Barber (minimalist) changes to zic.8 to clarify "until" information 4878ba2b2efdSGlen Barber 4879ba2b2efdSGlen Barber 4880ba2b2efdSGlen BarberRelease data2006l - 2006-09-18 12:58:11 -0400 4881ba2b2efdSGlen Barber 4882ba2b2efdSGlen Barber Paul's best-effort work on this coming weekend's Egypt time change 4883ba2b2efdSGlen Barber 4884ba2b2efdSGlen Barber 4885ba2b2efdSGlen BarberRelease 2006k - 2006-08-28 12:19:09 -0400 4886ba2b2efdSGlen Barber 4887ba2b2efdSGlen Barber changes by Paul Eggert 4888ba2b2efdSGlen Barber 4889ba2b2efdSGlen Barber 4890ba2b2efdSGlen BarberRelease 2006j - 2006-08-21 09:56:32 -0400 4891ba2b2efdSGlen Barber 4892ba2b2efdSGlen Barber changes by Paul Eggert 4893ba2b2efdSGlen Barber 4894ba2b2efdSGlen Barber 4895ba2b2efdSGlen BarberRelease code2006i - 2006-08-07 12:30:55 -0400 4896ba2b2efdSGlen Barber 4897ba2b2efdSGlen Barber localtime.c fixes 4898ba2b2efdSGlen Barber 4899ba2b2efdSGlen Barber Ken Pizzini's conversion script 4900ba2b2efdSGlen Barber 4901ba2b2efdSGlen Barber 4902ba2b2efdSGlen BarberRelease code2006h - 2006-07-24 09:19:37 -0400 4903ba2b2efdSGlen Barber 4904ba2b2efdSGlen Barber adds public domain notices to four files 4905ba2b2efdSGlen Barber 4906ba2b2efdSGlen Barber includes a fix for transition times being off by a second 4907ba2b2efdSGlen Barber 4908ba2b2efdSGlen Barber adds a new recording to the "arts" file (information courtesy Colin Bowern) 4909ba2b2efdSGlen Barber 4910ba2b2efdSGlen Barber 4911ba2b2efdSGlen BarberRelease 2006g - 2006-05-08 17:18:09 -0400 4912ba2b2efdSGlen Barber 4913ba2b2efdSGlen Barber northamerica changes by Paul Eggert 4914ba2b2efdSGlen Barber 4915ba2b2efdSGlen Barber 4916ba2b2efdSGlen BarberRelease 2006f - 2006-05-01 11:46:00 -0400 4917ba2b2efdSGlen Barber 4918ba2b2efdSGlen Barber a missing version number problem is fixed (with thanks to Bradley 4919ba2b2efdSGlen Barber White for catching the problem) 4920ba2b2efdSGlen Barber 4921ba2b2efdSGlen Barber 4922ba2b2efdSGlen BarberRelease 2006d - 2006-04-17 14:33:43 -0400 4923ba2b2efdSGlen Barber 4924ba2b2efdSGlen Barber changes by Paul Eggert 4925ba2b2efdSGlen Barber 4926ba2b2efdSGlen Barber added new items to tz-arts.htm that were found by Paul 4927ba2b2efdSGlen Barber 4928ba2b2efdSGlen Barber 4929ba2b2efdSGlen BarberRelease 2006c - 2006-04-03 10:09:32 -0400 4930ba2b2efdSGlen Barber 4931ba2b2efdSGlen Barber two sets of data changes by Paul Eggert 4932ba2b2efdSGlen Barber 4933ba2b2efdSGlen Barber a fencepost error fix in zic.c 4934ba2b2efdSGlen Barber 4935ba2b2efdSGlen Barber changes to zic.c and the "europe" file to minimize differences 4936ba2b2efdSGlen Barber between output produced by the old 32-bit zic and the new 64-bit 4937ba2b2efdSGlen Barber version 4938ba2b2efdSGlen Barber 4939ba2b2efdSGlen Barber 4940ba2b2efdSGlen BarberRelease 2006b - 2006-02-20 10:08:18 -0500 4941ba2b2efdSGlen Barber [tz32code2006b + tz64code2006b + tzdata2006b] 4942ba2b2efdSGlen Barber 4943ba2b2efdSGlen Barber 64-bit code 4944ba2b2efdSGlen Barber 4945ba2b2efdSGlen Barber All SCCS IDs were bumped to "8.1" for this release. 4946ba2b2efdSGlen Barber 4947ba2b2efdSGlen Barber 4948ba2b2efdSGlen BarberRelease 2006a - 2006-01-30 08:59:31 -0500 4949ba2b2efdSGlen Barber 4950ba2b2efdSGlen Barber changes by Paul Eggert (in particular, Indiana time zone moves) 4951ba2b2efdSGlen Barber 4952ba2b2efdSGlen Barber an addition to the zic manual page to describe how special-case 4953ba2b2efdSGlen Barber transitions are handled 4954ba2b2efdSGlen Barber 4955ba2b2efdSGlen Barber 4956ba2b2efdSGlen BarberRelease 2005r - 2005-12-27 09:27:13 -0500 4957ba2b2efdSGlen Barber 4958ba2b2efdSGlen Barber Canadian changes by Paul Eggert 4959ba2b2efdSGlen Barber 4960ba2b2efdSGlen Barber They also add "<pre>" directives to time zone data files and reflect 4961ba2b2efdSGlen Barber changes to warning message logic in "zdump.c" (but with calls to 4962ba2b2efdSGlen Barber "gettext" kept unbundled at the suggestion of Ken Pizzini). 4963ba2b2efdSGlen Barber 4964ba2b2efdSGlen Barber 4965ba2b2efdSGlen BarberRelease 2005q - 2005-12-13 09:17:09 -0500 4966ba2b2efdSGlen Barber 4967ba2b2efdSGlen Barber Nothing earth-shaking here: 4968ba2b2efdSGlen Barber 1. Electronic mail addresses have been removed. 4969ba2b2efdSGlen Barber 2. Casts of the return value of exit have been removed. 4970ba2b2efdSGlen Barber 3. Casts of the argument of is.* macros have been added. 4971ba2b2efdSGlen Barber 4. Indentation in one section of zic.c has been fixed. 4972ba2b2efdSGlen Barber 5. References to dead URLs in the data files have been dealt with. 4973ba2b2efdSGlen Barber 4974ba2b2efdSGlen Barber 4975ba2b2efdSGlen BarberRelease 2005p - 2005-12-05 10:30:53 -0500 4976ba2b2efdSGlen Barber 4977ba2b2efdSGlen Barber "systemv", "tz-link.htm", and "zdump.c" changes 4978ba2b2efdSGlen Barber (less the casts of arguments to the is* macros) 4979ba2b2efdSGlen Barber 4980ba2b2efdSGlen Barber 4981ba2b2efdSGlen BarberRelease 2005o - 2005-11-28 10:55:26 -0500 4982ba2b2efdSGlen Barber 4983ba2b2efdSGlen Barber Georgia, Cuba, Nicaragua, and Jordan changes by Paul Eggert 4984ba2b2efdSGlen Barber 4985ba2b2efdSGlen Barber zdump.c lint fixes by Arthur David Olson 4986ba2b2efdSGlen Barber 4987ba2b2efdSGlen Barber 4988ba2b2efdSGlen BarberRelease 2005n - 2005-10-03 09:44:09 -0400 4989ba2b2efdSGlen Barber 4990ba2b2efdSGlen Barber changes by Paul Eggert (both the Uruguay changes and the Kyrgyzstan 4991ba2b2efdSGlen Barber et al. changes) 4992ba2b2efdSGlen Barber 4993ba2b2efdSGlen Barber 4994ba2b2efdSGlen BarberRelease 2005m - 2005-08-29 12:15:40 -0400 4995ba2b2efdSGlen Barber 4996ba2b2efdSGlen Barber changes by Paul Eggert (with a small tweak to the tz-art change) 4997ba2b2efdSGlen Barber 4998ba2b2efdSGlen Barber a declaration of an unused variable has been removed from zdump.c 4999ba2b2efdSGlen Barber 5000ba2b2efdSGlen Barber 5001ba2b2efdSGlen BarberRelease 2005l - 2005-08-22 12:06:39 -0400 5002ba2b2efdSGlen Barber 5003ba2b2efdSGlen Barber changes by Paul Eggert 5004ba2b2efdSGlen Barber 5005ba2b2efdSGlen Barber overflow/underflow checks by Arthur David Olson, minus changes to 5006ba2b2efdSGlen Barber the "Theory" file about the pending addition of 64-bit data (I grow 5007ba2b2efdSGlen Barber less confident of the changes being accepted with each passing day, 5008ba2b2efdSGlen Barber and the changes no longer increase the data files nine-fold--there's 5009ba2b2efdSGlen Barber less than a doubling in size by my local Sun's reckoning) 5010ba2b2efdSGlen Barber 5011ba2b2efdSGlen Barber 5012ba2b2efdSGlen BarberRelease 2005k - 2005-07-14 14:14:24 -0400 5013ba2b2efdSGlen Barber 5014ba2b2efdSGlen Barber The "leapseconds" file has been edited to reflect the recently 5015ba2b2efdSGlen Barber announced leap second at the end of 2005. 5016ba2b2efdSGlen Barber 5017ba2b2efdSGlen Barber I've also deleted electronic mail addresses from the files as an 5018ba2b2efdSGlen Barber anti-spam measure. 5019ba2b2efdSGlen Barber 5020ba2b2efdSGlen Barber 5021ba2b2efdSGlen BarberRelease 2005j - 2005-06-13 14:34:13 -0400 5022ba2b2efdSGlen Barber 5023ba2b2efdSGlen Barber These reflect changes to limit the length of time zone abbreviations 5024ba2b2efdSGlen Barber and the characters used in those abbreviations. 5025ba2b2efdSGlen Barber 5026ba2b2efdSGlen Barber There are also changes to handle POSIX-style "quoted" timezone 5027ba2b2efdSGlen Barber environment variables. 5028ba2b2efdSGlen Barber 5029ba2b2efdSGlen Barber The changes were circulated on the time zone mailing list; the only 5030ba2b2efdSGlen Barber change since then was the removal of a couple of minimum-length of 5031ba2b2efdSGlen Barber abbreviation checks. 5032ba2b2efdSGlen Barber 5033ba2b2efdSGlen Barber 5034ba2b2efdSGlen BarberRelease data2005i - 2005-04-21 15:04:16 -0400 5035ba2b2efdSGlen Barber 5036ba2b2efdSGlen Barber changes (most importantly to Nicaragua and Haiti) by Paul Eggert 5037ba2b2efdSGlen Barber 5038ba2b2efdSGlen Barber 5039ba2b2efdSGlen BarberRelease 2005h - 2005-04-04 11:24:47 -0400 5040ba2b2efdSGlen Barber 5041ba2b2efdSGlen Barber changes by Paul Eggert 5042ba2b2efdSGlen Barber 5043ba2b2efdSGlen Barber minor changes to Makefile and zdump.c to produce more useful output 5044ba2b2efdSGlen Barber when doing a "make typecheck" 5045ba2b2efdSGlen Barber 5046ba2b2efdSGlen Barber 5047ba2b2efdSGlen BarberRelease 2005g - 2005-03-14 10:11:21 -0500 5048ba2b2efdSGlen Barber 5049ba2b2efdSGlen Barber changes by Paul Eggert (a change to current DST rules in Uruguay and 5050ba2b2efdSGlen Barber an update to a link to time zone software) 5051ba2b2efdSGlen Barber 5052ba2b2efdSGlen Barber 5053ba2b2efdSGlen BarberRelease 2005f - 2005-03-01 08:45:32 -0500 5054ba2b2efdSGlen Barber 5055ba2b2efdSGlen Barber data and documentation changes by Paul Eggert 5056ba2b2efdSGlen Barber 5057ba2b2efdSGlen Barber 5058ba2b2efdSGlen BarberRelease 2005e - 2005-02-10 15:59:44 -0500 5059ba2b2efdSGlen Barber 5060ba2b2efdSGlen Barber [not summarized] 5061ba2b2efdSGlen Barber 5062ba2b2efdSGlen Barber 5063ba2b2efdSGlen BarberRelease code2005d - 2005-01-31 09:21:47 -0500 5064ba2b2efdSGlen Barber 5065ba2b2efdSGlen Barber make zic complain about links to links if the -v flag is used 5066ba2b2efdSGlen Barber 5067ba2b2efdSGlen Barber have "make public" do more code checking 5068ba2b2efdSGlen Barber 5069ba2b2efdSGlen Barber add an include to "localtime.c" for the benefit of gcc systems 5070ba2b2efdSGlen Barber 5071ba2b2efdSGlen Barber 5072ba2b2efdSGlen BarberRelease 2005c - 2005-01-17 18:36:29 -0500 5073ba2b2efdSGlen Barber 5074ba2b2efdSGlen Barber get better results when mktime runs on a system where time_t is double 5075ba2b2efdSGlen Barber 5076ba2b2efdSGlen Barber changes to the data files (most importantly to Paraguay) 5077ba2b2efdSGlen Barber 5078ba2b2efdSGlen Barber 5079ba2b2efdSGlen BarberRelease 2005b - 2005-01-10 09:19:54 -0500 5080ba2b2efdSGlen Barber 5081ba2b2efdSGlen Barber Get localtime and gmtime working on systems with exotic time_t types. 5082ba2b2efdSGlen Barber 5083ba2b2efdSGlen Barber Update the leap second commentary in the "leapseconds" file. 5084ba2b2efdSGlen Barber 5085ba2b2efdSGlen Barber 5086ba2b2efdSGlen BarberRelease 2005a - 2005-01-01 13:13:44 -0500 5087ba2b2efdSGlen Barber 5088ba2b2efdSGlen Barber [not summarized] 5089ba2b2efdSGlen Barber 5090ba2b2efdSGlen Barber 5091ba2b2efdSGlen BarberRelease code2004i - 2004-12-14 13:42:58 -0500 5092ba2b2efdSGlen Barber 5093ba2b2efdSGlen Barber Deal with systems where time_t is unsigned. 5094ba2b2efdSGlen Barber 5095ba2b2efdSGlen Barber 5096ba2b2efdSGlen BarberRelease code2004h - 2004-12-07 11:40:18 -0500 5097ba2b2efdSGlen Barber 5098ba2b2efdSGlen Barber 64-bit-time_t changes 5099ba2b2efdSGlen Barber 5100ba2b2efdSGlen Barber 5101ba2b2efdSGlen BarberRelease 2004g - 2004-11-02 09:06:01 -0500 5102ba2b2efdSGlen Barber 5103ba2b2efdSGlen Barber update to Cuba (taking effect this weekend) 5104ba2b2efdSGlen Barber 5105ba2b2efdSGlen Barber other changes by Paul Eggert 5106ba2b2efdSGlen Barber 5107ba2b2efdSGlen Barber correction of the spelling of Oslo 5108ba2b2efdSGlen Barber 5109ba2b2efdSGlen Barber changed versions of difftime.c and private.h 5110ba2b2efdSGlen Barber 5111ba2b2efdSGlen Barber 5112ba2b2efdSGlen BarberRelease code2004f - 2004-10-21 10:25:22 -0400 5113ba2b2efdSGlen Barber 5114ba2b2efdSGlen Barber Cope with wide-ranging tm_year values. 5115ba2b2efdSGlen Barber 5116ba2b2efdSGlen Barber 5117ba2b2efdSGlen BarberRelease 2004e - 2004-10-11 14:47:21 -0400 5118ba2b2efdSGlen Barber 5119ba2b2efdSGlen Barber Brazil/Argentina/Israel changes by Paul Eggert 5120ba2b2efdSGlen Barber 5121ba2b2efdSGlen Barber changes to tz-link.htm by Paul 5122ba2b2efdSGlen Barber 5123ba2b2efdSGlen Barber one small fix to Makefile 5124ba2b2efdSGlen Barber 5125ba2b2efdSGlen Barber 5126ba2b2efdSGlen BarberRelease 2004d - 2004-09-22 08:27:29 -0400 5127ba2b2efdSGlen Barber 5128ba2b2efdSGlen Barber Avoid overflow problems when TM_YEAR_BASE is added to an integer. 5129ba2b2efdSGlen Barber 5130ba2b2efdSGlen Barber 5131ba2b2efdSGlen BarberRelease 2004c - 2004-08-11 12:06:26 -0400 5132ba2b2efdSGlen Barber 5133ba2b2efdSGlen Barber asctime-related changes 5134ba2b2efdSGlen Barber 5135ba2b2efdSGlen Barber (variants of) some of the documentation changes suggested by Paul Eggert 5136ba2b2efdSGlen Barber 5137ba2b2efdSGlen Barber 5138ba2b2efdSGlen BarberRelease 2004b - 2004-07-19 14:33:35 -0400 5139ba2b2efdSGlen Barber 5140ba2b2efdSGlen Barber data changes by Paul Eggert - most importantly, updates for Argentina 5141ba2b2efdSGlen Barber 5142ba2b2efdSGlen Barber 5143ba2b2efdSGlen BarberRelease 2004a - 2004-05-27 12:00:47 -0400 5144ba2b2efdSGlen Barber 5145ba2b2efdSGlen Barber changes by Paul Eggert 5146ba2b2efdSGlen Barber 5147ba2b2efdSGlen Barber Handle DST transitions that occur at the end of a month in some 5148ba2b2efdSGlen Barber years but at the start of the following month in other years. 5149ba2b2efdSGlen Barber 5150ba2b2efdSGlen Barber Add a copy of the correspondence that's the basis for claims about 5151ba2b2efdSGlen Barber DST in the Navajo Nation. 5152ba2b2efdSGlen Barber 5153ba2b2efdSGlen Barber 5154ba2b2efdSGlen BarberRelease 2003e - 2003-12-15 09:36:47 -0500 5155ba2b2efdSGlen Barber 5156ba2b2efdSGlen Barber changes by Arthur David Olson (primarily code changes) 5157ba2b2efdSGlen Barber 5158ba2b2efdSGlen Barber changes by Paul Eggert (primarily data changes) 5159ba2b2efdSGlen Barber 5160ba2b2efdSGlen Barber minor changes to "Makefile" and "northamerica" (in the latter case, 5161ba2b2efdSGlen Barber optimization of the "Toronto" rules) 5162ba2b2efdSGlen Barber 5163ba2b2efdSGlen Barber 5164ba2b2efdSGlen BarberRelease 2003d - 2003-10-06 09:34:44 -0400 5165ba2b2efdSGlen Barber 5166ba2b2efdSGlen Barber changes by Paul Eggert 5167ba2b2efdSGlen Barber 5168ba2b2efdSGlen Barber 5169ba2b2efdSGlen BarberRelease 2003c - 2003-09-16 10:47:05 -0400 5170ba2b2efdSGlen Barber 5171ba2b2efdSGlen Barber Fix bad returns in zic.c's inleap function. 5172ba2b2efdSGlen Barber Thanks to Bradley White for catching the problem! 5173ba2b2efdSGlen Barber 5174ba2b2efdSGlen Barber 5175ba2b2efdSGlen BarberRelease 2003b - 2003-09-16 07:13:44 -0400 5176ba2b2efdSGlen Barber 5177ba2b2efdSGlen Barber Add a "--version" option (and documentation) to the zic and zdump commands. 5178ba2b2efdSGlen Barber 5179ba2b2efdSGlen Barber changes to overflow/underflow checking in zic 5180ba2b2efdSGlen Barber 5181ba2b2efdSGlen Barber a localtime typo fix. 5182ba2b2efdSGlen Barber 5183ba2b2efdSGlen Barber Update the leapseconds and tz-art.htm files. 5184ba2b2efdSGlen Barber 5185ba2b2efdSGlen Barber 5186ba2b2efdSGlen BarberRelease 2003a - 2003-03-24 09:30:54 -0500 5187ba2b2efdSGlen Barber 5188ba2b2efdSGlen Barber changes by Paul Eggert 5189ba2b2efdSGlen Barber 5190ba2b2efdSGlen Barber a few additions and modifications to the tz-art.htm file 5191ba2b2efdSGlen Barber 5192ba2b2efdSGlen Barber 5193ba2b2efdSGlen BarberRelease 2002d - 2002-10-15 13:12:42 -0400 5194ba2b2efdSGlen Barber 5195ba2b2efdSGlen Barber changes by Paul Eggert, less the "Britain (UK)" change in iso3166.tab 5196ba2b2efdSGlen Barber 5197ba2b2efdSGlen Barber There's also a new time zone quote in "tz-art.htm". 5198ba2b2efdSGlen Barber 5199ba2b2efdSGlen Barber 5200ba2b2efdSGlen BarberRelease 2002c - 2002-04-04 11:55:20 -0500 5201ba2b2efdSGlen Barber 5202ba2b2efdSGlen Barber changes by Paul Eggert 5203ba2b2efdSGlen Barber 5204ba2b2efdSGlen Barber Change zic.c to avoid creating symlinks to files that don't exist. 5205ba2b2efdSGlen Barber 5206ba2b2efdSGlen Barber 5207ba2b2efdSGlen BarberRelease 2002b - 2002-01-28 12:56:03 -0500 5208ba2b2efdSGlen Barber 5209ba2b2efdSGlen Barber [These change notes are for Release 2002a, which was corrupted. 5210ba2b2efdSGlen Barber 2002b was a corrected version of 2002a.] 5211ba2b2efdSGlen Barber 5212ba2b2efdSGlen Barber changes by Paul Eggert 5213ba2b2efdSGlen Barber 5214ba2b2efdSGlen Barber Update the "leapseconds" file to note that there'll be no leap 5215ba2b2efdSGlen Barber second at the end of June, 2002. 5216ba2b2efdSGlen Barber 5217ba2b2efdSGlen Barber Change "zic.c" to deal with a problem in handling the "Asia/Bishkek" zone. 5218ba2b2efdSGlen Barber 5219ba2b2efdSGlen Barber Change to "difftime.c" to avoid sizeof problems. 5220ba2b2efdSGlen Barber 5221ba2b2efdSGlen Barber 5222ba2b2efdSGlen BarberRelease 2001d - 2001-10-09 13:31:32 -0400 5223ba2b2efdSGlen Barber 5224ba2b2efdSGlen Barber changes by Paul Eggert 5225ba2b2efdSGlen Barber 5226ba2b2efdSGlen Barber 5227ba2b2efdSGlen BarberRelease 2001c - 2001-06-05 13:59:55 -0400 5228ba2b2efdSGlen Barber 5229ba2b2efdSGlen Barber changes by Paul Eggert and Andrew Brown 5230ba2b2efdSGlen Barber 5231ba2b2efdSGlen Barber 5232ba2b2efdSGlen BarberRelease 2001b - 2001-04-05 16:44:38 -0400 5233ba2b2efdSGlen Barber 5234ba2b2efdSGlen Barber changes by Paul Eggert (modulo jnorgard's typo fix) 5235ba2b2efdSGlen Barber 5236ba2b2efdSGlen Barber tz-art.htm has been HTMLified. 5237ba2b2efdSGlen Barber 5238ba2b2efdSGlen Barber 5239ba2b2efdSGlen BarberRelease 2001a - 2001-03-13 12:57:44 -0500 5240ba2b2efdSGlen Barber 5241ba2b2efdSGlen Barber changes by Paul Eggert 5242ba2b2efdSGlen Barber 5243ba2b2efdSGlen Barber An addition to the "leapseconds" file: comments with the text of the 5244ba2b2efdSGlen Barber latest IERS leap second notice. 5245ba2b2efdSGlen Barber 5246ba2b2efdSGlen Barber Trailing white space has been removed from data file lines, and 5247ba2b2efdSGlen Barber repeated spaces in "Rule Jordan" lines in the "asia" file have been 5248ba2b2efdSGlen Barber converted to tabs. 5249ba2b2efdSGlen Barber 5250ba2b2efdSGlen Barber 5251ba2b2efdSGlen BarberRelease 2000h - 2000-12-14 15:33:38 -0500 5252ba2b2efdSGlen Barber 5253ba2b2efdSGlen Barber changes by Paul Eggert 5254ba2b2efdSGlen Barber 5255ba2b2efdSGlen Barber one typo fix in the "art" file 5256ba2b2efdSGlen Barber 5257ba2b2efdSGlen Barber With providence, this is the last update of the millennium. 5258ba2b2efdSGlen Barber 5259ba2b2efdSGlen Barber 5260ba2b2efdSGlen BarberRelease 2000g - 2000-10-10 11:35:22 -0400 5261ba2b2efdSGlen Barber 5262ba2b2efdSGlen Barber changes by Paul Eggert 5263ba2b2efdSGlen Barber 5264ba2b2efdSGlen Barber correction of John Mackin's name submitted by Robert Elz 5265ba2b2efdSGlen Barber 5266ba2b2efdSGlen Barber Garry Shandling's Daylight Saving Time joke (!?!) from the recent 5267ba2b2efdSGlen Barber Emmy Awards broadcast. 5268ba2b2efdSGlen Barber 5269ba2b2efdSGlen Barber 5270ba2b2efdSGlen BarberRelease 2000f - 2000-08-10 09:31:58 -0400 5271ba2b2efdSGlen Barber 5272ba2b2efdSGlen Barber changes by Paul Eggert 5273ba2b2efdSGlen Barber 5274ba2b2efdSGlen Barber Added information in "tz-art.htm" on a Seinfeld reference to DST. 5275ba2b2efdSGlen Barber 5276ba2b2efdSGlen Barber Error checking and messages in the "yearistype" script have been 5277ba2b2efdSGlen Barber improved. 5278ba2b2efdSGlen Barber 5279ba2b2efdSGlen Barber 5280ba2b2efdSGlen BarberRelease 2000e - 2000-07-31 09:27:54 -0400 5281ba2b2efdSGlen Barber 5282ba2b2efdSGlen Barber data changes by Paul Eggert 5283ba2b2efdSGlen Barber 5284ba2b2efdSGlen Barber a change to the default value of the defined constant HAVE_STRERROR 5285ba2b2efdSGlen Barber 5286ba2b2efdSGlen Barber the addition of a Dave Barry quote on DST to the tz-arts file 5287ba2b2efdSGlen Barber 5288ba2b2efdSGlen Barber 5289ba2b2efdSGlen BarberRelease 2000d - 2000-04-20 15:43:04 -0400 5290ba2b2efdSGlen Barber 5291ba2b2efdSGlen Barber changes to the documentation and code of strftime for C99 conformance 5292ba2b2efdSGlen Barber 5293ba2b2efdSGlen Barber a bug fix for date.c 5294ba2b2efdSGlen Barber 5295ba2b2efdSGlen Barber These are based on (though modified from) changes by Paul Eggert. 5296ba2b2efdSGlen Barber 5297ba2b2efdSGlen Barber 5298ba2b2efdSGlen BarberRelease 2000c - 2000-03-04 10:31:43 -0500 5299ba2b2efdSGlen Barber 5300ba2b2efdSGlen Barber changes by Paul Eggert 5301ba2b2efdSGlen Barber 5302ba2b2efdSGlen Barber 5303ba2b2efdSGlen BarberRelease 2000b - 2000-02-21 12:16:29 -0500 5304ba2b2efdSGlen Barber 5305ba2b2efdSGlen Barber changes by Paul Eggert and Joseph Myers 5306ba2b2efdSGlen Barber 5307ba2b2efdSGlen Barber modest tweaks to the tz-art.htm and tz-link.htm files 5308ba2b2efdSGlen Barber 5309ba2b2efdSGlen Barber 5310ba2b2efdSGlen BarberRelease 2000a - 2000-01-18 09:21:26 -0500 5311ba2b2efdSGlen Barber 5312ba2b2efdSGlen Barber changes by Paul Eggert 5313ba2b2efdSGlen Barber 5314ba2b2efdSGlen Barber The two hypertext documents have also been renamed. 5315ba2b2efdSGlen Barber 5316ba2b2efdSGlen Barber 5317ba2b2efdSGlen BarberRelease code1999i-data1999j - 1999-11-15 18:43:22 -0500 5318ba2b2efdSGlen Barber 5319ba2b2efdSGlen Barber Paul Eggert's changes 5320ba2b2efdSGlen Barber 5321ba2b2efdSGlen Barber additions to the "zic" manual page and the "Arts.htm" file 5322ba2b2efdSGlen Barber 5323ba2b2efdSGlen Barber 5324ba2b2efdSGlen BarberRelease code1999h-data1999i - 1999-11-08 14:55:21 -0500 5325ba2b2efdSGlen Barber 5326ba2b2efdSGlen Barber [not summarized] 5327ba2b2efdSGlen Barber 5328ba2b2efdSGlen Barber 5329ba2b2efdSGlen BarberRelease data1999h - 1999-10-07 03:50:29 -0400 5330ba2b2efdSGlen Barber 5331ba2b2efdSGlen Barber changes by Paul Eggert to "europe" (most importantly, fixing 5332ba2b2efdSGlen Barber Lithuania and Estonia) 5333ba2b2efdSGlen Barber 5334ba2b2efdSGlen Barber 5335ba2b2efdSGlen BarberRelease 1999g - 1999-09-28 11:06:18 -0400 5336ba2b2efdSGlen Barber 5337ba2b2efdSGlen Barber data changes by Paul Eggert (most importantly, the change for 5338ba2b2efdSGlen Barber Lebanon that buys correctness for this coming Sunday) 5339ba2b2efdSGlen Barber 5340ba2b2efdSGlen Barber The "code" file contains changes to "Makefile" and "checktab.awk" to 5341ba2b2efdSGlen Barber allow better checking of time zone files before they are published. 5342ba2b2efdSGlen Barber 5343ba2b2efdSGlen Barber 5344ba2b2efdSGlen BarberRelease 1999f - 1999-09-23 09:48:14 -0400 5345ba2b2efdSGlen Barber 5346ba2b2efdSGlen Barber changes by Arthur David Olson and Paul Eggert 5347ba2b2efdSGlen Barber 5348ba2b2efdSGlen Barber 5349ba2b2efdSGlen BarberRelease 1999e - 1999-08-17 15:20:54 -0400 5350ba2b2efdSGlen Barber 5351ba2b2efdSGlen Barber changes circulated by Paul Eggert, although the change to handling 5352ba2b2efdSGlen Barber of DST-specifying timezone names has been commented out for now 5353ba2b2efdSGlen Barber (search for "XXX" in "localtime.c" for details). These files also 5354ba2b2efdSGlen Barber do not make any changes to the start of DST in Brazil. 5355ba2b2efdSGlen Barber 5356ba2b2efdSGlen Barber In addition to Paul's changes, there are updates to "Arts.htm" and 5357ba2b2efdSGlen Barber cleanups of URLs. 5358ba2b2efdSGlen Barber 5359ba2b2efdSGlen Barber 5360ba2b2efdSGlen BarberRelease 1999d - 1999-03-30 11:31:07 -0500 5361ba2b2efdSGlen Barber 5362ba2b2efdSGlen Barber changes by Paul Eggert 5363ba2b2efdSGlen Barber 5364ba2b2efdSGlen Barber The Makefile's "make public" rule has also been changed to do a test 5365ba2b2efdSGlen Barber compile of each individual time zone data file (which should help 5366ba2b2efdSGlen Barber avoid problems such as the one we had with Nicosia). 5367ba2b2efdSGlen Barber 5368ba2b2efdSGlen Barber 5369ba2b2efdSGlen BarberRelease 1999c - 1999-03-25 09:47:47 -0500 5370ba2b2efdSGlen Barber 5371ba2b2efdSGlen Barber changes by Paul Eggert, most importantly the change for Chile. 5372ba2b2efdSGlen Barber 5373ba2b2efdSGlen Barber 5374ba2b2efdSGlen BarberRelease 1999b - 1999-02-01 17:51:44 -0500 5375ba2b2efdSGlen Barber 5376ba2b2efdSGlen Barber changes by Paul Eggert 5377ba2b2efdSGlen Barber 5378ba2b2efdSGlen Barber code changes (suggested by Mani Varadarajan, mani at be.com) for 5379ba2b2efdSGlen Barber correct handling of symbolic links when building using a relative directory 5380ba2b2efdSGlen Barber 5381ba2b2efdSGlen Barber code changes to generate correct messages for failed links 5382ba2b2efdSGlen Barber 5383ba2b2efdSGlen Barber updates to the URLs in Arts.htm 5384ba2b2efdSGlen Barber 5385ba2b2efdSGlen Barber 5386ba2b2efdSGlen BarberRelease 1999a - 1999-01-19 16:20:29 -0500 5387ba2b2efdSGlen Barber 5388ba2b2efdSGlen Barber error message internationalizations and corrections in zic.c and 5389ba2b2efdSGlen Barber zdump.c (as suggested by Vladimir Michl, vladimir.michl at upol.cz, 5390ba2b2efdSGlen Barber to whom thanks!) 5391ba2b2efdSGlen Barber 5392ba2b2efdSGlen Barber 5393ba2b2efdSGlen BarberRelease code1998h-data1998i - 1998-10-01 09:56:10 -0400 5394ba2b2efdSGlen Barber 5395ba2b2efdSGlen Barber changes for Brazil, Chile, and Germany 5396ba2b2efdSGlen Barber 5397ba2b2efdSGlen Barber support for use of "24:00" in the input files for the time zone compiler 5398ba2b2efdSGlen Barber 5399ba2b2efdSGlen Barber 5400ba2b2efdSGlen BarberRelease code1998g-data1998h - 1998-09-24 10:50:28 -0400 5401ba2b2efdSGlen Barber 5402ba2b2efdSGlen Barber changes by Paul Eggert 5403ba2b2efdSGlen Barber 5404ba2b2efdSGlen Barber correction to a define in the "private.h" file 5405ba2b2efdSGlen Barber 5406ba2b2efdSGlen Barber 5407ba2b2efdSGlen BarberRelease data1998g - 1998-08-11 03:28:35 -0000 5408ba2b2efdSGlen Barber [tzdata1998g.tar.gz is missing!] 5409ba2b2efdSGlen Barber 5410ba2b2efdSGlen Barber Lithuanian change provided by mgedmin at pub.osf.it 5411ba2b2efdSGlen Barber 5412ba2b2efdSGlen Barber Move creation of the GMT link with Etc/GMT to "etcetera" (from 5413ba2b2efdSGlen Barber "backward") to ensure that the GMT file is created even where folks 5414ba2b2efdSGlen Barber don't want the "backward" links (as suggested by Paul Eggert). 5415ba2b2efdSGlen Barber 5416ba2b2efdSGlen Barber 5417ba2b2efdSGlen BarberRelease data1998f - 1998-07-20 13:50:00 -0000 5418ba2b2efdSGlen Barber [tzdata1998f.tar.gz is missing!] 5419ba2b2efdSGlen Barber 5420*259e2ad7SPhilip Paeps Update the "leapseconds" file to include the newly announced 5421ba2b2efdSGlen Barber insertion at the end of 1998. 5422ba2b2efdSGlen Barber 5423ba2b2efdSGlen Barber 5424ba2b2efdSGlen BarberRelease code1998f - 1998-06-01 10:18:31 -0400 5425ba2b2efdSGlen Barber 5426ba2b2efdSGlen Barber addition to localtime.c by Guy Harris 5427ba2b2efdSGlen Barber 5428ba2b2efdSGlen Barber 5429ba2b2efdSGlen BarberRelease 1998e - 1998-05-28 09:56:26 -0400 5430ba2b2efdSGlen Barber 5431ba2b2efdSGlen Barber The Makefile is changed to produce zoneinfo-posix rather than 5432ba2b2efdSGlen Barber zoneinfo/posix, and to produce zoneinfo-leaps rather than 5433ba2b2efdSGlen Barber zoneinfo/right. 5434ba2b2efdSGlen Barber 5435ba2b2efdSGlen Barber data changes by Paul Eggert 5436ba2b2efdSGlen Barber 5437ba2b2efdSGlen Barber changes from Guy Harris to provide asctime_r and ctime_r 5438ba2b2efdSGlen Barber 5439ba2b2efdSGlen Barber A usno1998 file (substantially identical to usno1997) has been added. 5440ba2b2efdSGlen Barber 5441ba2b2efdSGlen Barber 5442ba2b2efdSGlen BarberRelease 1998d - 1998-05-14 11:58:34 -0400 5443ba2b2efdSGlen Barber 5444ba2b2efdSGlen Barber changes to comments (in particular, elimination of references to CIA maps). 5445ba2b2efdSGlen Barber "Arts.htm", "WWW.htm", "asia", and "australasia" are the only places 5446ba2b2efdSGlen Barber where changes occur. 5447ba2b2efdSGlen Barber 5448ba2b2efdSGlen Barber 5449ba2b2efdSGlen BarberRelease 1998c - 1998-02-28 12:32:26 -0500 5450ba2b2efdSGlen Barber 5451ba2b2efdSGlen Barber changes by Paul Eggert (save the "French correction," on which I'll 5452ba2b2efdSGlen Barber wait for the dust to settle) 5453ba2b2efdSGlen Barber 5454ba2b2efdSGlen Barber symlink changes 5455ba2b2efdSGlen Barber 5456ba2b2efdSGlen Barber changes and additions to Arts.htm 5457ba2b2efdSGlen Barber 5458ba2b2efdSGlen Barber 5459ba2b2efdSGlen BarberRelease 1998b - 1998-01-17 14:31:51 -0500 5460ba2b2efdSGlen Barber 5461ba2b2efdSGlen Barber URL cleanups and additions 5462ba2b2efdSGlen Barber 5463ba2b2efdSGlen Barber 5464ba2b2efdSGlen BarberRelease 1998a - 1998-01-13 12:37:35 -0500 5465ba2b2efdSGlen Barber 5466ba2b2efdSGlen Barber changes by Paul Eggert 5467ba2b2efdSGlen Barber 5468ba2b2efdSGlen Barber 5469ba2b2efdSGlen BarberRelease code1997i-data1997k - 1997-12-29 09:53:41 -0500 5470ba2b2efdSGlen Barber 5471ba2b2efdSGlen Barber changes by Paul Eggert, with minor modifications from Arthur David 5472ba2b2efdSGlen Barber Olson to make the files more browser friendly 5473ba2b2efdSGlen Barber 5474ba2b2efdSGlen Barber 5475ba2b2efdSGlen BarberRelease code1997h-data1997j - 1997-12-18 17:47:35 -0500 5476ba2b2efdSGlen Barber 5477ba2b2efdSGlen Barber minor changes to put "TZif" at the start of each timezone information file 5478ba2b2efdSGlen Barber 5479ba2b2efdSGlen Barber a rule has also been added to the Makefile so you can 5480ba2b2efdSGlen Barber make zones 5481ba2b2efdSGlen Barber to just recompile the zone information files (rather than doing a 5482ba2b2efdSGlen Barber full "make install" with its other effects). 5483ba2b2efdSGlen Barber 5484ba2b2efdSGlen Barber 5485ba2b2efdSGlen BarberRelease data1997i - 1997-10-07 08:45:38 -0400 5486ba2b2efdSGlen Barber 5487ba2b2efdSGlen Barber changes to Africa by Paul Eggert 5488ba2b2efdSGlen Barber 5489ba2b2efdSGlen Barber 5490ba2b2efdSGlen BarberRelease code1997g-data1997h - 1997-09-04 16:56:54 -0400 5491ba2b2efdSGlen Barber 5492ba2b2efdSGlen Barber corrections for Uruguay (and other locations) 5493ba2b2efdSGlen Barber 5494ba2b2efdSGlen Barber Arthur David Olson's simple-minded fix allowing mktime to both 5495ba2b2efdSGlen Barber correctly handle leap seconds and correctly handle tm_sec values 5496ba2b2efdSGlen Barber upon which arithmetic has been performed. 5497ba2b2efdSGlen Barber 5498ba2b2efdSGlen Barber 5499ba2b2efdSGlen BarberRelease code1997f-data1997g - 1997-07-19 13:15:02 -0400 5500ba2b2efdSGlen Barber 5501ba2b2efdSGlen Barber Paul Eggert's updates 5502ba2b2efdSGlen Barber 5503ba2b2efdSGlen Barber a small change to a function prototype; 5504ba2b2efdSGlen Barber 5505ba2b2efdSGlen Barber "Music" has been renamed "Arts.htm", HTMLified, and augmented to 5506ba2b2efdSGlen Barber include information on Around the World in Eighty Days. 5507ba2b2efdSGlen Barber 5508ba2b2efdSGlen Barber 5509ba2b2efdSGlen BarberRelease code1997e-data1997f - 1997-05-03 18:52:34 -0400 5510ba2b2efdSGlen Barber 5511ba2b2efdSGlen Barber fixes to zic's error handling 5512ba2b2efdSGlen Barber 5513ba2b2efdSGlen Barber changes inspired by the item circulated on Slovenia 5514ba2b2efdSGlen Barber 5515ba2b2efdSGlen Barber The description of Web resources has been HTMLified for browsing 5516ba2b2efdSGlen Barber convenience. 5517ba2b2efdSGlen Barber 5518ba2b2efdSGlen Barber A new piece of tz-related music has been added to the "Music" file. 5519ba2b2efdSGlen Barber 5520ba2b2efdSGlen Barber 5521ba2b2efdSGlen BarberRelease code1997d-data1997e - 1997-03-29 12:48:52 -0500 5522ba2b2efdSGlen Barber 5523ba2b2efdSGlen Barber Paul Eggert's latest suggestions 5524ba2b2efdSGlen Barber 5525ba2b2efdSGlen Barber 5526ba2b2efdSGlen BarberRelease code1997c-data1997d - 1997-03-07 20:37:54 -0500 5527ba2b2efdSGlen Barber 5528ba2b2efdSGlen Barber changes to "zic.c" to correct performance of the "-s" option 5529ba2b2efdSGlen Barber 5530ba2b2efdSGlen Barber a new file "usno1997" 5531ba2b2efdSGlen Barber 5532ba2b2efdSGlen Barber 5533ba2b2efdSGlen BarberRelease data1997c - 1997-03-04 09:58:18 -0500 5534ba2b2efdSGlen Barber 5535ba2b2efdSGlen Barber changes in Israel 5536ba2b2efdSGlen Barber 5537ba2b2efdSGlen Barber 5538ba2b2efdSGlen BarberRelease 1997b - 1997-02-27 18:34:19 -0500 5539ba2b2efdSGlen Barber 5540ba2b2efdSGlen Barber The data file incorporates the 1997 leap second. 5541ba2b2efdSGlen Barber 5542ba2b2efdSGlen Barber The code file incorporates Arthur David Olson's take on the 5543ba2b2efdSGlen Barber zic/multiprocessor/directory-creation situation. 5544ba2b2efdSGlen Barber 5545ba2b2efdSGlen Barber 5546ba2b2efdSGlen BarberRelease 1997a - 1997-01-21 09:11:10 -0500 5547ba2b2efdSGlen Barber 5548ba2b2efdSGlen Barber Paul Eggert's Antarctica (and other changes) 5549ba2b2efdSGlen Barber 5550ba2b2efdSGlen Barber Arthur David Olson finessed the "getopt" issue by checking against 5551ba2b2efdSGlen Barber both -1 and EOF (regardless of POSIX, SunOS 4.1.1's manual says -1 5552ba2b2efdSGlen Barber is returned while SunOS 5.5's manual says EOF is returned). 5553ba2b2efdSGlen Barber 5554ba2b2efdSGlen Barber 5555ba2b2efdSGlen BarberRelease code1996o-data1996n - 1996-12-27 21:42:05 -0500 5556ba2b2efdSGlen Barber 5557ba2b2efdSGlen Barber Paul Eggert's latest changes 5558ba2b2efdSGlen Barber 5559ba2b2efdSGlen Barber 5560ba2b2efdSGlen BarberRelease code1996n - 1996-12-16 09:42:02 -0500 5561ba2b2efdSGlen Barber 5562ba2b2efdSGlen Barber link snapping fix from Bruce Evans (via Garrett Wollman) 5563ba2b2efdSGlen Barber 5564ba2b2efdSGlen Barber 5565ba2b2efdSGlen BarberRelease data1996m - 1996-11-24 02:37:34 -0000 5566ba2b2efdSGlen Barber [tzdata1996m.tar.gz is missing!] 5567ba2b2efdSGlen Barber 5568ba2b2efdSGlen Barber Paul Eggert's batch of changes 5569ba2b2efdSGlen Barber 5570ba2b2efdSGlen Barber 5571ba2b2efdSGlen BarberRelease code1996m-data1996l - 1996-11-05 14:00:12 -0500 5572ba2b2efdSGlen Barber 5573ba2b2efdSGlen Barber No functional changes here; the files have simply been changed to 5574ba2b2efdSGlen Barber make more use of ISO style dates in comments. The names of the above 5575ba2b2efdSGlen Barber files now include the year in full. 5576ba2b2efdSGlen Barber 5577ba2b2efdSGlen Barber 5578ba2b2efdSGlen BarberRelease code96l - 1996-09-08 17:12:20 -0400 5579ba2b2efdSGlen Barber 5580ba2b2efdSGlen Barber tzcode96k was missing a couple of pieces. 5581ba2b2efdSGlen Barber 5582ba2b2efdSGlen Barber 5583ba2b2efdSGlen BarberRelease 96k - 1996-09-08 16:06:22 -0400 5584ba2b2efdSGlen Barber 5585ba2b2efdSGlen Barber the latest round of changes from Paul Eggert 5586ba2b2efdSGlen Barber 5587ba2b2efdSGlen Barber the recent Year 2000 material 5588ba2b2efdSGlen Barber 5589ba2b2efdSGlen Barber 5590ba2b2efdSGlen BarberRelease code96j - 1996-07-30 13:18:53 -0400 5591ba2b2efdSGlen Barber 5592ba2b2efdSGlen Barber Set sp->typecnt as suggested by Timothy Patrick Murphy. 5593ba2b2efdSGlen Barber 5594ba2b2efdSGlen Barber 5595ba2b2efdSGlen BarberRelease code96i - 1996-07-27 20:11:35 -0400 5596ba2b2efdSGlen Barber 5597ba2b2efdSGlen Barber Paul's suggested patch for strftime %V week numbers 5598ba2b2efdSGlen Barber 5599ba2b2efdSGlen Barber 5600ba2b2efdSGlen BarberRelease data96i - 1996-07-01 18:13:04 -0400 5601ba2b2efdSGlen Barber 5602ba2b2efdSGlen Barber "northamerica" and "europe" changes by Paul Eggert 5603ba2b2efdSGlen Barber 5604ba2b2efdSGlen Barber 5605ba2b2efdSGlen BarberRelease code96h - 1996-06-05 08:02:21 -0400 5606ba2b2efdSGlen Barber 5607ba2b2efdSGlen Barber fix for handling transitions specified in Universal Time 5608ba2b2efdSGlen Barber 5609ba2b2efdSGlen Barber Some "public domain" notices have also been added. 5610ba2b2efdSGlen Barber 5611ba2b2efdSGlen Barber 5612ba2b2efdSGlen BarberRelease code96g - 1996-05-16 14:00:26 -0400 5613ba2b2efdSGlen Barber 5614ba2b2efdSGlen Barber fix for the simultaneous-DST-and-zone-change challenge 5615ba2b2efdSGlen Barber 5616ba2b2efdSGlen Barber 5617ba2b2efdSGlen BarberRelease data96h - 1996-05-09 17:40:51 -0400 5618ba2b2efdSGlen Barber 5619ba2b2efdSGlen Barber changes by Paul Eggert 5620ba2b2efdSGlen Barber 5621ba2b2efdSGlen Barber 5622ba2b2efdSGlen BarberRelease code96f-data96g - 1996-05-03 03:09:59 -0000 5623ba2b2efdSGlen Barber [tzcode96f.tar.gz + tzdata96g.tar.gz are both missing!] 5624ba2b2efdSGlen Barber 5625ba2b2efdSGlen Barber The changes get us some of the way to fixing the problems noted in Paul 5626ba2b2efdSGlen Barber Eggert's letter yesterday (in addition to a few others). The approach 5627ba2b2efdSGlen Barber has been to make zic a bit smarter about figuring out what time zone 5628ba2b2efdSGlen Barber abbreviations apply just after the time specified in the "UNTIL" part 5629ba2b2efdSGlen Barber of a zone line. Putting the smarts in zic means avoiding having 5630ba2b2efdSGlen Barber transition times show up in both "Zone" lines and "Rule" lines, which 5631ba2b2efdSGlen Barber in turn avoids multiple transition time entries in time zone files. 5632ba2b2efdSGlen Barber (This also makes the zic input files such as "europe" a bit shorter and 5633ba2b2efdSGlen Barber should ease maintenance.) 5634ba2b2efdSGlen Barber 5635ba2b2efdSGlen Barber 5636ba2b2efdSGlen BarberRelease data96f - 1996-04-19 19:20:03 -0000 5637ba2b2efdSGlen Barber [tzdata96f.tar.gz is missing!] 5638ba2b2efdSGlen Barber 5639ba2b2efdSGlen Barber The only changes are to the "northamerica" file; the time zone 5640ba2b2efdSGlen Barber abbreviation for Denver is corrected to MST (and MDT), and the 5641ba2b2efdSGlen Barber comments for Mexico have been updated. 5642ba2b2efdSGlen Barber 5643ba2b2efdSGlen Barber 5644ba2b2efdSGlen BarberRelease data96e - 1996-03-19 17:37:26 -0500 5645ba2b2efdSGlen Barber 5646ba2b2efdSGlen Barber Proposals by Paul Eggert, in particular the Portugal change that 5647ba2b2efdSGlen Barber comes into play at the end of this month. 5648ba2b2efdSGlen Barber 5649ba2b2efdSGlen Barber 5650ba2b2efdSGlen BarberRelease data96d - 1996-03-18 20:49:39 -0500 5651ba2b2efdSGlen Barber 5652ba2b2efdSGlen Barber [not summarized] 5653ba2b2efdSGlen Barber 5654ba2b2efdSGlen Barber 5655ba2b2efdSGlen BarberRelease code96e - 1996-02-29 15:43:27 -0000 5656ba2b2efdSGlen Barber [tzcode96e.tar.gz is missing!] 5657ba2b2efdSGlen Barber 5658ba2b2efdSGlen Barber internationalization changes and the fix to the documentation for strftime 5659ba2b2efdSGlen Barber 5660ba2b2efdSGlen Barber 5661ba2b2efdSGlen BarberRelease code96d-data96c - 1996-02-12 11:05:27 -0500 5662ba2b2efdSGlen Barber 5663ba2b2efdSGlen Barber The "code" file simply updates Bob Kridle's electronic address. 5664ba2b2efdSGlen Barber 5665ba2b2efdSGlen Barber The "data" file updates rules for Mexico. 5666ba2b2efdSGlen Barber 5667ba2b2efdSGlen Barber 5668ba2b2efdSGlen BarberRelease data96b - 1996-01-27 15:44:42 -0500 5669ba2b2efdSGlen Barber 5670ba2b2efdSGlen Barber Kiribati change 5671ba2b2efdSGlen Barber 5672ba2b2efdSGlen Barber 5673ba2b2efdSGlen BarberRelease code96c - 1996-01-16 16:58:15 -0500 5674ba2b2efdSGlen Barber 5675ba2b2efdSGlen Barber leap-year streamlining and binary-search changes 5676ba2b2efdSGlen Barber 5677ba2b2efdSGlen Barber fix to newctime.3 5678ba2b2efdSGlen Barber 5679ba2b2efdSGlen Barber 5680ba2b2efdSGlen BarberRelease code96b - 1996-01-10 20:42:39 -0500 5681ba2b2efdSGlen Barber 5682ba2b2efdSGlen Barber fixes and enhancements from Paul Eggert, including code that 5683ba2b2efdSGlen Barber emulates the behavior of recent versions of the SunOS "date" 5684ba2b2efdSGlen Barber command. 5685ba2b2efdSGlen Barber 5686ba2b2efdSGlen Barber 5687ba2b2efdSGlen BarberRelease 96a - 1996-01-06 09:08:24 -0500 5688ba2b2efdSGlen Barber 5689ba2b2efdSGlen Barber Israel updates 5690ba2b2efdSGlen Barber 5691ba2b2efdSGlen Barber fixes to strftime.c for correct ISO 8601 week number generation, 5692ba2b2efdSGlen Barber plus support for two new formats ('G' and 'g') to give ISO 8601 year 5693ba2b2efdSGlen Barber numbers (which are not necessarily the same as calendar year numbers) 5694ba2b2efdSGlen Barber 5695ba2b2efdSGlen Barber 5696ba2b2efdSGlen BarberRelease code95i-data95m - 1995-12-21 12:46:47 -0500 5697ba2b2efdSGlen Barber 5698ba2b2efdSGlen Barber The latest revisions from Paul Eggert are included, the usno1995 5699ba2b2efdSGlen Barber file has been updated, and a new file ("WWW") covering useful URLs 5700ba2b2efdSGlen Barber has been added. 5701ba2b2efdSGlen Barber 5702ba2b2efdSGlen Barber 5703ba2b2efdSGlen BarberRelease code95h-data95l - 1995-12-19 18:10:12 -0500 5704ba2b2efdSGlen Barber 5705ba2b2efdSGlen Barber A simplification of a macro definition, a change to data for Sudan, 5706ba2b2efdSGlen Barber and (for last minute shoppers) notes in the "Music" file on the CD 5707ba2b2efdSGlen Barber "Old Man Time". 5708ba2b2efdSGlen Barber 5709ba2b2efdSGlen Barber 5710ba2b2efdSGlen BarberRelease code95g-data95k - 1995-10-30 10:32:47 -0500 5711ba2b2efdSGlen Barber 5712ba2b2efdSGlen Barber (slightly reformatted) 8-bit-clean proposed patch 5713ba2b2efdSGlen Barber 5714ba2b2efdSGlen Barber minor patch: US/Eastern -> America/New_York 5715ba2b2efdSGlen Barber 5716ba2b2efdSGlen Barber snapshot of the USNO's latest data ("usno1995") 5717ba2b2efdSGlen Barber 5718ba2b2efdSGlen Barber some other minor cleanups 5719ba2b2efdSGlen Barber 5720ba2b2efdSGlen Barber 5721ba2b2efdSGlen BarberRelease code95f-data95j - 1995-10-28 21:01:34 -0000 5722ba2b2efdSGlen Barber [tzcode95f.tar.gz + tzdata95j.tar.gz are both missing!] 5723ba2b2efdSGlen Barber 5724ba2b2efdSGlen Barber European cleanups 5725ba2b2efdSGlen Barber 5726ba2b2efdSGlen Barber support for 64-bit time_t's 5727ba2b2efdSGlen Barber 5728ba2b2efdSGlen Barber optimization in localtime.c 5729ba2b2efdSGlen Barber 5730ba2b2efdSGlen Barber 5731ba2b2efdSGlen BarberRelease code95e - 1995-10-13 13:23:57 -0400 5732ba2b2efdSGlen Barber 5733ba2b2efdSGlen Barber the mktime change to scan from future to past when trying to find time zone 5734ba2b2efdSGlen Barber offsets 5735ba2b2efdSGlen Barber 5736ba2b2efdSGlen Barber 5737ba2b2efdSGlen BarberRelease data95i - 1995-09-26 10:43:26 -0400 5738ba2b2efdSGlen Barber 5739ba2b2efdSGlen Barber For Canada/Central, guess that the Sun customer's "one week too 5740ba2b2efdSGlen Barber early" was just a approximation, and the true error is one month 5741ba2b2efdSGlen Barber too early. This is consistent with the rest of Canada. 5742ba2b2efdSGlen Barber 5743ba2b2efdSGlen Barber 5744ba2b2efdSGlen BarberRelease data95h - 1995-09-21 11:26:48 -0400 5745ba2b2efdSGlen Barber 5746ba2b2efdSGlen Barber latest changes from Paul Eggert 5747ba2b2efdSGlen Barber 5748ba2b2efdSGlen Barber 5749ba2b2efdSGlen BarberRelease code95d - 1995-09-14 11:14:45 -0400 5750ba2b2efdSGlen Barber 5751ba2b2efdSGlen Barber the addition of a "Music" file, which documents four recorded 5752ba2b2efdSGlen Barber versions of the tune "Save That Time". 5753ba2b2efdSGlen Barber 5754ba2b2efdSGlen Barber 5755ba2b2efdSGlen BarberRelease data95g - 1995-09-01 17:21:36 -0400 5756ba2b2efdSGlen Barber 5757ba2b2efdSGlen Barber "yearistype" correction 5758ba2b2efdSGlen Barber 5759ba2b2efdSGlen Barber 5760ba2b2efdSGlen BarberRelease data95f - 1995-08-28 20:46:56 -0400 5761ba2b2efdSGlen Barber 5762ba2b2efdSGlen Barber Paul Eggert's change to the australasia file 5763ba2b2efdSGlen Barber 5764ba2b2efdSGlen Barber 5765ba2b2efdSGlen BarberRelease data95e - 1995-07-08 18:02:34 -0400 5766ba2b2efdSGlen Barber 5767ba2b2efdSGlen Barber The only change is a leap second at the end of this year. 5768ba2b2efdSGlen Barber Thanks to Bradley White for forwarding news on the leap second. 5769ba2b2efdSGlen Barber 5770ba2b2efdSGlen Barber 5771ba2b2efdSGlen BarberRelease data95d - 1995-07-03 13:26:22 -0400 5772ba2b2efdSGlen Barber 5773ba2b2efdSGlen Barber Paul Eggert's changes 5774ba2b2efdSGlen Barber 5775ba2b2efdSGlen Barber 5776ba2b2efdSGlen BarberRelease data95c - 1995-07-02 19:19:28 -0400 5777ba2b2efdSGlen Barber 5778ba2b2efdSGlen Barber changes to "asia", "backward", "europe", and "southamerica" 5779ba2b2efdSGlen Barber (read: northamericacentrics need not apply) 5780ba2b2efdSGlen Barber 5781ba2b2efdSGlen Barber 5782ba2b2efdSGlen BarberRelease code95c - 1995-03-13 14:00:46 -0500 5783ba2b2efdSGlen Barber 5784ba2b2efdSGlen Barber one-line fix for sign extension problems in detzcode 5785ba2b2efdSGlen Barber 5786ba2b2efdSGlen Barber 5787ba2b2efdSGlen BarberRelease 95b - 1995-03-04 11:22:38 -0500 5788ba2b2efdSGlen Barber 5789ba2b2efdSGlen Barber Minor changes in both: 5790ba2b2efdSGlen Barber 5791ba2b2efdSGlen Barber The "code" file contains a workaround for the lack of "unistd.h" in 5792ba2b2efdSGlen Barber Microsoft C++ version 7. 5793ba2b2efdSGlen Barber 5794ba2b2efdSGlen Barber The "data" file contains a fixed "Link" for America/Shiprock. 5795ba2b2efdSGlen Barber 5796ba2b2efdSGlen Barber 5797ba2b2efdSGlen BarberRelease 94h - 1994-12-10 12:51:14 -0500 5798ba2b2efdSGlen Barber 5799ba2b2efdSGlen Barber The files: 5800ba2b2efdSGlen Barber 5801ba2b2efdSGlen Barber * incorporate the changes to "zdump" and "date" to make changes to 5802ba2b2efdSGlen Barber the "TZ" environment variable permanent; 5803ba2b2efdSGlen Barber 5804ba2b2efdSGlen Barber * incorporate the table changes by Paul Eggert; 5805ba2b2efdSGlen Barber 5806ba2b2efdSGlen Barber * include (and document) support for universal time specifications in 5807ba2b2efdSGlen Barber data files - but do not (yet) include use of this feature in the 5808ba2b2efdSGlen Barber data files. 5809ba2b2efdSGlen Barber 5810ba2b2efdSGlen Barber Think of this as "TZ Classic" - the software has been set up not to break if 5811ba2b2efdSGlen Barber universal time shows up in its input, and data entries have been 5812ba2b2efdSGlen Barber left as is so as not to break existing implementations. 5813ba2b2efdSGlen Barber 5814ba2b2efdSGlen Barber 5815ba2b2efdSGlen BarberRelease data94f - 1994-08-20 12:56:09 -0400 5816ba2b2efdSGlen Barber 5817ba2b2efdSGlen Barber (with thanks!) the latest data updates from Paul Eggert 5818ba2b2efdSGlen Barber 5819ba2b2efdSGlen Barber 5820ba2b2efdSGlen BarberRelease data94e - 1994-06-04 13:13:53 -0400 5821ba2b2efdSGlen Barber 5822ba2b2efdSGlen Barber [not summarized] 5823ba2b2efdSGlen Barber 5824ba2b2efdSGlen Barber 5825ba2b2efdSGlen BarberRelease code94g - 1994-05-05 12:14:07 -0400 5826ba2b2efdSGlen Barber 5827ba2b2efdSGlen Barber fix missing "optind.c" and a reference to it in the Makefile 5828ba2b2efdSGlen Barber 5829ba2b2efdSGlen Barber 5830ba2b2efdSGlen BarberRelease code94f - 1994-05-05 13:00:33 -0000 5831ba2b2efdSGlen Barber [tzcode94f.tar.gz is missing!] 5832ba2b2efdSGlen Barber 5833ba2b2efdSGlen Barber changes to avoid overflow in difftime, as well as changes to cope 5834ba2b2efdSGlen Barber with the 52/53 challenge in strftime 5835ba2b2efdSGlen Barber 5836ba2b2efdSGlen Barber 5837ba2b2efdSGlen BarberRelease code94e - 1994-03-30 23:32:59 -0500 5838ba2b2efdSGlen Barber 5839ba2b2efdSGlen Barber change for the benefit of PCTS 5840ba2b2efdSGlen Barber 5841ba2b2efdSGlen Barber 5842ba2b2efdSGlen BarberRelease 94d - 1994-02-24 15:42:25 -0500 5843ba2b2efdSGlen Barber 5844ba2b2efdSGlen Barber Avoid clashes with POSIX semantics for zones such as GMT+4. 5845ba2b2efdSGlen Barber 5846ba2b2efdSGlen Barber Some other very minor housekeeping is also present. 5847ba2b2efdSGlen Barber 5848ba2b2efdSGlen Barber 5849ba2b2efdSGlen BarberRelease code94c - 1994-02-10 08:52:40 -0500 5850ba2b2efdSGlen Barber 5851ba2b2efdSGlen Barber Fix bug where mkdirs was broken unless you compile with 5852ba2b2efdSGlen Barber -fwritable-strings (which is generally losing to do). 5853ba2b2efdSGlen Barber 5854ba2b2efdSGlen Barber 5855ba2b2efdSGlen BarberRelease 94b - 1994-02-07 10:04:33 -0500 5856ba2b2efdSGlen Barber 5857ba2b2efdSGlen Barber work by Paul Eggert who notes: 5858ba2b2efdSGlen Barber 5859ba2b2efdSGlen Barber I found another book of time zone histories by E W Whitman; it's not 5860ba2b2efdSGlen Barber as extensive as Shanks but has a few goodies of its own. I used it 5861ba2b2efdSGlen Barber to update the tables. I also fixed some more as a result of 5862ba2b2efdSGlen Barber correspondence with Adam David and Peter Ilieve, and move some stray 5863ba2b2efdSGlen Barber links from 'europe' to 'backward'. I corrected some scanning errors 5864ba2b2efdSGlen Barber in usno1989. 5865ba2b2efdSGlen Barber 5866ba2b2efdSGlen Barber As far as the code goes, I fixed zic to allow years in the range 5867ba2b2efdSGlen Barber INT_MIN to INT_MAX; this fixed a few boundary conditions around 1900. 5868ba2b2efdSGlen Barber And I cleaned up the zic documentation a little bit. 5869ba2b2efdSGlen Barber 5870ba2b2efdSGlen Barber 5871ba2b2efdSGlen BarberRelease data94a - 1994-02-03 08:58:54 -0500 5872ba2b2efdSGlen Barber 5873ba2b2efdSGlen Barber It simply incorporates the recently announced leap second into the 5874ba2b2efdSGlen Barber "leapseconds" file. 5875ba2b2efdSGlen Barber 5876ba2b2efdSGlen Barber 5877ba2b2efdSGlen BarberRelease 93g - 1993-11-22 17:28:27 -0500 5878ba2b2efdSGlen Barber 5879ba2b2efdSGlen Barber Paul Eggert has provided a good deal of historic information (based 5880ba2b2efdSGlen Barber on Shanks), and there are some code changes to deal with the buglets 5881ba2b2efdSGlen Barber that crawled out in dealing with the new information. 5882ba2b2efdSGlen Barber 5883ba2b2efdSGlen Barber 5884ba2b2efdSGlen BarberRelease 93f - 1993-10-15 12:27:46 -0400 5885ba2b2efdSGlen Barber 5886ba2b2efdSGlen Barber Paul Eggert's changes 5887ba2b2efdSGlen Barber 5888ba2b2efdSGlen Barber 5889ba2b2efdSGlen BarberRelease 93e - 1993-09-05 21:21:44 -0400 5890ba2b2efdSGlen Barber 5891ba2b2efdSGlen Barber This has updated data for Israel, England, and Kwajalein. There's 5892ba2b2efdSGlen Barber also an update to "zdump" to cope with Kwajalein's 24-hour jump. 5893ba2b2efdSGlen Barber Thanks to Paul Eggert and Peter Ilieve for the changes. 5894ba2b2efdSGlen Barber 5895ba2b2efdSGlen Barber 5896ba2b2efdSGlen BarberRelease 93d - 1993-06-17 23:34:17 -0400 5897ba2b2efdSGlen Barber 5898ba2b2efdSGlen Barber new fix and new data on Israel 5899ba2b2efdSGlen Barber 5900ba2b2efdSGlen Barber 5901ba2b2efdSGlen BarberRelease 93c - 1993-06-06 19:31:55 -0400 5902ba2b2efdSGlen Barber 5903ba2b2efdSGlen Barber [not summarized] 5904ba2b2efdSGlen Barber 5905ba2b2efdSGlen Barber 5906ba2b2efdSGlen BarberRelease 93b - 1993-02-02 14:53:58 -0500 5907ba2b2efdSGlen Barber 5908ba2b2efdSGlen Barber updated "leapseconds" file 5909ba2b2efdSGlen Barber 5910ba2b2efdSGlen Barber 5911ba2b2efdSGlen BarberRelease 93 - 1993-01-08 07:01:06 -0500 5912ba2b2efdSGlen Barber 5913ba2b2efdSGlen Barber At kre's suggestion, the package has been split in two - a code piece 5914ba2b2efdSGlen Barber (which also includes documentation) that's only of use to folks who 5915ba2b2efdSGlen Barber want to recompile things and a data piece useful to anyone who can 5916ba2b2efdSGlen Barber run "zic". 5917ba2b2efdSGlen Barber 5918ba2b2efdSGlen Barber The new version has a few changes to the data files, a few 5919ba2b2efdSGlen Barber portability changes, and an off-by-one fix (with thanks to 5920ba2b2efdSGlen Barber Tom Karzes at deshaw.com for providing a description and a 5921ba2b2efdSGlen Barber solution). 5922ba2b2efdSGlen Barber 5923ba2b2efdSGlen Barber 5924ba2b2efdSGlen BarberRelease 92c - 1992-11-21 17:35:36 -0000 5925ba2b2efdSGlen Barber [tz92c.tar.Z is missing!] 5926ba2b2efdSGlen Barber 5927ba2b2efdSGlen Barber The fallout from the latest round of DST transitions. 5928ba2b2efdSGlen Barber 5929ba2b2efdSGlen Barber There are changes for Portugal, Saskatchewan, and "Pacific-New"; 5930ba2b2efdSGlen Barber there's also a change to "zic.c" that makes it portable to more systems. 5931ba2b2efdSGlen Barber 5932ba2b2efdSGlen Barber 5933ba2b2efdSGlen BarberRelease 92 - 1992-04-25 18:17:03 -0000 5934ba2b2efdSGlen Barber [tz92.tar.Z is missing!] 5935ba2b2efdSGlen Barber 5936ba2b2efdSGlen Barber By popular demand (well, at any rate, following a request by kre at munnari) 5937ba2b2efdSGlen Barber 5938ba2b2efdSGlen Barber 5939ba2b2efdSGlen BarberThe 1989 update of the time zone package featured: 5940ba2b2efdSGlen Barber 5941ba2b2efdSGlen Barber * POSIXization (including interpretation of POSIX-style TZ environment 5942ba2b2efdSGlen Barber variables, provided by Guy Harris), 5943ba2b2efdSGlen Barber * ANSIfication (including versions of "mktime" and "difftime"), 5944ba2b2efdSGlen Barber * SVIDulation (an "altzone" variable) 5945ba2b2efdSGlen Barber * MACHination (the "gtime" function) 5946ba2b2efdSGlen Barber * corrections to some time zone data (including corrections to the rules 5947ba2b2efdSGlen Barber for Great Britain and New Zealand) 5948ba2b2efdSGlen Barber * reference data from the United States Naval Observatory for folks who 5949ba2b2efdSGlen Barber want to do additional time zones 5950ba2b2efdSGlen Barber * and the 1989 data for Saudi Arabia. 5951ba2b2efdSGlen Barber 5952ba2b2efdSGlen Barber (Since this code will be treated as "part of the implementation" in some 5953ba2b2efdSGlen Barber places and as "part of the application" in others, there's no good way to 5954ba2b2efdSGlen Barber name functions, such as timegm, that are not part of the proposed ANSI C 5955ba2b2efdSGlen Barber standard; such functions have kept their old, underscore-free names in this 5956ba2b2efdSGlen Barber update.) 5957ba2b2efdSGlen Barber 5958ba2b2efdSGlen Barber And the "dysize" function has disappeared; it was present to allow 5959ba2b2efdSGlen Barber compilation of the "date" command on old BSD systems, and a version of "date" 5960ba2b2efdSGlen Barber is now provided in the package. The "date" command is not created when you 5961ba2b2efdSGlen Barber "make all" since it may lack options provided by the version distributed with 5962ba2b2efdSGlen Barber your operating system, or may not interact with the system in the same way 5963ba2b2efdSGlen Barber the native version does. 5964ba2b2efdSGlen Barber 5965ba2b2efdSGlen Barber Since POSIX frowns on correct leap second handling, the default behavior of 5966ba2b2efdSGlen Barber the "zic" command (in the absence of a "-L" option) has been changed to omit 5967ba2b2efdSGlen Barber leap second information from its output files. 5968ba2b2efdSGlen Barber 5969ba2b2efdSGlen Barber 5970ba2b2efdSGlen Barber----- 5971ba2b2efdSGlen BarberNotes 5972ba2b2efdSGlen Barber 5973ba2b2efdSGlen BarberThis file contains copies of the part of each release announcement 5974ba2b2efdSGlen Barberthat talks about the changes in that release. The text has been 5975ba2b2efdSGlen Barberadapted and reformatted for the purposes of this file. 5976ba2b2efdSGlen Barber 5977ba2b2efdSGlen BarberTraditionally a release R consists of a pair of tarball files, 5978ba2b2efdSGlen BarbertzcodeR.tar.gz and tzdataR.tar.gz. However, some releases (e.g., 5979ba2b2efdSGlen Barbercode2010a, data2012c) consist of just one or the other tarball, and a 5980ba2b2efdSGlen Barberfew (e.g., code2012c-data2012d) have tarballs with mixed version 5981ba2b2efdSGlen Barbernumbers. Recent releases also come in an experimental format 5982ba2b2efdSGlen Barberconsisting of a single tarball tzdb-R.tar.lz with extra data. 5983ba2b2efdSGlen Barber 5984ba2b2efdSGlen BarberRelease timestamps are taken from the release's commit (for newer, 5985ba2b2efdSGlen BarberGit-based releases), from the newest file in the tarball (for older 5986ba2b2efdSGlen Barberreleases, where this info is available) or from the email announcing 598789abb9f8SPhilip Paepsthe release (if all else fails; these are marked with a time zone 598889abb9f8SPhilip Paepsabbreviation of -0000 and an "is missing!" comment). 5989ba2b2efdSGlen Barber 5990ba2b2efdSGlen BarberEarlier versions of the code and data were not announced on the tz 5991ba2b2efdSGlen Barberlist and are not summarized here. 5992ba2b2efdSGlen Barber 5993ba2b2efdSGlen BarberThis file is in the public domain. 5994ba2b2efdSGlen Barber 5995ba2b2efdSGlen BarberLocal Variables: 5996ba2b2efdSGlen Barbercoding: utf-8 5997ba2b2efdSGlen BarberEnd: 5998