Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
Signed-off-by: Merel Theisen <[email protected]>
  • Loading branch information
merelcht committed Oct 24, 2023
1 parent b44bf0e commit 3bc5fa0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
7 changes: 6 additions & 1 deletion kedro-datasets/RELEASE.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion kedro-datasets/kedro_datasets/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 0 additions & 1 deletion kedro-datasets/tests/polars/test_lazy_polars_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 "
Expand Down

0 comments on commit 3bc5fa0

Please sign in to comment.