blob: 5dafbdce482140beb900ff2756eeb025c3416e62 [file] [log] [blame]
Yaron de Leeuw7d13f302014-11-24 17:46:03 +02001Version 2.3
2-----------
3
4- Cleanup directory structure, moved test.py to dateutil/tests/test.py
5
Yaron de Leeuw549dcc82014-11-27 21:47:16 +02006- Changed many aspects of dealing with the zone info file. Instead of a cache,
7 all the zones are loaded to memory, but symbolic links are loaded only once,
8 so not much memory is used.
9
Yaron de Leeuwb759afd2014-11-27 22:13:34 +020010- The package is now zip-safe, and universal-wheelable, thanks to changes in
11 the handling of the zoneinfo file.
12
Yaron de Leeuwae692242014-11-27 20:59:27 +020013- Fixed tzwin silently not imported on windows python2
14
Yaron de Leeuwdb52fc82014-11-29 18:04:03 +020015- New maintainer, together with new hosting: GitHub, Travis, Read-The-Docs
Yaron de Leeuw7d13f302014-11-24 17:46:03 +020016
Tomi Pieviläinene49a2592013-10-31 16:03:08 +020017Version 2.2
18-----------
19
20- Updated zoneinfo to 2013h
21
22- fuzzy_with_tokens parse addon from Christopher Corley
23
24- Bug with LANG=C fixed by Mike Gilbert
25
Tomi Pieviläinen691a3cc2012-03-28 18:49:19 +030026Version 2.1
27-----------
Tomi Pieviläinen8a7cfe02012-03-03 10:08:17 +020028
29- New maintainer
30
Tomi Pieviläinen691a3cc2012-03-28 18:49:19 +030031- Dateutil now works on Python 2.6, 2.7 and 3.2 from same codebase (with six)
Tomi Pieviläinen8a7cfe02012-03-03 10:08:17 +020032
Tomi Pieviläinen691a3cc2012-03-28 18:49:19 +030033- #704047: Ismael Carnales' patch for a new time format
Tomi Pieviläinen8a7cfe02012-03-03 10:08:17 +020034
35- Small bug fixes, thanks for reporters!
36
37
Gustavo Niemeyer52093c92011-03-24 14:38:30 -030038Version 2.0
39-----------
40
41- Ported to Python 3, by Brian Jones. If you need dateutil for Python 2.X,
42 please continue using the 1.X series.
43
44- There's no such thing as a "PSF License". This source code is now
45 made available under the Simplified BSD license. See LICENSE for
46 details.
niemeyere9f0b242010-03-30 00:42:25 +000047
48Version 1.5
49-----------
50
51- As reported by Mathieu Bridon, rrules were matching the bysecond rules
52 incorrectly against byminute in some circumstances when the SECONDLY
53 frequency was in use, due to a copy & paste bug. The problem has been
54 unittested and corrected.
55
56- Adam Ryan reported a problem in the relativedelta implementation which
57 affected the yearday parameter in the month of January specifically.
58 This has been unittested and fixed.
59
60- Updated timezone information.
61
62
niemeyer55254c52008-08-07 02:46:52 +000063Version 1.4.1
64-------------
65
niemeyer124c3292008-08-07 02:47:17 +000066- Updated timezone information.
67
niemeyer55254c52008-08-07 02:46:52 +000068
niemeyerf296b1a2008-02-28 03:42:33 +000069Version 1.4
70-----------
71
niemeyer05c217d2008-02-28 04:52:22 +000072- Fixed another parser precision problem on conversion of decimal seconds
73 to microseconds, as reported by Erik Brown. Now these issues are gone
74 for real since it's not using floating point arithmetic anymore.
niemeyerf296b1a2008-02-28 03:42:33 +000075
niemeyer05c217d2008-02-28 04:52:22 +000076- Fixed case where tzrange.utcoffset and tzrange.dst() might fail due
77 to a date being used where a datetime was expected (reported and fixed
78 by Lennart Regebro).
79
80- Prevent tzstr from introducing daylight timings in strings that didn't
81 specify them (reported by Lennart Regebro).
82
83- Calls like gettz("GMT+3") and gettz("UTC-2") will now return the
84 expected values, instead of the TZ variable behavior.
niemeyer3cb423c2008-02-28 05:00:57 +000085
86- Fixed DST signal handling in zoneinfo files. Reported by
87 Nicholas F. Fabry and John-Mark Gurney.
niemeyerf296b1a2008-02-28 03:42:33 +000088
89
niemeyerb085ec62007-11-12 14:08:14 +000090Version 1.3
91-----------
92
niemeyerb2df80e2007-11-12 21:53:39 +000093- Fixed precision problem on conversion of decimal seconds to
94 microseconds, as reported by Skip Montanaro.
95
96- Fixed bug in constructor of parser, and converted parser classes to
97 new-style classes. Original report and patch by Michael Elsdörfer.
98
99- Initialize tzid and comps in tz.py, to prevent the code from ever
100 raising a NameError (even with broken files). Johan Dahlin suggested
101 the fix after a pyflakes run.
102
niemeyerb085ec62007-11-12 14:08:14 +0000103- Version is now published in dateutil.__version__, as requested
104 by Darren Dale.
105
niemeyerd0bbacb2007-11-20 00:07:34 +0000106- All code is compatible with new-style division.
107
niemeyerb085ec62007-11-12 14:08:14 +0000108
niemeyer82b1e432006-10-25 17:16:42 +0000109Version 1.2
110-----------
111
112- Now tzfile will round timezones to full-minutes if necessary,
113 since Python's datetime doesn't support sub-minute offsets.
114 Thanks to Ilpo Nyyssönen for reporting the issue.
115
niemeyer75b11fb2007-06-27 01:53:23 +0000116- Removed bare string exceptions, as reported and fixed by
117 Wilfredo Sánchez Vega.
118
119- Fix bug in leap count parsing (reported and fixed by Eugene Oden).
120
niemeyere2b63462005-02-24 17:23:24 +0000121
niemeyer328d6ce2005-10-25 14:17:53 +0000122Version 1.1
123-----------
124
125- Fixed rrule byyearday handling. Abramo Bagnara pointed out that
126 RFC2445 allows negative numbers.
127
niemeyer97aef7e2005-12-22 19:53:44 +0000128- Fixed --prefix handling in setup.py (by Sidnei da Silva).
129
niemeyer0a33cd82005-12-22 19:55:11 +0000130- Now tz.gettz() returns a tzlocal instance when not given any
131 arguments and no other timezone information is found.
132
niemeyer97aef7e2005-12-22 19:53:44 +0000133- Updating timezone information to version 2005q.
niemeyer328d6ce2005-10-25 14:17:53 +0000134
135
136Version 1.0
137-----------
138
139- Fixed parsing of XXhXXm formatted time after day/month/year
140 has been parsed.
141
142- Added patch by Jeffrey Harris optimizing rrule.__contains__.
143
144
niemeyere2b63462005-02-24 17:23:24 +0000145Version 0.9
146-----------
147
148- Fixed pickling of timezone types, as reported by
149 Andreas Köhler.
150
151- Implemented internal timezone information with binary
152 timezone files [1]. datautil.tz.gettz() function will now
153 try to use the system timezone files, and fallback to
154 the internal versions. It's also possible to ask for
155 the internal versions directly by using
156 dateutil.zoneinfo.gettz().
157
158- New tzwin timezone type, allowing access to Windows
159 internal timezones (contributed by Jeffrey Harris).
160
161- Fixed parsing of unicode date strings.
162
163- Accept parserinfo instances as the parser constructor
164 parameter, besides parserinfo (sub)classes.
165
166- Changed weekday to spell the not-set n value as None
167 instead of 0.
168
169- Fixed other reported bugs.
170
171[1] http://www.twinsun.com/tz/tz-link.htm
172
173
174Version 0.5
175-----------
176
177- Removed FREQ_ prefix from rrule frequency constants
178 WARNING: this breaks compatibility with previous versions.
179
180- Fixed rrule.between() for cases where "after" is achieved
181 before even starting, as reported by Andreas Köhler.
182
183- Fixed two digit zero-year parsing (such as 31-Dec-00), as
184 reported by Jim Abramson, and included test case for this.
185
186- Sort exdate and rdate before iterating over them, so that
187 it's not necessary to sort them before adding to the rruleset,
188 as reported by Nicholas Piper.
189