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