Skip to content

Commit

Permalink
🚀 Bump version and CHANGELOG for release 0.2.0 (#21)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <[email protected]>
  • Loading branch information
github-actions[bot] and github-actions authored Feb 12, 2024
1 parent 8ede47a commit 5cacf45
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
20 changes: 12 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
2 changes: 1 addition & 1 deletion kedro_boot/__init__.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.2.0

[bumpversion:file:setup.py]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5cacf45

Please sign in to comment.