blob: ba6deb6054f6876f3b196ffbcd7bbc92be67affd [file] [log] [blame]
niemeyere2b63462005-02-24 17:23:24 +00001
niemeyer328d6ce2005-10-25 14:17:53 +00002Version 1.1
3-----------
4
5- Fixed rrule byyearday handling. Abramo Bagnara pointed out that
6 RFC2445 allows negative numbers.
7
8- Updating timezone information to version 2005n.
9
10
11Version 1.0
12-----------
13
14- Fixed parsing of XXhXXm formatted time after day/month/year
15 has been parsed.
16
17- Added patch by Jeffrey Harris optimizing rrule.__contains__.
18
19
niemeyere2b63462005-02-24 17:23:24 +000020Version 0.9
21-----------
22
23- Fixed pickling of timezone types, as reported by
24 Andreas Köhler.
25
26- Implemented internal timezone information with binary
27 timezone files [1]. datautil.tz.gettz() function will now
28 try to use the system timezone files, and fallback to
29 the internal versions. It's also possible to ask for
30 the internal versions directly by using
31 dateutil.zoneinfo.gettz().
32
33- New tzwin timezone type, allowing access to Windows
34 internal timezones (contributed by Jeffrey Harris).
35
36- Fixed parsing of unicode date strings.
37
38- Accept parserinfo instances as the parser constructor
39 parameter, besides parserinfo (sub)classes.
40
41- Changed weekday to spell the not-set n value as None
42 instead of 0.
43
44- Fixed other reported bugs.
45
46[1] http://www.twinsun.com/tz/tz-link.htm
47
48
49Version 0.5
50-----------
51
52- Removed FREQ_ prefix from rrule frequency constants
53 WARNING: this breaks compatibility with previous versions.
54
55- Fixed rrule.between() for cases where "after" is achieved
56 before even starting, as reported by Andreas Köhler.
57
58- Fixed two digit zero-year parsing (such as 31-Dec-00), as
59 reported by Jim Abramson, and included test case for this.
60
61- Sort exdate and rdate before iterating over them, so that
62 it's not necessary to sort them before adding to the rruleset,
63 as reported by Nicholas Piper.
64