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