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