From 56d9cd130d53143426145f86f85704913bfdb138 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 6 May 2024 21:10:39 +0000 Subject: [PATCH] :rocket: Bump version and CHANGELOG for release 0.2.1 (#59) --- CHANGELOG.md | 6 +++++- README.md | 2 +- kedro_pandera/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c3d51c..f069691 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.2.1] - 2024-05-06 + - :bug: Fix dataset reference in hook for kedro >= 0.19.0 ## [0.2.0] - 2024-04-19 @@ -21,7 +23,9 @@ - :loud_sound: `kedro-pandera` logs defaults is set to `INFO` so it is visible by default in the kedro logs ([#13](https://github.com/Galileo-Galilei/kedro-pandera/pull/13)) - :memo: Add a tutorial for using `kedro-pandera` ([#5](https://github.com/Galileo-Galilei/kedro-pandera/pull/5)) -[Unreleased]: https://github.com/Galileo-Galilei/kedro-pandera/compare/0.2.0...HEAD +[Unreleased]: https://github.com/Galileo-Galilei/kedro-pandera/compare/0.2.1...HEAD + +[0.2.1]: https://github.com/Galileo-Galilei/kedro-pandera/compare/0.2.0...0.2.1 [0.2.0]: https://github.com/Galileo-Galilei/kedro-pandera/compare/0.1.0...0.2.0 diff --git a/README.md b/README.md index 7c2b212..3e6852e 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ ---------------------------------------------------------- | Branch | Tests | Coverage | Links | Documentation | Deployment | Activity | | ------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `main` | [![test](https://github.com/Galileo-Galilei/kedro-pandera/workflows/test/badge.svg?branch=main)](https://github.com/Galileo-Galilei/kedro-pandera/actions?query=workflow%3Atest+branch%3Amain) | [![codecov](https://codecov.io/gh/Galileo-Galilei/kedro-pandera/branch/main/graph/badge.svg)](https://codecov.io/gh/Galileo-Galilei/kedro-pandera/branch/main) | [![links](https://github.com/Galileo-Galilei/kedro-pandera/workflows/check-links/badge.svg?branch=main)](https://github.com/Galileo-Galilei/kedro-pandera/actions?query=workflow%3Acheck-links+branch%3Amain) | [![Documentation](https://readthedocs.org/projects/kedro-pandera/badge/?version=stable)](https://kedro-pandera.readthedocs.io/en/stable/) | [![publish](https://github.com/Galileo-Galilei/kedro-pandera/workflows/publish/badge.svg?branch=main)](https://github.com/Galileo-Galilei/kedro-pandera/actions?query=branch%3Amain+workflow%3Apublish) | [![commit](https://img.shields.io/github/commits-since/Galileo-Galilei/kedro-pandera/0.2.0)](https://github.com/Galileo-Galilei/kedro-pandera/compare/0.2.0...main) | +| `main` | [![test](https://github.com/Galileo-Galilei/kedro-pandera/workflows/test/badge.svg?branch=main)](https://github.com/Galileo-Galilei/kedro-pandera/actions?query=workflow%3Atest+branch%3Amain) | [![codecov](https://codecov.io/gh/Galileo-Galilei/kedro-pandera/branch/main/graph/badge.svg)](https://codecov.io/gh/Galileo-Galilei/kedro-pandera/branch/main) | [![links](https://github.com/Galileo-Galilei/kedro-pandera/workflows/check-links/badge.svg?branch=main)](https://github.com/Galileo-Galilei/kedro-pandera/actions?query=workflow%3Acheck-links+branch%3Amain) | [![Documentation](https://readthedocs.org/projects/kedro-pandera/badge/?version=stable)](https://kedro-pandera.readthedocs.io/en/stable/) | [![publish](https://github.com/Galileo-Galilei/kedro-pandera/workflows/publish/badge.svg?branch=main)](https://github.com/Galileo-Galilei/kedro-pandera/actions?query=branch%3Amain+workflow%3Apublish) | [![commit](https://img.shields.io/github/commits-since/Galileo-Galilei/kedro-pandera/0.2.1)](https://github.com/Galileo-Galilei/kedro-pandera/compare/0.2.1...main) | # What is kedro-pandera? diff --git a/kedro_pandera/__init__.py b/kedro_pandera/__init__.py index 8fd5f78..d1e8182 100644 --- a/kedro_pandera/__init__.py +++ b/kedro_pandera/__init__.py @@ -1,6 +1,6 @@ """kedro-pandera""" -__version__ = "0.2.0" +__version__ = "0.2.1" import logging diff --git a/setup.cfg b/setup.cfg index 8b9acf4..d001199 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.2.1 [tool:pytest] addopts = --cov=kedro_pandera --cov-report=html tests/ diff --git a/setup.py b/setup.py index 992928d..4e389fe 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def _parse_requirements(path, encoding="utf-8"): setup( name=NAME, - version="0.2.0", # this will be bumped automatically by bump2version + version="0.2.1", # this will be bumped automatically by bump2version description="A kedro plugin to use pandera in your kedro projects", license="Apache Software License (Apache 2.0)", long_description=README,