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