diff --git a/kedro-datasets/RELEASE.md b/kedro-datasets/RELEASE.md index 48d607efd..a4931c1fa 100755 --- a/kedro-datasets/RELEASE.md +++ b/kedro-datasets/RELEASE.md @@ -1,5 +1,11 @@ # Upcoming Release ## Major features and improvements +## Bug fixes and other changes +## Breaking Changes +## Community contributions + +# Release 4.0.0 +## Major features and improvements * Added the following new **experimental** datasets: @@ -12,8 +18,6 @@ | `rioxarray.GeoTIFFDataset` | A dataset for loading and saving geotiff raster data | `kedro_datasets_experimental.rioxarray` | | `netcdf.NetCDFDataset` | A dataset for loading and saving "*.nc" files. | `kedro_datasets_experimental.netcdf` | -* `netcdf.NetCDFDataset` moved from `kedro_datasets` to `kedro_datasets_experimental`. - * Added the following new core datasets: | Type | Description | Location | @@ -22,6 +26,12 @@ * Extended preview feature to `yaml.YAMLDataset`. +## Bug fixes and other changes +* Added `metadata` parameter for a few datasets + +## Breaking Changes +* `netcdf.NetCDFDataset` moved from `kedro_datasets` to `kedro_datasets_experimental`. + ## Community contributions Many thanks to the following Kedroids for contributing PRs to this release: @@ -30,6 +40,9 @@ Many thanks to the following Kedroids for contributing PRs to this release: * [Thomas Gölles](https://github.com/tgoelles) * [Lukas Innig](https://github.com/derluke) * [Michael Sexton](https://github.com/michaelsexton) +* [michal-mmm](https://github.com/michal-mmm) + + # Release 3.0.1 diff --git a/kedro-datasets/kedro_datasets/__init__.py b/kedro-datasets/kedro_datasets/__init__.py index dc901c852..def06a600 100644 --- a/kedro-datasets/kedro_datasets/__init__.py +++ b/kedro-datasets/kedro_datasets/__init__.py @@ -1,7 +1,7 @@ """``kedro_datasets`` is where you can find all of Kedro's data connectors.""" __all__ = ["KedroDeprecationWarning"] -__version__ = "3.0.1" +__version__ = "4.0.0" import sys import warnings