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