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