From 0c1f4720dd738dff99535bba8e96a270123e837d Mon Sep 17 00:00:00 2001 From: Merel Theisen <49397448+merelcht@users.noreply.github.com> Date: Tue, 24 Oct 2023 12:15:46 +0200 Subject: [PATCH] build(datasets): Release `1.8.0` (#406) Signed-off-by: Merel Theisen --- kedro-datasets/RELEASE.md | 7 ++++++- kedro-datasets/kedro_datasets/__init__.py | 2 +- kedro-datasets/tests/polars/test_lazy_polars_dataset.py | 1 - 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/kedro-datasets/RELEASE.md b/kedro-datasets/RELEASE.md index 9aed7b27e..d12ae02df 100755 --- a/kedro-datasets/RELEASE.md +++ b/kedro-datasets/RELEASE.md @@ -1,5 +1,10 @@ # Upcoming Release ## Major features and improvements +## Bug fixes and other changes +## Community contributions + +# Release 1.8.0 +## Major features and improvements * Moved `PartitionedDataSet` and `IncrementalDataSet` from the core Kedro repo to `kedro-datasets` and renamed to `PartitionedDataset` and `IncrementalDataset`. * Added `polars.LazyPolarsDataset`, a `GenericDataSet` using [polars](https://www.pola.rs/)'s Lazy API. * Renamed `polars.GenericDataSet` to `polars.EagerPolarsDataset` to better reflect the difference between the two dataset classes. @@ -10,12 +15,12 @@ * Fix erroneous warning when using an cloud protocol file path with SparkDataSet on Databricks. * Updated `PickleDataset` to explicitly mention `cloudpickle` support. -## Upcoming deprecations for Kedro-Datasets 2.0.0 ## Community contributions Many thanks to the following Kedroids for contributing PRs to this release: * [PtrBld](https://github.com/PtrBld) * [Alistair McKelvie](https://github.com/alamastor) * [Felix Wittmann](https://github.com/hfwittmann) +* [Matthias Roels](https://github.com/MatthiasRoels) # Release 1.7.1 ## Bug fixes and other changes diff --git a/kedro-datasets/kedro_datasets/__init__.py b/kedro-datasets/kedro_datasets/__init__.py index 6449f33c7..13bc4a1e1 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__ = "1.7.1" +__version__ = "1.8.0" import sys import warnings diff --git a/kedro-datasets/tests/polars/test_lazy_polars_dataset.py b/kedro-datasets/tests/polars/test_lazy_polars_dataset.py index 4eac0accd..11dde502a 100644 --- a/kedro-datasets/tests/polars/test_lazy_polars_dataset.py +++ b/kedro-datasets/tests/polars/test_lazy_polars_dataset.py @@ -401,7 +401,6 @@ def test_versioning_existing_dataset( class TestBadLazyPolarsDataset: def test_bad_file_format_argument(self): - pattern = ( "'kedro' is not an accepted format " f"({ACCEPTED_FILE_FORMATS}) ensure that your 'file_format' parameter "