diff --git a/doc/changelog.rst b/doc/changelog.rst index c7c2cb5..aa2fa82 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -5,6 +5,12 @@ Changelog v1.3.x ------ +:Release: v1.3.2 +:Date: 18 May 2015 + +* Fixed a bug in the iris and cdms interfaces that caused incorrect results to be returned from the `gradient` method if the input had a latitude dimension ordered south-north (thanks to Adrian Matthews for the report). +* Fixed the metadata of the return values from the gradient and truncate methods in the cdms interface, previously a temporary variable name would be included in the id and long_name attributes when it should have been the name of the input field. + :Release: v1.3.1 :Date: 1 June 2014 diff --git a/doc/distribution/windspharm-1.3.2.tar.gz b/doc/distribution/windspharm-1.3.2.tar.gz new file mode 100644 index 0000000..175c64a Binary files /dev/null and b/doc/distribution/windspharm-1.3.2.tar.gz differ diff --git a/doc/downloads.rst b/doc/downloads.rst index 3487589..b396934 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:`windspharm-1.3.2.tar.gz ` version 1.3.2 source 18 May 2015 :download:`windspharm-1.3.1.tar.gz ` version 1.3.1 source 1 June 2014 :download:`windspharm-1.3.0.tar.gz ` version 1.3.0 source 2 May 2014 :download:`windspharm-1.2.1.tar.gz ` version 1.2.1 source 8 August 2013 diff --git a/lib/windspharm/__init__.py b/lib/windspharm/__init__.py index d3d9656..3198add 100644 --- a/lib/windspharm/__init__.py +++ b/lib/windspharm/__init__.py @@ -29,7 +29,7 @@ __all__ = [] # Package version number. -__version__ = '1.3.x' +__version__ = '1.3.2' try: from . import cdms