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