From 60fc69fe0ab4e5519c78ce4932efebee532a1214 Mon Sep 17 00:00:00 2001 From: jswhit Date: Fri, 17 Jul 2020 19:04:05 -0600 Subject: [PATCH] update --- README.md | 2 ++ cftime/_cftime.pyx | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index da7c4605..df5dbf2c 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,8 @@ Time-handling functionality from netcdf4-python ## News For details on the latest updates, see the [Changelog](https://github.com/Unidata/cftime/blob/master/Changelog). +??/??/2020: Version 1.2.1 released. Fixes a couple of regressions introduced in 1.2.0. See Changelog for details. + 7/06/2020: version 1.2.0 released. New microsecond accurate algorithm for date2num/num2date contributed by [spencerkclark](https://github.com/spencerkclark). Bugs fixed in masked array handling. 5/12/2020: version 1.1.3 released. Add isoformat method for compatibility with python datetime (issue #152). diff --git a/cftime/_cftime.pyx b/cftime/_cftime.pyx index ddd20380..03d66dcc 100644 --- a/cftime/_cftime.pyx +++ b/cftime/_cftime.pyx @@ -53,7 +53,7 @@ cdef int32_t* days_per_month_array = [ _rop_lookup = {Py_LT: '__gt__', Py_LE: '__ge__', Py_EQ: '__eq__', Py_GT: '__lt__', Py_GE: '__le__', Py_NE: '__ne__'} -__version__ = '1.2.0' +__version__ = '1.2.1' # 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.