diff --git a/doc/changelog.rst b/doc/changelog.rst index 844bf34..868d209 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -4,8 +4,17 @@ Changelog .. default-role:: py:obj -v1.1.x ------- +v1.2 +---- + +:Release: v1.2.0 +:Date: 25 October 2016 + +* Improved the detection of time axes in the iris interface [`#68 `_, `#69 `_]. + + +v1.1 +---- :Release: v1.1.0 :Date: 3 March 2016 @@ -15,8 +24,8 @@ v1.1.x * Better Python 2 and 3 support without relying on 2to3. -v1.0.x ------- +v1.0 +---- :Release: v1.0.0 :Date: 16 February 2016 @@ -26,8 +35,8 @@ v1.0.x * Improved documentation, including the addition of a developer guide. -v0.5.x ------- +v0.5 +---- :Release: v0.5.1 :Date: 10 December 2015 @@ -45,8 +54,8 @@ Existing users with unaffected numpy versions (<1.10.0, >=1.10.2) don't need to Since neither cdms2 or `iris` are supported on Python 3 yet, only the standard interfaces have been tested on Python 3. -v0.4.x ------- +v0.4 +---- :Release: v0.4.1 :Date: 5 April 2013 diff --git a/doc/distribution/eofs-1.2.0.tar.gz b/doc/distribution/eofs-1.2.0.tar.gz new file mode 100644 index 0000000..88dcd43 Binary files /dev/null and b/doc/distribution/eofs-1.2.0.tar.gz differ diff --git a/doc/downloads.rst b/doc/downloads.rst index 922a927..9c92d0e 100644 --- a/doc/downloads.rst +++ b/doc/downloads.rst @@ -8,6 +8,7 @@ Source code downloads for released versions, see the :doc:`changelog` for detail =============================================================== ==================== ================ Filename Summary Released =============================================================== ==================== ================ +:download:`eofs-1.2.0.tar.gz ` version 1.2.0 source 25 Oct 2016 :download:`eofs-1.1.0.tar.gz ` version 1.1.0 source 3 Mar 2016 :download:`eofs-1.0.0.tar.gz ` version 1.0.0 source 16 Feb 2016 :download:`eofs-0.5.1.tar.gz ` version 0.5.1 source 10 Dec 2015 diff --git a/lib/eofs/__init__.py b/lib/eofs/__init__.py index 1dff0ac..4525510 100644 --- a/lib/eofs/__init__.py +++ b/lib/eofs/__init__.py @@ -1,5 +1,5 @@ """Fast and efficient EOF analysis for Python.""" -# (c) Copyright 2010-2015 Andrew Dawson. All Rights Reserved. +# (c) Copyright 2010-2016 Andrew Dawson. All Rights Reserved. # # This file is part of eofs. # @@ -25,7 +25,7 @@ __all__ = ['standard', 'tools'] # Package version number. -__version__ = '1.2.dev0' +__version__ = '1.2.0' try: from . import cdms