diff --git a/HISTORY.rst b/HISTORY.rst index ac5af18..915c0ac 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,12 @@ Version History =============== +v0.6.1 (2022-04-19) +------------------- +Bug Fixes +^^^^^^^^^ +* Added data_node_root in `roocs.ini` for C3S-CORDEX and C3S-CMIP5 (#97). + v0.6.0 (2022-04-14) ------------------- Bug Fixes diff --git a/docs/conf.py b/docs/conf.py index 8f69a8f..f6f5467 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -70,7 +70,7 @@ # the built documents. # # The short X.Y version. -version = "0.6.0" +version = "0.6.1" # The full version, including alpha/beta/rc tags. release = version diff --git a/roocs_utils/__init__.py b/roocs_utils/__init__.py index 358febb..3e35524 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.0" +__version__ = "0.6.1" from roocs_utils.config import get_config import roocs_utils diff --git a/setup.cfg b/setup.cfg index bdd76ce..42fd411 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.6.1 commit = True tag = True diff --git a/setup.py b/setup.py index ec1047b..fd72849 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.0" +__version__ = "0.6.1" from setuptools import find_packages from setuptools import setup