niemeyer | f296b1a | 2008-02-28 03:42:33 +0000 | [diff] [blame^] | 1 | Version 1.4 |
| 2 | ----------- |
| 3 | |
| 4 | - Fixed another precision problem on conversion of decimal seconds to |
| 5 | microseconds, as reported by Erik Brown. Now they're gone for real, |
| 6 | since it's not using floating point arithmetic anymore. |
| 7 | |
| 8 | |
| 9 | |
niemeyer | b085ec6 | 2007-11-12 14:08:14 +0000 | [diff] [blame] | 10 | Version 1.3 |
| 11 | ----------- |
| 12 | |
niemeyer | b2df80e | 2007-11-12 21:53:39 +0000 | [diff] [blame] | 13 | - Fixed precision problem on conversion of decimal seconds to |
| 14 | microseconds, as reported by Skip Montanaro. |
| 15 | |
| 16 | - Fixed bug in constructor of parser, and converted parser classes to |
| 17 | new-style classes. Original report and patch by Michael Elsdörfer. |
| 18 | |
| 19 | - Initialize tzid and comps in tz.py, to prevent the code from ever |
| 20 | raising a NameError (even with broken files). Johan Dahlin suggested |
| 21 | the fix after a pyflakes run. |
| 22 | |
niemeyer | b085ec6 | 2007-11-12 14:08:14 +0000 | [diff] [blame] | 23 | - Version is now published in dateutil.__version__, as requested |
| 24 | by Darren Dale. |
| 25 | |
niemeyer | d0bbacb | 2007-11-20 00:07:34 +0000 | [diff] [blame] | 26 | - All code is compatible with new-style division. |
| 27 | |
niemeyer | b085ec6 | 2007-11-12 14:08:14 +0000 | [diff] [blame] | 28 | |
niemeyer | 82b1e43 | 2006-10-25 17:16:42 +0000 | [diff] [blame] | 29 | Version 1.2 |
| 30 | ----------- |
| 31 | |
| 32 | - Now tzfile will round timezones to full-minutes if necessary, |
| 33 | since Python's datetime doesn't support sub-minute offsets. |
| 34 | Thanks to Ilpo Nyyssönen for reporting the issue. |
| 35 | |
niemeyer | 75b11fb | 2007-06-27 01:53:23 +0000 | [diff] [blame] | 36 | - Removed bare string exceptions, as reported and fixed by |
| 37 | Wilfredo Sánchez Vega. |
| 38 | |
| 39 | - Fix bug in leap count parsing (reported and fixed by Eugene Oden). |
| 40 | |
niemeyer | e2b6346 | 2005-02-24 17:23:24 +0000 | [diff] [blame] | 41 | |
niemeyer | 328d6ce | 2005-10-25 14:17:53 +0000 | [diff] [blame] | 42 | Version 1.1 |
| 43 | ----------- |
| 44 | |
| 45 | - Fixed rrule byyearday handling. Abramo Bagnara pointed out that |
| 46 | RFC2445 allows negative numbers. |
| 47 | |
niemeyer | 97aef7e | 2005-12-22 19:53:44 +0000 | [diff] [blame] | 48 | - Fixed --prefix handling in setup.py (by Sidnei da Silva). |
| 49 | |
niemeyer | 0a33cd8 | 2005-12-22 19:55:11 +0000 | [diff] [blame] | 50 | - Now tz.gettz() returns a tzlocal instance when not given any |
| 51 | arguments and no other timezone information is found. |
| 52 | |
niemeyer | 97aef7e | 2005-12-22 19:53:44 +0000 | [diff] [blame] | 53 | - Updating timezone information to version 2005q. |
niemeyer | 328d6ce | 2005-10-25 14:17:53 +0000 | [diff] [blame] | 54 | |
| 55 | |
| 56 | Version 1.0 |
| 57 | ----------- |
| 58 | |
| 59 | - Fixed parsing of XXhXXm formatted time after day/month/year |
| 60 | has been parsed. |
| 61 | |
| 62 | - Added patch by Jeffrey Harris optimizing rrule.__contains__. |
| 63 | |
| 64 | |
niemeyer | e2b6346 | 2005-02-24 17:23:24 +0000 | [diff] [blame] | 65 | Version 0.9 |
| 66 | ----------- |
| 67 | |
| 68 | - Fixed pickling of timezone types, as reported by |
| 69 | Andreas Köhler. |
| 70 | |
| 71 | - Implemented internal timezone information with binary |
| 72 | timezone files [1]. datautil.tz.gettz() function will now |
| 73 | try to use the system timezone files, and fallback to |
| 74 | the internal versions. It's also possible to ask for |
| 75 | the internal versions directly by using |
| 76 | dateutil.zoneinfo.gettz(). |
| 77 | |
| 78 | - New tzwin timezone type, allowing access to Windows |
| 79 | internal timezones (contributed by Jeffrey Harris). |
| 80 | |
| 81 | - Fixed parsing of unicode date strings. |
| 82 | |
| 83 | - Accept parserinfo instances as the parser constructor |
| 84 | parameter, besides parserinfo (sub)classes. |
| 85 | |
| 86 | - Changed weekday to spell the not-set n value as None |
| 87 | instead of 0. |
| 88 | |
| 89 | - Fixed other reported bugs. |
| 90 | |
| 91 | [1] http://www.twinsun.com/tz/tz-link.htm |
| 92 | |
| 93 | |
| 94 | Version 0.5 |
| 95 | ----------- |
| 96 | |
| 97 | - Removed FREQ_ prefix from rrule frequency constants |
| 98 | WARNING: this breaks compatibility with previous versions. |
| 99 | |
| 100 | - Fixed rrule.between() for cases where "after" is achieved |
| 101 | before even starting, as reported by Andreas Köhler. |
| 102 | |
| 103 | - Fixed two digit zero-year parsing (such as 31-Dec-00), as |
| 104 | reported by Jim Abramson, and included test case for this. |
| 105 | |
| 106 | - Sort exdate and rdate before iterating over them, so that |
| 107 | it's not necessary to sort them before adding to the rruleset, |
| 108 | as reported by Nicholas Piper. |
| 109 | |