blob: fd54ae0f6b2f6b510f50a30a6b87e1727eb63e8c [file] [log] [blame]
niemeyerf296b1a2008-02-28 03:42:33 +00001Version 1.4
2-----------
3
niemeyer05c217d2008-02-28 04:52:22 +00004- Fixed another parser precision problem on conversion of decimal seconds
5 to microseconds, as reported by Erik Brown. Now these issues are gone
6 for real since it's not using floating point arithmetic anymore.
niemeyerf296b1a2008-02-28 03:42:33 +00007
niemeyer05c217d2008-02-28 04:52:22 +00008- Fixed case where tzrange.utcoffset and tzrange.dst() might fail due
9 to a date being used where a datetime was expected (reported and fixed
10 by Lennart Regebro).
11
12- Prevent tzstr from introducing daylight timings in strings that didn't
13 specify them (reported by Lennart Regebro).
14
15- Calls like gettz("GMT+3") and gettz("UTC-2") will now return the
16 expected values, instead of the TZ variable behavior.
niemeyer3cb423c2008-02-28 05:00:57 +000017
18- Fixed DST signal handling in zoneinfo files. Reported by
19 Nicholas F. Fabry and John-Mark Gurney.
niemeyerf296b1a2008-02-28 03:42:33 +000020
21
niemeyerb085ec62007-11-12 14:08:14 +000022Version 1.3
23-----------
24
niemeyerb2df80e2007-11-12 21:53:39 +000025- Fixed precision problem on conversion of decimal seconds to
26 microseconds, as reported by Skip Montanaro.
27
28- Fixed bug in constructor of parser, and converted parser classes to
29 new-style classes. Original report and patch by Michael Elsdörfer.
30
31- Initialize tzid and comps in tz.py, to prevent the code from ever
32 raising a NameError (even with broken files). Johan Dahlin suggested
33 the fix after a pyflakes run.
34
niemeyerb085ec62007-11-12 14:08:14 +000035- Version is now published in dateutil.__version__, as requested
36 by Darren Dale.
37
niemeyerd0bbacb2007-11-20 00:07:34 +000038- All code is compatible with new-style division.
39
niemeyerb085ec62007-11-12 14:08:14 +000040
niemeyer82b1e432006-10-25 17:16:42 +000041Version 1.2
42-----------
43
44- Now tzfile will round timezones to full-minutes if necessary,
45 since Python's datetime doesn't support sub-minute offsets.
46 Thanks to Ilpo Nyyssönen for reporting the issue.
47
niemeyer75b11fb2007-06-27 01:53:23 +000048- Removed bare string exceptions, as reported and fixed by
49 Wilfredo Sánchez Vega.
50
51- Fix bug in leap count parsing (reported and fixed by Eugene Oden).
52
niemeyere2b63462005-02-24 17:23:24 +000053
niemeyer328d6ce2005-10-25 14:17:53 +000054Version 1.1
55-----------
56
57- Fixed rrule byyearday handling. Abramo Bagnara pointed out that
58 RFC2445 allows negative numbers.
59
niemeyer97aef7e2005-12-22 19:53:44 +000060- Fixed --prefix handling in setup.py (by Sidnei da Silva).
61
niemeyer0a33cd82005-12-22 19:55:11 +000062- Now tz.gettz() returns a tzlocal instance when not given any
63 arguments and no other timezone information is found.
64
niemeyer97aef7e2005-12-22 19:53:44 +000065- Updating timezone information to version 2005q.
niemeyer328d6ce2005-10-25 14:17:53 +000066
67
68Version 1.0
69-----------
70
71- Fixed parsing of XXhXXm formatted time after day/month/year
72 has been parsed.
73
74- Added patch by Jeffrey Harris optimizing rrule.__contains__.
75
76
niemeyere2b63462005-02-24 17:23:24 +000077Version 0.9
78-----------
79
80- Fixed pickling of timezone types, as reported by
81 Andreas Köhler.
82
83- Implemented internal timezone information with binary
84 timezone files [1]. datautil.tz.gettz() function will now
85 try to use the system timezone files, and fallback to
86 the internal versions. It's also possible to ask for
87 the internal versions directly by using
88 dateutil.zoneinfo.gettz().
89
90- New tzwin timezone type, allowing access to Windows
91 internal timezones (contributed by Jeffrey Harris).
92
93- Fixed parsing of unicode date strings.
94
95- Accept parserinfo instances as the parser constructor
96 parameter, besides parserinfo (sub)classes.
97
98- Changed weekday to spell the not-set n value as None
99 instead of 0.
100
101- Fixed other reported bugs.
102
103[1] http://www.twinsun.com/tz/tz-link.htm
104
105
106Version 0.5
107-----------
108
109- Removed FREQ_ prefix from rrule frequency constants
110 WARNING: this breaks compatibility with previous versions.
111
112- Fixed rrule.between() for cases where "after" is achieved
113 before even starting, as reported by Andreas Köhler.
114
115- Fixed two digit zero-year parsing (such as 31-Dec-00), as
116 reported by Jim Abramson, and included test case for this.
117
118- Sort exdate and rdate before iterating over them, so that
119 it's not necessary to sort them before adding to the rruleset,
120 as reported by Nicholas Piper.
121