blob: 8738e849e29c831f0a6cc1a84d192d823805ab25 [file] [log] [blame]
niemeyere9f0b242010-03-30 00:42:25 +00001
2Version 1.5
3-----------
4
5- As reported by Mathieu Bridon, rrules were matching the bysecond rules
6 incorrectly against byminute in some circumstances when the SECONDLY
7 frequency was in use, due to a copy & paste bug. The problem has been
8 unittested and corrected.
9
10- Adam Ryan reported a problem in the relativedelta implementation which
11 affected the yearday parameter in the month of January specifically.
12 This has been unittested and fixed.
13
14- Updated timezone information.
15
16
niemeyer55254c52008-08-07 02:46:52 +000017Version 1.4.1
18-------------
19
niemeyer124c3292008-08-07 02:47:17 +000020- Updated timezone information.
21
niemeyer55254c52008-08-07 02:46:52 +000022
niemeyerf296b1a2008-02-28 03:42:33 +000023Version 1.4
24-----------
25
niemeyer05c217d2008-02-28 04:52:22 +000026- Fixed another parser precision problem on conversion of decimal seconds
27 to microseconds, as reported by Erik Brown. Now these issues are gone
28 for real since it's not using floating point arithmetic anymore.
niemeyerf296b1a2008-02-28 03:42:33 +000029
niemeyer05c217d2008-02-28 04:52:22 +000030- Fixed case where tzrange.utcoffset and tzrange.dst() might fail due
31 to a date being used where a datetime was expected (reported and fixed
32 by Lennart Regebro).
33
34- Prevent tzstr from introducing daylight timings in strings that didn't
35 specify them (reported by Lennart Regebro).
36
37- Calls like gettz("GMT+3") and gettz("UTC-2") will now return the
38 expected values, instead of the TZ variable behavior.
niemeyer3cb423c2008-02-28 05:00:57 +000039
40- Fixed DST signal handling in zoneinfo files. Reported by
41 Nicholas F. Fabry and John-Mark Gurney.
niemeyerf296b1a2008-02-28 03:42:33 +000042
43
niemeyerb085ec62007-11-12 14:08:14 +000044Version 1.3
45-----------
46
niemeyerb2df80e2007-11-12 21:53:39 +000047- Fixed precision problem on conversion of decimal seconds to
48 microseconds, as reported by Skip Montanaro.
49
50- Fixed bug in constructor of parser, and converted parser classes to
51 new-style classes. Original report and patch by Michael Elsdörfer.
52
53- Initialize tzid and comps in tz.py, to prevent the code from ever
54 raising a NameError (even with broken files). Johan Dahlin suggested
55 the fix after a pyflakes run.
56
niemeyerb085ec62007-11-12 14:08:14 +000057- Version is now published in dateutil.__version__, as requested
58 by Darren Dale.
59
niemeyerd0bbacb2007-11-20 00:07:34 +000060- All code is compatible with new-style division.
61
niemeyerb085ec62007-11-12 14:08:14 +000062
niemeyer82b1e432006-10-25 17:16:42 +000063Version 1.2
64-----------
65
66- Now tzfile will round timezones to full-minutes if necessary,
67 since Python's datetime doesn't support sub-minute offsets.
68 Thanks to Ilpo Nyyssönen for reporting the issue.
69
niemeyer75b11fb2007-06-27 01:53:23 +000070- Removed bare string exceptions, as reported and fixed by
71 Wilfredo Sánchez Vega.
72
73- Fix bug in leap count parsing (reported and fixed by Eugene Oden).
74
niemeyere2b63462005-02-24 17:23:24 +000075
niemeyer328d6ce2005-10-25 14:17:53 +000076Version 1.1
77-----------
78
79- Fixed rrule byyearday handling. Abramo Bagnara pointed out that
80 RFC2445 allows negative numbers.
81
niemeyer97aef7e2005-12-22 19:53:44 +000082- Fixed --prefix handling in setup.py (by Sidnei da Silva).
83
niemeyer0a33cd82005-12-22 19:55:11 +000084- Now tz.gettz() returns a tzlocal instance when not given any
85 arguments and no other timezone information is found.
86
niemeyer97aef7e2005-12-22 19:53:44 +000087- Updating timezone information to version 2005q.
niemeyer328d6ce2005-10-25 14:17:53 +000088
89
90Version 1.0
91-----------
92
93- Fixed parsing of XXhXXm formatted time after day/month/year
94 has been parsed.
95
96- Added patch by Jeffrey Harris optimizing rrule.__contains__.
97
98
niemeyere2b63462005-02-24 17:23:24 +000099Version 0.9
100-----------
101
102- Fixed pickling of timezone types, as reported by
103 Andreas Köhler.
104
105- Implemented internal timezone information with binary
106 timezone files [1]. datautil.tz.gettz() function will now
107 try to use the system timezone files, and fallback to
108 the internal versions. It's also possible to ask for
109 the internal versions directly by using
110 dateutil.zoneinfo.gettz().
111
112- New tzwin timezone type, allowing access to Windows
113 internal timezones (contributed by Jeffrey Harris).
114
115- Fixed parsing of unicode date strings.
116
117- Accept parserinfo instances as the parser constructor
118 parameter, besides parserinfo (sub)classes.
119
120- Changed weekday to spell the not-set n value as None
121 instead of 0.
122
123- Fixed other reported bugs.
124
125[1] http://www.twinsun.com/tz/tz-link.htm
126
127
128Version 0.5
129-----------
130
131- Removed FREQ_ prefix from rrule frequency constants
132 WARNING: this breaks compatibility with previous versions.
133
134- Fixed rrule.between() for cases where "after" is achieved
135 before even starting, as reported by Andreas Köhler.
136
137- Fixed two digit zero-year parsing (such as 31-Dec-00), as
138 reported by Jim Abramson, and included test case for this.
139
140- Sort exdate and rdate before iterating over them, so that
141 it's not necessary to sort them before adding to the rruleset,
142 as reported by Nicholas Piper.
143