blob: 27fd1cc241e08294d51fb8cf895174c2e8090dd5 [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.
17
niemeyerf296b1a2008-02-28 03:42:33 +000018
19
niemeyerb085ec62007-11-12 14:08:14 +000020Version 1.3
21-----------
22
niemeyerb2df80e2007-11-12 21:53:39 +000023- Fixed precision problem on conversion of decimal seconds to
24 microseconds, as reported by Skip Montanaro.
25
26- Fixed bug in constructor of parser, and converted parser classes to
27 new-style classes. Original report and patch by Michael Elsdörfer.
28
29- Initialize tzid and comps in tz.py, to prevent the code from ever
30 raising a NameError (even with broken files). Johan Dahlin suggested
31 the fix after a pyflakes run.
32
niemeyerb085ec62007-11-12 14:08:14 +000033- Version is now published in dateutil.__version__, as requested
34 by Darren Dale.
35
niemeyerd0bbacb2007-11-20 00:07:34 +000036- All code is compatible with new-style division.
37
niemeyerb085ec62007-11-12 14:08:14 +000038
niemeyer82b1e432006-10-25 17:16:42 +000039Version 1.2
40-----------
41
42- Now tzfile will round timezones to full-minutes if necessary,
43 since Python's datetime doesn't support sub-minute offsets.
44 Thanks to Ilpo Nyyssönen for reporting the issue.
45
niemeyer75b11fb2007-06-27 01:53:23 +000046- Removed bare string exceptions, as reported and fixed by
47 Wilfredo Sánchez Vega.
48
49- Fix bug in leap count parsing (reported and fixed by Eugene Oden).
50
niemeyere2b63462005-02-24 17:23:24 +000051
niemeyer328d6ce2005-10-25 14:17:53 +000052Version 1.1
53-----------
54
55- Fixed rrule byyearday handling. Abramo Bagnara pointed out that
56 RFC2445 allows negative numbers.
57
niemeyer97aef7e2005-12-22 19:53:44 +000058- Fixed --prefix handling in setup.py (by Sidnei da Silva).
59
niemeyer0a33cd82005-12-22 19:55:11 +000060- Now tz.gettz() returns a tzlocal instance when not given any
61 arguments and no other timezone information is found.
62
niemeyer97aef7e2005-12-22 19:53:44 +000063- Updating timezone information to version 2005q.
niemeyer328d6ce2005-10-25 14:17:53 +000064
65
66Version 1.0
67-----------
68
69- Fixed parsing of XXhXXm formatted time after day/month/year
70 has been parsed.
71
72- Added patch by Jeffrey Harris optimizing rrule.__contains__.
73
74
niemeyere2b63462005-02-24 17:23:24 +000075Version 0.9
76-----------
77
78- Fixed pickling of timezone types, as reported by
79 Andreas Köhler.
80
81- Implemented internal timezone information with binary
82 timezone files [1]. datautil.tz.gettz() function will now
83 try to use the system timezone files, and fallback to
84 the internal versions. It's also possible to ask for
85 the internal versions directly by using
86 dateutil.zoneinfo.gettz().
87
88- New tzwin timezone type, allowing access to Windows
89 internal timezones (contributed by Jeffrey Harris).
90
91- Fixed parsing of unicode date strings.
92
93- Accept parserinfo instances as the parser constructor
94 parameter, besides parserinfo (sub)classes.
95
96- Changed weekday to spell the not-set n value as None
97 instead of 0.
98
99- Fixed other reported bugs.
100
101[1] http://www.twinsun.com/tz/tz-link.htm
102
103
104Version 0.5
105-----------
106
107- Removed FREQ_ prefix from rrule frequency constants
108 WARNING: this breaks compatibility with previous versions.
109
110- Fixed rrule.between() for cases where "after" is achieved
111 before even starting, as reported by Andreas Köhler.
112
113- Fixed two digit zero-year parsing (such as 31-Dec-00), as
114 reported by Jim Abramson, and included test case for this.
115
116- Sort exdate and rdate before iterating over them, so that
117 it's not necessary to sort them before adding to the rruleset,
118 as reported by Nicholas Piper.
119