From c24b7268b90aeff96568710b11b09a4335a7e7dc Mon Sep 17 00:00:00 2001 From: Carsten Ehbrecht Date: Tue, 3 May 2022 11:52:16 +0200 Subject: [PATCH 1/2] update changes --- HISTORY.rst | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 915c0ac..8f0486e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,17 +1,24 @@ Version History =============== +v0.6.2 (2022-05-03) +------------------- +Bug Fixes +^^^^^^^^^ +* Fixed ``get_coords_by_type`` in ``xarray_utils`` to handle non existing coords (#99). + + v0.6.1 (2022-04-19) ------------------- Bug Fixes ^^^^^^^^^ -* Added data_node_root in `roocs.ini` for C3S-CORDEX and C3S-CMIP5 (#97). +* Added data_node_root in ``roocs.ini`` for C3S-CORDEX and C3S-CMIP5 (#97). v0.6.0 (2022-04-14) ------------------- Bug Fixes ^^^^^^^^^ -* Updated default `roocs.ini` for C3S-CORDEX (#93, #95). +* Updated default ``roocs.ini`` for C3S-CORDEX (#93, #95). * Fix added for `get_bbox `_ on C3S-CORDEX (#94). v0.5.0 (2021-10-26) From a580b92309e157abaad125cf1d1cad28aa054c41 Mon Sep 17 00:00:00 2001 From: Carsten Ehbrecht Date: Tue, 3 May 2022 11:53:44 +0200 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.6.1=20=E2=86=92=200.6.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/conf.py | 2 +- roocs_utils/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index f6f5467..1f380a6 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -70,7 +70,7 @@ # the built documents. # # The short X.Y version. -version = "0.6.1" +version = "0.6.2" # The full version, including alpha/beta/rc tags. release = version diff --git a/roocs_utils/__init__.py b/roocs_utils/__init__.py index 3e35524..6cf90d3 100644 --- a/roocs_utils/__init__.py +++ b/roocs_utils/__init__.py @@ -5,7 +5,7 @@ __contact__ = "eleanor.smith@stfc.ac.uk" __copyright__ = "Copyright 2018 United Kingdom Research and Innovation" __license__ = "BSD - see LICENSE file in top-level package directory" -__version__ = "0.6.1" +__version__ = "0.6.2" from roocs_utils.config import get_config import roocs_utils diff --git a/setup.cfg b/setup.cfg index 42fd411..4e78b8f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.1 +current_version = 0.6.2 commit = True tag = True diff --git a/setup.py b/setup.py index fd72849..3db110f 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ __contact__ = "eleanor.smith@stfc.ac.uk" __copyright__ = "Copyright 2018 United Kingdom Research and Innovation" __license__ = "BSD - see LICENSE file in top-level package directory" -__version__ = "0.6.1" +__version__ = "0.6.2" from setuptools import find_packages from setuptools import setup