Skip to content

Commit

Permalink
add changelog item
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaapel committed May 23, 2024
1 parent 2fea3b6 commit 5301d7c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,28 @@
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Current File",
"name": "Python Debugger: Current File Test",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"purpose": [
"debug-test"
]
},
{
"name": "Python Debugger: Current File Script Args",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"purpose": [
"debug-in-terminal"
],
"args": [
"/home/jaapel/open_source/hydromt/data/catalogs/artifact_data/v0.0.9/data_catalog.yml",
"/home/jaapel/open_source/hydromt/data/catalogs/artifact_data/v1.0.0/data_catalog.yml"
]
}
]
}
1 change: 1 addition & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Added

Changed
-------
- The data catalog format has been refactored to better represent the individual v1 components. (#912)
- The `root` meta key of data catalogs yaml files has become `roots` (#786)
- The model region is no longer a subset of the `geoms` but rather it's own component class. See the migration guide for more info (#810)
- The model class has been moved to a component architecture. See the migration guide for more info (#845)
Expand Down

0 comments on commit 5301d7c

Please sign in to comment.