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