blob: b6d0fda4ae8cb0f70f5dfb87c40123cb63124c3c [file] [log] [blame]
niemeyere2b63462005-02-24 17:23:24 +00001
2Version 0.9
3-----------
4
5- Fixed pickling of timezone types, as reported by
6 Andreas Köhler.
7
8- Implemented internal timezone information with binary
9 timezone files [1]. datautil.tz.gettz() function will now
10 try to use the system timezone files, and fallback to
11 the internal versions. It's also possible to ask for
12 the internal versions directly by using
13 dateutil.zoneinfo.gettz().
14
15- New tzwin timezone type, allowing access to Windows
16 internal timezones (contributed by Jeffrey Harris).
17
18- Fixed parsing of unicode date strings.
19
20- Accept parserinfo instances as the parser constructor
21 parameter, besides parserinfo (sub)classes.
22
23- Changed weekday to spell the not-set n value as None
24 instead of 0.
25
26- Fixed other reported bugs.
27
28[1] http://www.twinsun.com/tz/tz-link.htm
29
30
31Version 0.5
32-----------
33
34- Removed FREQ_ prefix from rrule frequency constants
35 WARNING: this breaks compatibility with previous versions.
36
37- Fixed rrule.between() for cases where "after" is achieved
38 before even starting, as reported by Andreas Köhler.
39
40- Fixed two digit zero-year parsing (such as 31-Dec-00), as
41 reported by Jim Abramson, and included test case for this.
42
43- Sort exdate and rdate before iterating over them, so that
44 it's not necessary to sort them before adding to the rruleset,
45 as reported by Nicholas Piper.
46