From ba7a6ea437c40ee6b37667bdf287fe61d28fcf8e Mon Sep 17 00:00:00 2001 From: Willem van Verseveld Date: Wed, 6 Nov 2024 08:27:06 +0100 Subject: [PATCH 1/2] =?UTF-8?q?Update=20changelog=20As=20internal=20variab?= =?UTF-8?q?le=20names=20with=20non-ASCII=20characters=20have=20been=20repl?= =?UTF-8?q?aced=20by=20ASCII=20equivalents,=20the=20TOML=20keys=20`kv?= =?UTF-8?q?=E2=82=80`,=20`=CE=B8=E1=B5=A3`=20and=20`=CE=B8=E2=82=9B`=20are?= =?UTF-8?q?=20not=20supported=20anymore.=20This=20has=20been=20added=20to?= =?UTF-8?q?=20changelog.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/src/changelog.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 72e5ae536..7c7f4baa2 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -102,7 +102,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - For improved code readability it is now discouraged to use non-ASCII characters for the names of variables, structs, functions and macros. Using the non-ASCII character for built-in operators is still allowed. This change in naming convention is now in effect and - all invalid uses of non-ASCII characters have been replaced by ASCII equivalents. + all invalid uses of non-ASCII characters have been replaced by ASCII equivalents. This + change also impacts the TOML keys `kv₀`, `θᵣ` and `θₛ`. These keys have been replaced with + the ASCII versions `kv_0`, `theta_r` and `theta_s` in v0.4.0 and the old keys are not + supported anymore. - Docs: 1) improved description of different model configurations in model-setup.md, also in relation to hydromt\_wflow in docs, 2) citing info related to wflow\_sbm publication in Geosci. Model Dev. (from in review to published). From c9bee20d280bea5df6dd5f54b3a72e09b8b8e04c Mon Sep 17 00:00:00 2001 From: Willem van Verseveld Date: Wed, 6 Nov 2024 08:29:42 +0100 Subject: [PATCH 2/2] Remove double quotes TOML keys in docs --- docs/src/user_guide/step2_settings_file.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/user_guide/step2_settings_file.md b/docs/src/user_guide/step2_settings_file.md index f2e5095ef..649e88486 100644 --- a/docs/src/user_guide/step2_settings_file.md +++ b/docs/src/user_guide/step2_settings_file.md @@ -152,7 +152,7 @@ e_r = "EoverR" infiltcappath = "InfiltCapPath" infiltcapsoil = "InfiltCapSoil" kext = "Kext" -"kv_0" = "KsatVer" +kv_0 = "KsatVer" leaf_area_index = "LAI" # Cyclic variable m = "M" maxleakage = "MaxLeakage" @@ -172,8 +172,8 @@ ttm = "TTM" w_soil = "wflow_soil" water_holding_capacity = "WHC" waterfrac = "WaterFrac" -"theta_r" = "thetaR" -"theta_s" = "thetaS" +theta_r = "thetaR" +theta_s = "thetaS" [input.lateral.river] length = "wflow_riverlength"