diff --git a/.cruft.json b/.cruft.json index a3b51bfb..5882ce41 100644 --- a/.cruft.json +++ b/.cruft.json @@ -10,7 +10,7 @@ "project_slug": "ravenpy", "project_short_description": "A Python wrapper to setup and run the hydrologic modelling framework Raven.", "pypi_username": "CSHS-CWRA", - "version": "0.5.1", + "version": "0.5.2", "use_pytest": "y", "use_pypi_deployment_with_travis": "y", "add_pyup_badge": "y", diff --git a/HISTORY.rst b/HISTORY.rst index ea493860..a31dbd2f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,12 @@ History ======= +0.5.2 +----- + +* Simplify RVC configuration logic. +* Add ``ravenpy.utilities.testdata.file_md5_checksum`` (previously in ``xarray.tutorial``). + 0.5.1 ----- diff --git a/ravenpy/__version__.py b/ravenpy/__version__.py index 29c0e02f..0423f8bf 100644 --- a/ravenpy/__version__.py +++ b/ravenpy/__version__.py @@ -6,4 +6,4 @@ __author__ = """David Huard""" __email__ = "huard.david@ouranos.ca" -__version__ = "0.5.1" +__version__ = "0.5.2" diff --git a/setup.cfg b/setup.cfg index fc2e4945..22f251cc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.1 +current_version = 0.5.2 commit = False tag = False diff --git a/setup.py b/setup.py index 9818ad28..c8664716 100644 --- a/setup.py +++ b/setup.py @@ -241,7 +241,7 @@ def run(self): gis=gis_requirements, ), url="https://github.com/CSHS-CWRA/ravenpy", - version="0.5.1", + version="0.5.2", zip_safe=False, cmdclass={ "install": create_external_deps_install_class(install),