From e8f0e6d2f2b27b46ea8103c6bc9d6636072f340e Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Thu, 9 Jan 2025 14:20:17 -0700 Subject: [PATCH] bump version number, add Changelog entry --- Changelog | 5 +++++ src/cftime/_cftime.pyx | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 9dcafbdb..3402800b 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,8 @@ +since version 1.6.4 release +=========================== +* roundtrip not correct when dates are all python datetime + instances and calendar not proleptic_gregorian (issue #354). + version 1.6.4 (release tag v1.6.4rel) ===================================== * build aarch64 linux wheels (issue #333). diff --git a/src/cftime/_cftime.pyx b/src/cftime/_cftime.pyx index 34b6209c..cfa3d6ab 100644 --- a/src/cftime/_cftime.pyx +++ b/src/cftime/_cftime.pyx @@ -40,7 +40,7 @@ cdef int[12] _dayspermonth_leap = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 3 cdef int[13] _cumdayspermonth = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365] cdef int[13] _cumdayspermonth_leap = [0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366] -__version__ = '1.6.4.post1' +__version__ = '1.6.5' # Adapted from http://delete.me.uk/2005/03/iso8601.html # Note: This regex ensures that all ISO8601 timezone formats are accepted - but, due to legacy support for other timestrings, not all incorrect formats can be rejected.