blob: b6221e030bf5c3dc3fe377544101e87ddc365398 [file] [log] [blame]
niemeyer82b1e432006-10-25 17:16:42 +00001Version 1.2
2-----------
3
4- Now tzfile will round timezones to full-minutes if necessary,
5 since Python's datetime doesn't support sub-minute offsets.
6 Thanks to Ilpo Nyyssönen for reporting the issue.
7
niemeyer75b11fb2007-06-27 01:53:23 +00008- Removed bare string exceptions, as reported and fixed by
9 Wilfredo Sánchez Vega.
10
11- Fix bug in leap count parsing (reported and fixed by Eugene Oden).
12
niemeyere2b63462005-02-24 17:23:24 +000013
niemeyer328d6ce2005-10-25 14:17:53 +000014Version 1.1
15-----------
16
17- Fixed rrule byyearday handling. Abramo Bagnara pointed out that
18 RFC2445 allows negative numbers.
19
niemeyer97aef7e2005-12-22 19:53:44 +000020- Fixed --prefix handling in setup.py (by Sidnei da Silva).
21
niemeyer0a33cd82005-12-22 19:55:11 +000022- Now tz.gettz() returns a tzlocal instance when not given any
23 arguments and no other timezone information is found.
24
niemeyer97aef7e2005-12-22 19:53:44 +000025- Updating timezone information to version 2005q.
niemeyer328d6ce2005-10-25 14:17:53 +000026
27
28Version 1.0
29-----------
30
31- Fixed parsing of XXhXXm formatted time after day/month/year
32 has been parsed.
33
34- Added patch by Jeffrey Harris optimizing rrule.__contains__.
35
36
niemeyere2b63462005-02-24 17:23:24 +000037Version 0.9
38-----------
39
40- Fixed pickling of timezone types, as reported by
41 Andreas Köhler.
42
43- Implemented internal timezone information with binary
44 timezone files [1]. datautil.tz.gettz() function will now
45 try to use the system timezone files, and fallback to
46 the internal versions. It's also possible to ask for
47 the internal versions directly by using
48 dateutil.zoneinfo.gettz().
49
50- New tzwin timezone type, allowing access to Windows
51 internal timezones (contributed by Jeffrey Harris).
52
53- Fixed parsing of unicode date strings.
54
55- Accept parserinfo instances as the parser constructor
56 parameter, besides parserinfo (sub)classes.
57
58- Changed weekday to spell the not-set n value as None
59 instead of 0.
60
61- Fixed other reported bugs.
62
63[1] http://www.twinsun.com/tz/tz-link.htm
64
65
66Version 0.5
67-----------
68
69- Removed FREQ_ prefix from rrule frequency constants
70 WARNING: this breaks compatibility with previous versions.
71
72- Fixed rrule.between() for cases where "after" is achieved
73 before even starting, as reported by Andreas Köhler.
74
75- Fixed two digit zero-year parsing (such as 31-Dec-00), as
76 reported by Jim Abramson, and included test case for this.
77
78- Sort exdate and rdate before iterating over them, so that
79 it's not necessary to sort them before adding to the rruleset,
80 as reported by Nicholas Piper.
81