blob: 60628a590304536e3d604ed0e6fe1d47125a0609 [file] [log] [blame]
Paul G17d4c2a2015-02-25 09:21:47 -06001Version 2.4.1
2-------------
3
4- Added explicit check for valid hours if AM/PM is specified in parser.
5 (gh pr #22, issue #21)
6- Fix bug in rrule introduced in 2.4.0 where byweekday parameter was not
7 handled properly. (gh pr #35, issue #34)
8- Fix error where parser allowed some invalid dates, overwriting existing hours
9 with the last 2-digit number in the string. (gh pr #32, issue #31)
Paul Gcd278d12015-02-26 14:05:36 -060010- Fix and add test for Python 2.x compatibility with boolean checking of
11 relativedelta objects. Implemented by @nimasmi (gh pr #43) and Cédric Krier
12 (lp: 1035038)
Paul G17d4c2a2015-02-25 09:21:47 -060013- Replaced parse() calls with explicit datetime objects in unit tests unrelated
14 to parser. (gh pr #36)
15- Additional documentation for parser (gh pr #29, #33, #41) and rrule.
16- Formatting fixes to documentation of rrule and README.rst.
17- Updated zoneinfo to 2015a.
18
Yaron de Leeuwe0558da2015-01-05 19:31:24 +020019Version 2.4.0
20-------------
21
22- Fix an issue with relativedelta and freezegun (lp:1374022)
23- Fix tzinfo in windows for timezones without dst (lp:1010050, gh #2)
24- Ignore missing timezones in windows like in POSIX
25- Fix minimal version requirement for six (gh #6)
26- Many rrule changes and fixes by @pganssle (gh pull requests #13 #14 #17),
27 including defusing some infinite loops (gh #4)
28
Yaron de Leeuw7d13f302014-11-24 17:46:03 +020029Version 2.3
30-----------
31
32- Cleanup directory structure, moved test.py to dateutil/tests/test.py
33
Yaron de Leeuw549dcc82014-11-27 21:47:16 +020034- Changed many aspects of dealing with the zone info file. Instead of a cache,
35 all the zones are loaded to memory, but symbolic links are loaded only once,
36 so not much memory is used.
37
Yaron de Leeuwb759afd2014-11-27 22:13:34 +020038- The package is now zip-safe, and universal-wheelable, thanks to changes in
39 the handling of the zoneinfo file.
40
Yaron de Leeuwae692242014-11-27 20:59:27 +020041- Fixed tzwin silently not imported on windows python2
42
Yaron de Leeuwdb52fc82014-11-29 18:04:03 +020043- New maintainer, together with new hosting: GitHub, Travis, Read-The-Docs
Yaron de Leeuw7d13f302014-11-24 17:46:03 +020044
Tomi Pieviläinene49a2592013-10-31 16:03:08 +020045Version 2.2
46-----------
47
48- Updated zoneinfo to 2013h
49
50- fuzzy_with_tokens parse addon from Christopher Corley
51
52- Bug with LANG=C fixed by Mike Gilbert
53
Tomi Pieviläinen691a3cc2012-03-28 18:49:19 +030054Version 2.1
55-----------
Tomi Pieviläinen8a7cfe02012-03-03 10:08:17 +020056
57- New maintainer
58
Tomi Pieviläinen691a3cc2012-03-28 18:49:19 +030059- 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 +020060
Tomi Pieviläinen691a3cc2012-03-28 18:49:19 +030061- #704047: Ismael Carnales' patch for a new time format
Tomi Pieviläinen8a7cfe02012-03-03 10:08:17 +020062
63- Small bug fixes, thanks for reporters!
64
65
Gustavo Niemeyer52093c92011-03-24 14:38:30 -030066Version 2.0
67-----------
68
69- Ported to Python 3, by Brian Jones. If you need dateutil for Python 2.X,
70 please continue using the 1.X series.
71
72- There's no such thing as a "PSF License". This source code is now
73 made available under the Simplified BSD license. See LICENSE for
74 details.
niemeyere9f0b242010-03-30 00:42:25 +000075
76Version 1.5
77-----------
78
79- As reported by Mathieu Bridon, rrules were matching the bysecond rules
80 incorrectly against byminute in some circumstances when the SECONDLY
81 frequency was in use, due to a copy & paste bug. The problem has been
82 unittested and corrected.
83
84- Adam Ryan reported a problem in the relativedelta implementation which
85 affected the yearday parameter in the month of January specifically.
86 This has been unittested and fixed.
87
88- Updated timezone information.
89
90
niemeyer55254c52008-08-07 02:46:52 +000091Version 1.4.1
92-------------
93
niemeyer124c3292008-08-07 02:47:17 +000094- Updated timezone information.
95
niemeyer55254c52008-08-07 02:46:52 +000096
niemeyerf296b1a2008-02-28 03:42:33 +000097Version 1.4
98-----------
99
niemeyer05c217d2008-02-28 04:52:22 +0000100- Fixed another parser precision problem on conversion of decimal seconds
101 to microseconds, as reported by Erik Brown. Now these issues are gone
102 for real since it's not using floating point arithmetic anymore.
niemeyerf296b1a2008-02-28 03:42:33 +0000103
niemeyer05c217d2008-02-28 04:52:22 +0000104- Fixed case where tzrange.utcoffset and tzrange.dst() might fail due
105 to a date being used where a datetime was expected (reported and fixed
106 by Lennart Regebro).
107
108- Prevent tzstr from introducing daylight timings in strings that didn't
109 specify them (reported by Lennart Regebro).
110
111- Calls like gettz("GMT+3") and gettz("UTC-2") will now return the
112 expected values, instead of the TZ variable behavior.
niemeyer3cb423c2008-02-28 05:00:57 +0000113
114- Fixed DST signal handling in zoneinfo files. Reported by
115 Nicholas F. Fabry and John-Mark Gurney.
niemeyerf296b1a2008-02-28 03:42:33 +0000116
117
niemeyerb085ec62007-11-12 14:08:14 +0000118Version 1.3
119-----------
120
niemeyerb2df80e2007-11-12 21:53:39 +0000121- Fixed precision problem on conversion of decimal seconds to
122 microseconds, as reported by Skip Montanaro.
123
124- Fixed bug in constructor of parser, and converted parser classes to
125 new-style classes. Original report and patch by Michael Elsdörfer.
126
127- Initialize tzid and comps in tz.py, to prevent the code from ever
128 raising a NameError (even with broken files). Johan Dahlin suggested
129 the fix after a pyflakes run.
130
niemeyerb085ec62007-11-12 14:08:14 +0000131- Version is now published in dateutil.__version__, as requested
132 by Darren Dale.
133
niemeyerd0bbacb2007-11-20 00:07:34 +0000134- All code is compatible with new-style division.
135
niemeyerb085ec62007-11-12 14:08:14 +0000136
niemeyer82b1e432006-10-25 17:16:42 +0000137Version 1.2
138-----------
139
140- Now tzfile will round timezones to full-minutes if necessary,
141 since Python's datetime doesn't support sub-minute offsets.
142 Thanks to Ilpo Nyyssönen for reporting the issue.
143
niemeyer75b11fb2007-06-27 01:53:23 +0000144- Removed bare string exceptions, as reported and fixed by
145 Wilfredo Sánchez Vega.
146
147- Fix bug in leap count parsing (reported and fixed by Eugene Oden).
148
niemeyere2b63462005-02-24 17:23:24 +0000149
niemeyer328d6ce2005-10-25 14:17:53 +0000150Version 1.1
151-----------
152
153- Fixed rrule byyearday handling. Abramo Bagnara pointed out that
154 RFC2445 allows negative numbers.
155
niemeyer97aef7e2005-12-22 19:53:44 +0000156- Fixed --prefix handling in setup.py (by Sidnei da Silva).
157
niemeyer0a33cd82005-12-22 19:55:11 +0000158- Now tz.gettz() returns a tzlocal instance when not given any
159 arguments and no other timezone information is found.
160
niemeyer97aef7e2005-12-22 19:53:44 +0000161- Updating timezone information to version 2005q.
niemeyer328d6ce2005-10-25 14:17:53 +0000162
163
164Version 1.0
165-----------
166
167- Fixed parsing of XXhXXm formatted time after day/month/year
168 has been parsed.
169
170- Added patch by Jeffrey Harris optimizing rrule.__contains__.
171
172
niemeyere2b63462005-02-24 17:23:24 +0000173Version 0.9
174-----------
175
176- Fixed pickling of timezone types, as reported by
177 Andreas Köhler.
178
179- Implemented internal timezone information with binary
180 timezone files [1]. datautil.tz.gettz() function will now
181 try to use the system timezone files, and fallback to
182 the internal versions. It's also possible to ask for
183 the internal versions directly by using
184 dateutil.zoneinfo.gettz().
185
186- New tzwin timezone type, allowing access to Windows
187 internal timezones (contributed by Jeffrey Harris).
188
189- Fixed parsing of unicode date strings.
190
191- Accept parserinfo instances as the parser constructor
192 parameter, besides parserinfo (sub)classes.
193
194- Changed weekday to spell the not-set n value as None
195 instead of 0.
196
197- Fixed other reported bugs.
198
199[1] http://www.twinsun.com/tz/tz-link.htm
200
201
202Version 0.5
203-----------
204
205- Removed FREQ_ prefix from rrule frequency constants
206 WARNING: this breaks compatibility with previous versions.
207
208- Fixed rrule.between() for cases where "after" is achieved
209 before even starting, as reported by Andreas Köhler.
210
211- Fixed two digit zero-year parsing (such as 31-Dec-00), as
212 reported by Jim Abramson, and included test case for this.
213
214- Sort exdate and rdate before iterating over them, so that
215 it's not necessary to sort them before adding to the rruleset,
216 as reported by Nicholas Piper.
217