aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS25
-rw-r--r--RELEASING3
-rw-r--r--dateutil/__init__.py2
3 files changed, 29 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 118dc69..a3ba850 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,28 @@
+Version 2.5.1
+-------------
+- Updated zoneinfo to 2016b
+- Changed MANIFEST.in to explicitly include test suite in source distributions,
+ with help from @koobs (gh issue #193, pr #194, #201, #221)
+- Explicitly set all line-endings to LF, except for the NEWS file, on a
+ per-repository basis (gh pr #218)
+- Fixed an issue with improper caching behavior in rruleset objects (gh issue
+ #104, pr #207)
+- Changed to an explicit error when rrulestr strings contain a missing BYDAY
+ (gh issue #162, pr #211)
+- tzfile now correctly handles files containing leapcnt (although the leapcnt
+ information is not actually used). Contributed by @hjoukl (gh issue #146, pr
+ #147)
+- Fixed recursive import issue with tz module (gh pr #204)
+- Added compatibility between tzwin objects and datetime.time objects (gh issue
+ #216, gh pr #219)
+- Refactored monolithic test suite by module (gh issue #61, pr #200 and #206)
+- Improved test coverage in the relativedelta module (gh pr #215)
+- Adjusted documentation to reflect possibly counter-intuitive properties of
+ RFC-5545-compliant rrules, and other documentation improvements in the rrule
+ module (gh issue #105, gh issue #149 - pointer to the solution by @phep,
+ pr #213).
+
+
Version 2.5.0
-------------
- Updated zoneinfo to 2016a
diff --git a/RELEASING b/RELEASING
index d0e18de..357139c 100644
--- a/RELEASING
+++ b/RELEASING
@@ -90,3 +90,6 @@ that they are valid signatures:
gpg --verify <fname>.asc <fname>
+To do this in bulk, you can use the command:
+
+ for f in $(find ./dist -type f | grep -v '.asc$'); do gpg --verify $f.asc $f; done
diff --git a/dateutil/__init__.py b/dateutil/__init__.py
index 1f160ea..4298f91 100644
--- a/dateutil/__init__.py
+++ b/dateutil/__init__.py
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
-__version__ = "2.5.0"
+__version__ = "2.5.1"