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