diff --git a/README.md b/README.md index edbf11f6..cc2b41e9 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Time-handling functionality from netcdf4-python [![Commits Status](https://img.shields.io/github/commits-since/UniData/cftime/latest.svg)](https://github.com/UniData/cftime/commits/master) ## News -10/25/2019: version 1.0.4.1 released (fix for [issue #126](https://github.com/Unidata/cftime/issues/126)). +10/25/2019: version 1.0.4.2 released (fix for [issue #126](https://github.com/Unidata/cftime/issues/126)). 10/21/2019: version 1.0.4 released. diff --git a/cftime/_cftime.pyx b/cftime/_cftime.pyx index c46251d4..e65e80e9 100644 --- a/cftime/_cftime.pyx +++ b/cftime/_cftime.pyx @@ -43,7 +43,7 @@ cdef int[13] _spm_366day = [0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 33 _rop_lookup = {Py_LT: '__gt__', Py_LE: '__ge__', Py_EQ: '__eq__', Py_GT: '__lt__', Py_GE: '__le__', Py_NE: '__ne__'} -__version__ = '1.0.4.1' +__version__ = '1.0.4.2' # 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. diff --git a/setup.py b/setup.py index 532754d0..40234650 100644 --- a/setup.py +++ b/setup.py @@ -119,4 +119,5 @@ def description(): 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Topic :: Scientific/Engineering', - 'License :: OSI Approved :: GNU General Public License V3 (GPLV3)']) + 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'] + )