Skip to content

Commit d33685a

Browse files
authored
Release kedro-datasets 1.0.0 (kedro-org#90)
* release kedro-datasets 1.0.0 Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com> * Update requirements.txt Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com> * Update README + release notes Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com> * Fix lint Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com> Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com>
1 parent e55264c commit d33685a

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The Kedro team maintains the following official Kedro plugins:
77

88
* [Kedro-Airflow](https://github.com/kedro-org/kedro-plugins/tree/main/kedro-airflow): Allows users to easily deploy Kedro pipelines as [Apache Airflow](https://github.com/apache/airflow) DAGs.
99

10+
* [Kedro-Datasets](https://github.com/kedro-org/kedro-plugins/tree/main/kedro-datasets): A collection of Kedro's data connectors.
11+
1012
* [Kedro-Docker](https://github.com/kedro-org/kedro-plugins/tree/main/kedro-docker): Simplifies the process of running a Kedro project within a Docker container.
1113

1214
* [Kedro-Telemetry](https://github.com/kedro-org/kedro-plugins/tree/main/kedro-telemetry): Gathers anonymised usage analytics to help drive future development of Kedro. ***Data will only be collected if consent is given.***

kedro-datasets/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pip install kedro-datasets
1717

1818
# Datasets
1919

20-
Welcome to `kedro_datasets.datasets`, the home of Kedro's data connectors. Here you will find `AbstractDataSet` implementations created by QuantumBlack and external contributors.
20+
Welcome to `kedro_datasets`, the home of Kedro's data connectors. Here you will find `AbstractDataSet` implementations created by QuantumBlack and external contributors.
2121

2222
## What `AbstractDataSet` implementations are supported?
2323

kedro-datasets/RELEASE.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11

2-
## Thanks for supporting contributions
2+
# Upcoming Release:
33

44
## Major features and improvements
55

6+
# Release 1.0.0:
7+
8+
First official release of Kedro-Datasets.
9+
10+
Datasets are Kedro’s way of dealing with input and output in a data and machine-learning pipeline. [Kedro supports numerous datasets](https://kedro.readthedocs.io/en/stable/kedro.extras.datasets.html) out of the box to allow you to process different data formats including Pandas, Plotly, Spark and more.
11+
12+
The datasets have always been part of the core Kedro Framework project inside `kedro.extras`. In Kedro `0.19.0`, we will remove datasets from Kedro to reduce breaking changes associated with dataset dependencies. Instead, users will need to use the datasets from the `kedro-datasets` repository instead.
13+
14+
## Major features and improvements
15+
* Changed `pandas.ParquetDataSet` to load data using pandas instead of parquet
616

717
# Release 0.1.0:
818

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""``kedro_datasets`` is where you can find all of Kedro's data connectors."""
22

3-
__version__ = "0.0.7"
3+
__version__ = "1.0.0"

kedro-datasets/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
kedro
1+
kedro~=0.18.4

0 commit comments

Comments
 (0)