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