NEWS 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. Version 1.5
  2. -----------
  3. - As reported by Mathieu Bridon, rrules were matching the bysecond rules
  4. incorrectly against byminute in some circumstances when the SECONDLY
  5. frequency was in use, due to a copy & paste bug. The problem has been
  6. unittested and corrected.
  7. - Adam Ryan reported a problem in the relativedelta implementation which
  8. affected the yearday parameter in the month of January specifically.
  9. This has been unittested and fixed.
  10. - Updated timezone information.
  11. Version 1.4.1
  12. -------------
  13. - Updated timezone information.
  14. Version 1.4
  15. -----------
  16. - Fixed another parser precision problem on conversion of decimal seconds
  17. to microseconds, as reported by Erik Brown. Now these issues are gone
  18. for real since it's not using floating point arithmetic anymore.
  19. - Fixed case where tzrange.utcoffset and tzrange.dst() might fail due
  20. to a date being used where a datetime was expected (reported and fixed
  21. by Lennart Regebro).
  22. - Prevent tzstr from introducing daylight timings in strings that didn't
  23. specify them (reported by Lennart Regebro).
  24. - Calls like gettz("GMT+3") and gettz("UTC-2") will now return the
  25. expected values, instead of the TZ variable behavior.
  26. - Fixed DST signal handling in zoneinfo files. Reported by
  27. Nicholas F. Fabry and John-Mark Gurney.
  28. Version 1.3
  29. -----------
  30. - Fixed precision problem on conversion of decimal seconds to
  31. microseconds, as reported by Skip Montanaro.
  32. - Fixed bug in constructor of parser, and converted parser classes to
  33. new-style classes. Original report and patch by Michael Elsdörfer.
  34. - Initialize tzid and comps in tz.py, to prevent the code from ever
  35. raising a NameError (even with broken files). Johan Dahlin suggested
  36. the fix after a pyflakes run.
  37. - Version is now published in dateutil.__version__, as requested
  38. by Darren Dale.
  39. - All code is compatible with new-style division.
  40. Version 1.2
  41. -----------
  42. - Now tzfile will round timezones to full-minutes if necessary,
  43. since Python's datetime doesn't support sub-minute offsets.
  44. Thanks to Ilpo Nyyssönen for reporting the issue.
  45. - Removed bare string exceptions, as reported and fixed by
  46. Wilfredo Sánchez Vega.
  47. - Fix bug in leap count parsing (reported and fixed by Eugene Oden).
  48. Version 1.1
  49. -----------
  50. - Fixed rrule byyearday handling. Abramo Bagnara pointed out that
  51. RFC2445 allows negative numbers.
  52. - Fixed --prefix handling in setup.py (by Sidnei da Silva).
  53. - Now tz.gettz() returns a tzlocal instance when not given any
  54. arguments and no other timezone information is found.
  55. - Updating timezone information to version 2005q.
  56. Version 1.0
  57. -----------
  58. - Fixed parsing of XXhXXm formatted time after day/month/year
  59. has been parsed.
  60. - Added patch by Jeffrey Harris optimizing rrule.__contains__.
  61. Version 0.9
  62. -----------
  63. - Fixed pickling of timezone types, as reported by
  64. Andreas Köhler.
  65. - Implemented internal timezone information with binary
  66. timezone files [1]. datautil.tz.gettz() function will now
  67. try to use the system timezone files, and fallback to
  68. the internal versions. It's also possible to ask for
  69. the internal versions directly by using
  70. dateutil.zoneinfo.gettz().
  71. - New tzwin timezone type, allowing access to Windows
  72. internal timezones (contributed by Jeffrey Harris).
  73. - Fixed parsing of unicode date strings.
  74. - Accept parserinfo instances as the parser constructor
  75. parameter, besides parserinfo (sub)classes.
  76. - Changed weekday to spell the not-set n value as None
  77. instead of 0.
  78. - Fixed other reported bugs.
  79. [1] http://www.twinsun.com/tz/tz-link.htm
  80. Version 0.5
  81. -----------
  82. - Removed FREQ_ prefix from rrule frequency constants
  83. WARNING: this breaks compatibility with previous versions.
  84. - Fixed rrule.between() for cases where "after" is achieved
  85. before even starting, as reported by Andreas Köhler.
  86. - Fixed two digit zero-year parsing (such as 31-Dec-00), as
  87. reported by Jim Abramson, and included test case for this.
  88. - Sort exdate and rdate before iterating over them, so that
  89. it's not necessary to sort them before adding to the rruleset,
  90. as reported by Nicholas Piper.