From a3c83c4ae6322cb887b3d0b1043dcb8ce3c9e6e6 Mon Sep 17 00:00:00 2001 From: LN59 Date: Fri, 21 May 2021 10:07:58 +0200 Subject: [PATCH] update changelog and version for release --- docs/changelog.rst | 26 +++++++++++++++++++++++++- hydromt_wflow/__init__.py | 2 +- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 291dd8a7..67e29728 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -8,18 +8,42 @@ The format is based on `Keep a Changelog`_, and this project adheres to [Unreleased] ------------ +v0.1.1 (21 May 2021) +-------------------- +This release adds more functionnality for saving forcing data for wflow and fixes several bugs for some parameter values and soilgrids workflow. + +Added +^^^^^ + +- Write the forcing with user defined chunking on time (default is 1) and none on the lat/lon dimensions (makes Wflow.jl run much faster). +- Rounding of the forcing data with user defined number of decimals (by default 2). +- Progress bar when writting the forcing file. + +Changed +^^^^^^^ + +- Remove unused imports. + Fixed ^^^^^ - Fixed a mistake in the computation of the lake_b parameter for wflow. +- Missing no data values for soilgrids workflows. +- Streamorder reclass function for Manning roughness. +- New behavior of apply_ufunc from an update of xarray for passing attributes (need to specify keep_attrs=True). Documentation ^^^^^^^^^^^^^ - Added changelog. +Tests +^^^^^ + +- Tests without hydroengine for the reservoirs (too long). + v0.1.0 (28 April 2021) --------------------- +---------------------- Initial open source release of hydroMT wflow plugin, also published on pypi. Noticeable changes are listed below. Added diff --git a/hydromt_wflow/__init__.py b/hydromt_wflow/__init__.py index 56d844eb..b783c6b7 100644 --- a/hydromt_wflow/__init__.py +++ b/hydromt_wflow/__init__.py @@ -2,7 +2,7 @@ from os.path import join, dirname, abspath -__version__ = "0.1.1.dev" +__version__ = "0.1.1" try: import pcraster as pcr