From 5cacf4556996b122e6a01ce401ef54d85e1badcf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 13:06:17 +0100 Subject: [PATCH] :rocket: Bump version and CHANGELOG for release 0.2.0 (#21) Co-authored-by: github-actions --- CHANGELOG.md | 20 ++++++++++++-------- kedro_boot/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4bb880..2c62e49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,18 +2,20 @@ ## [Unreleased] +## [0.2.0] - 2024-02-12 + ### Added -- :sparkles: Introduce Kedro FastAPI Server: A framework for building production-ready REST APIs using Kedro, FastAPI and Gunicorn. -- :sparkles: Support dataset factories ([#5](https://github.com/takikadiri/kedro-boot/pull/5)) -- :sparkles: Allow declaring apps through project settings and CLIs ([#16](https://github.com/takikadiri/kedro-boot/pull/16)) -- :sparkles: Adding ``boot_project`` and ``boot_package`` allowing standalone apps to boot a session ([#17](https://github.com/takikadiri/kedro-boot/pull/17)) +- :sparkles: Introduce Kedro FastAPI Server: A framework for building production-ready REST APIs using Kedro, FastAPI and Gunicorn. +- :sparkles: Support dataset factories ([#5](https://github.com/takikadiri/kedro-boot/pull/5)) +- :sparkles: Allow declaring apps through project settings and CLIs ([#16](https://github.com/takikadiri/kedro-boot/pull/16)) +- :sparkles: Adding `boot_project` and `boot_package` allowing standalone apps to boot a session ([#17](https://github.com/takikadiri/kedro-boot/pull/17)) ### Changed -- :boom: :arrow_up: Support kedro 0.19.x and drop support for 0.18.x ([#15](https://github.com/takikadiri/kedro-boot/pull/15)) -- :boom: Drop AppPipeline in favor of pipeline namespaces ([#14](https://github.com/takikadiri/kedro-boot/pull/14)) -- :boom: Adopt OmegaConfigLoader and replace Jinja ``template_params`` with ``itertime_params`` resolver ([#13](https://github.com/takikadiri/kedro-boot/pull/13)) +- :boom: :arrow_up: Support kedro 0.19.x and drop support for 0.18.x ([#15](https://github.com/takikadiri/kedro-boot/pull/15)) +- :boom: Drop AppPipeline in favor of pipeline namespaces ([#14](https://github.com/takikadiri/kedro-boot/pull/14)) +- :boom: Adopt OmegaConfigLoader and replace Jinja `template_params` with `itertime_params` resolver ([#13](https://github.com/takikadiri/kedro-boot/pull/13)) ## [0.1.0] - 2023-10-29 @@ -24,6 +26,8 @@ - :tada: Add `boot_session` utility that create a `KedroBootSession` inside a external standalone App - :tada: Add `AppPipeline` and its `app_pipeline` factory for declaring and registring application views on top of kedro pipelines -[Unreleased]: https://github.com/takikadiri/kedro-boot/compare/0.1.0...HEAD +[Unreleased]: https://github.com/takikadiri/kedro-boot/compare/0.2.0...HEAD + +[0.2.0]: https://github.com/takikadiri/kedro-boot/compare/0.1.0...0.2.0 [0.1.0]: https://github.com/takikadiri/kedro-boot/compare/4126de2a96b11026644853cf49fdb4619269f18b...0.1.0 diff --git a/kedro_boot/__init__.py b/kedro_boot/__init__.py index d6bfe9b..ab8050f 100644 --- a/kedro_boot/__init__.py +++ b/kedro_boot/__init__.py @@ -1,6 +1,6 @@ """Kedro Boot is a Kedro plugin that streamlines the integration between Kedro projects and external applications.""" -__version__ = "0.1.0" +__version__ = "0.2.0" import logging diff --git a/setup.cfg b/setup.cfg index 01d68c7..ce0191e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index 7944e1f..c5f10ce 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ def _parse_requirements(path, encoding="utf-8"): setup( name="kedro-boot", - version="0.1.0", + version="0.2.0", description="A kedro plugin that streamlines the integration between Kedro projects and external applications, making it easier for you to develop production-ready data science applications.", license="Apache Software License (Apache 2.0)", long_description=README,