Yaron de Leeuw | 7d13f30 | 2014-11-24 17:46:03 +0200 | [diff] [blame] | 1 | Version 2.3 |
| 2 | ----------- |
| 3 | |
| 4 | - Cleanup directory structure, moved test.py to dateutil/tests/test.py |
| 5 | |
Yaron de Leeuw | ae69224 | 2014-11-27 20:59:27 +0200 | [diff] [blame] | 6 | - Fixed tzwin silently not imported on windows python2 |
| 7 | |
Yaron de Leeuw | 7d13f30 | 2014-11-24 17:46:03 +0200 | [diff] [blame] | 8 | |
Tomi Pieviläinen | e49a259 | 2013-10-31 16:03:08 +0200 | [diff] [blame] | 9 | Version 2.2 |
| 10 | ----------- |
| 11 | |
| 12 | - Updated zoneinfo to 2013h |
| 13 | |
| 14 | - fuzzy_with_tokens parse addon from Christopher Corley |
| 15 | |
| 16 | - Bug with LANG=C fixed by Mike Gilbert |
| 17 | |
Tomi Pieviläinen | 691a3cc | 2012-03-28 18:49:19 +0300 | [diff] [blame] | 18 | Version 2.1 |
| 19 | ----------- |
Tomi Pieviläinen | 8a7cfe0 | 2012-03-03 10:08:17 +0200 | [diff] [blame] | 20 | |
| 21 | - New maintainer |
| 22 | |
Tomi Pieviläinen | 691a3cc | 2012-03-28 18:49:19 +0300 | [diff] [blame] | 23 | - Dateutil now works on Python 2.6, 2.7 and 3.2 from same codebase (with six) |
Tomi Pieviläinen | 8a7cfe0 | 2012-03-03 10:08:17 +0200 | [diff] [blame] | 24 | |
Tomi Pieviläinen | 691a3cc | 2012-03-28 18:49:19 +0300 | [diff] [blame] | 25 | - #704047: Ismael Carnales' patch for a new time format |
Tomi Pieviläinen | 8a7cfe0 | 2012-03-03 10:08:17 +0200 | [diff] [blame] | 26 | |
| 27 | - Small bug fixes, thanks for reporters! |
| 28 | |
| 29 | |
Gustavo Niemeyer | 52093c9 | 2011-03-24 14:38:30 -0300 | [diff] [blame] | 30 | Version 2.0 |
| 31 | ----------- |
| 32 | |
| 33 | - Ported to Python 3, by Brian Jones. If you need dateutil for Python 2.X, |
| 34 | please continue using the 1.X series. |
| 35 | |
| 36 | - There's no such thing as a "PSF License". This source code is now |
| 37 | made available under the Simplified BSD license. See LICENSE for |
| 38 | details. |
niemeyer | e9f0b24 | 2010-03-30 00:42:25 +0000 | [diff] [blame] | 39 | |
| 40 | Version 1.5 |
| 41 | ----------- |
| 42 | |
| 43 | - As reported by Mathieu Bridon, rrules were matching the bysecond rules |
| 44 | incorrectly against byminute in some circumstances when the SECONDLY |
| 45 | frequency was in use, due to a copy & paste bug. The problem has been |
| 46 | unittested and corrected. |
| 47 | |
| 48 | - Adam Ryan reported a problem in the relativedelta implementation which |
| 49 | affected the yearday parameter in the month of January specifically. |
| 50 | This has been unittested and fixed. |
| 51 | |
| 52 | - Updated timezone information. |
| 53 | |
| 54 | |
niemeyer | 55254c5 | 2008-08-07 02:46:52 +0000 | [diff] [blame] | 55 | Version 1.4.1 |
| 56 | ------------- |
| 57 | |
niemeyer | 124c329 | 2008-08-07 02:47:17 +0000 | [diff] [blame] | 58 | - Updated timezone information. |
| 59 | |
niemeyer | 55254c5 | 2008-08-07 02:46:52 +0000 | [diff] [blame] | 60 | |
niemeyer | f296b1a | 2008-02-28 03:42:33 +0000 | [diff] [blame] | 61 | Version 1.4 |
| 62 | ----------- |
| 63 | |
niemeyer | 05c217d | 2008-02-28 04:52:22 +0000 | [diff] [blame] | 64 | - Fixed another parser precision problem on conversion of decimal seconds |
| 65 | to microseconds, as reported by Erik Brown. Now these issues are gone |
| 66 | for real since it's not using floating point arithmetic anymore. |
niemeyer | f296b1a | 2008-02-28 03:42:33 +0000 | [diff] [blame] | 67 | |
niemeyer | 05c217d | 2008-02-28 04:52:22 +0000 | [diff] [blame] | 68 | - Fixed case where tzrange.utcoffset and tzrange.dst() might fail due |
| 69 | to a date being used where a datetime was expected (reported and fixed |
| 70 | by Lennart Regebro). |
| 71 | |
| 72 | - Prevent tzstr from introducing daylight timings in strings that didn't |
| 73 | specify them (reported by Lennart Regebro). |
| 74 | |
| 75 | - Calls like gettz("GMT+3") and gettz("UTC-2") will now return the |
| 76 | expected values, instead of the TZ variable behavior. |
niemeyer | 3cb423c | 2008-02-28 05:00:57 +0000 | [diff] [blame] | 77 | |
| 78 | - Fixed DST signal handling in zoneinfo files. Reported by |
| 79 | Nicholas F. Fabry and John-Mark Gurney. |
niemeyer | f296b1a | 2008-02-28 03:42:33 +0000 | [diff] [blame] | 80 | |
| 81 | |
niemeyer | b085ec6 | 2007-11-12 14:08:14 +0000 | [diff] [blame] | 82 | Version 1.3 |
| 83 | ----------- |
| 84 | |
niemeyer | b2df80e | 2007-11-12 21:53:39 +0000 | [diff] [blame] | 85 | - Fixed precision problem on conversion of decimal seconds to |
| 86 | microseconds, as reported by Skip Montanaro. |
| 87 | |
| 88 | - Fixed bug in constructor of parser, and converted parser classes to |
| 89 | new-style classes. Original report and patch by Michael Elsdörfer. |
| 90 | |
| 91 | - Initialize tzid and comps in tz.py, to prevent the code from ever |
| 92 | raising a NameError (even with broken files). Johan Dahlin suggested |
| 93 | the fix after a pyflakes run. |
| 94 | |
niemeyer | b085ec6 | 2007-11-12 14:08:14 +0000 | [diff] [blame] | 95 | - Version is now published in dateutil.__version__, as requested |
| 96 | by Darren Dale. |
| 97 | |
niemeyer | d0bbacb | 2007-11-20 00:07:34 +0000 | [diff] [blame] | 98 | - All code is compatible with new-style division. |
| 99 | |
niemeyer | b085ec6 | 2007-11-12 14:08:14 +0000 | [diff] [blame] | 100 | |
niemeyer | 82b1e43 | 2006-10-25 17:16:42 +0000 | [diff] [blame] | 101 | Version 1.2 |
| 102 | ----------- |
| 103 | |
| 104 | - Now tzfile will round timezones to full-minutes if necessary, |
| 105 | since Python's datetime doesn't support sub-minute offsets. |
| 106 | Thanks to Ilpo Nyyssönen for reporting the issue. |
| 107 | |
niemeyer | 75b11fb | 2007-06-27 01:53:23 +0000 | [diff] [blame] | 108 | - Removed bare string exceptions, as reported and fixed by |
| 109 | Wilfredo Sánchez Vega. |
| 110 | |
| 111 | - Fix bug in leap count parsing (reported and fixed by Eugene Oden). |
| 112 | |
niemeyer | e2b6346 | 2005-02-24 17:23:24 +0000 | [diff] [blame] | 113 | |
niemeyer | 328d6ce | 2005-10-25 14:17:53 +0000 | [diff] [blame] | 114 | Version 1.1 |
| 115 | ----------- |
| 116 | |
| 117 | - Fixed rrule byyearday handling. Abramo Bagnara pointed out that |
| 118 | RFC2445 allows negative numbers. |
| 119 | |
niemeyer | 97aef7e | 2005-12-22 19:53:44 +0000 | [diff] [blame] | 120 | - Fixed --prefix handling in setup.py (by Sidnei da Silva). |
| 121 | |
niemeyer | 0a33cd8 | 2005-12-22 19:55:11 +0000 | [diff] [blame] | 122 | - Now tz.gettz() returns a tzlocal instance when not given any |
| 123 | arguments and no other timezone information is found. |
| 124 | |
niemeyer | 97aef7e | 2005-12-22 19:53:44 +0000 | [diff] [blame] | 125 | - Updating timezone information to version 2005q. |
niemeyer | 328d6ce | 2005-10-25 14:17:53 +0000 | [diff] [blame] | 126 | |
| 127 | |
| 128 | Version 1.0 |
| 129 | ----------- |
| 130 | |
| 131 | - Fixed parsing of XXhXXm formatted time after day/month/year |
| 132 | has been parsed. |
| 133 | |
| 134 | - Added patch by Jeffrey Harris optimizing rrule.__contains__. |
| 135 | |
| 136 | |
niemeyer | e2b6346 | 2005-02-24 17:23:24 +0000 | [diff] [blame] | 137 | Version 0.9 |
| 138 | ----------- |
| 139 | |
| 140 | - Fixed pickling of timezone types, as reported by |
| 141 | Andreas Köhler. |
| 142 | |
| 143 | - Implemented internal timezone information with binary |
| 144 | timezone files [1]. datautil.tz.gettz() function will now |
| 145 | try to use the system timezone files, and fallback to |
| 146 | the internal versions. It's also possible to ask for |
| 147 | the internal versions directly by using |
| 148 | dateutil.zoneinfo.gettz(). |
| 149 | |
| 150 | - New tzwin timezone type, allowing access to Windows |
| 151 | internal timezones (contributed by Jeffrey Harris). |
| 152 | |
| 153 | - Fixed parsing of unicode date strings. |
| 154 | |
| 155 | - Accept parserinfo instances as the parser constructor |
| 156 | parameter, besides parserinfo (sub)classes. |
| 157 | |
| 158 | - Changed weekday to spell the not-set n value as None |
| 159 | instead of 0. |
| 160 | |
| 161 | - Fixed other reported bugs. |
| 162 | |
| 163 | [1] http://www.twinsun.com/tz/tz-link.htm |
| 164 | |
| 165 | |
| 166 | Version 0.5 |
| 167 | ----------- |
| 168 | |
| 169 | - Removed FREQ_ prefix from rrule frequency constants |
| 170 | WARNING: this breaks compatibility with previous versions. |
| 171 | |
| 172 | - Fixed rrule.between() for cases where "after" is achieved |
| 173 | before even starting, as reported by Andreas Köhler. |
| 174 | |
| 175 | - Fixed two digit zero-year parsing (such as 31-Dec-00), as |
| 176 | reported by Jim Abramson, and included test case for this. |
| 177 | |
| 178 | - Sort exdate and rdate before iterating over them, so that |
| 179 | it's not necessary to sort them before adding to the rruleset, |
| 180 | as reported by Nicholas Piper. |
| 181 | |