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