From 023049bc32f30d9efbac26b24be8a12e9fe08ca7 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 14 Dec 2024 20:12:03 +0000 Subject: [PATCH] :rocket: Bump version and CHANGELOG for release 0.13.4 (#616) --- CHANGELOG.md | 8 ++++++-- README.md | 2 +- docs/source/02_installation/01_installation.md | 4 ++-- docs/source/03_getting_started/01_example_project.md | 2 +- kedro_mlflow/__init__.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 7 files changed, 13 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a66b9a6f..a56b9074 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,11 @@ ## [Unreleased] +## [0.13.4] - 2024-12-14 + ### Fixed -- :bug: :ambulance: Ensure `MlflowArtifactDataset` logs in the same run that parameters to when using ``mlflow>=2.18`` in combination with ``ThreadRunner`` [#613](https://github.com/Galileo-Galilei/kedro-mlflow/issues/613)) +- :bug: :ambulance: Ensure `MlflowArtifactDataset` logs in the same run that parameters to when using `mlflow>=2.18` in combination with `ThreadRunner` [#613](https://github.com/Galileo-Galilei/kedro-mlflow/issues/613)) ## [0.13.3] - 2024-10-29 @@ -525,7 +527,9 @@ - :sparkles: Add `MlflowDataSet` for artifacts autologging - :sparkles: Add `PipelineMl` class and its `pipeline_ml` factory for pipeline packaging and service -[Unreleased]: https://github.com/Galileo-Galilei/kedro-mlflow/compare/0.13.3...HEAD +[Unreleased]: https://github.com/Galileo-Galilei/kedro-mlflow/compare/0.13.4...HEAD + +[0.13.4]: https://github.com/Galileo-Galilei/kedro-mlflow/compare/0.13.3...0.13.4 [0.13.3]: https://github.com/Galileo-Galilei/kedro-mlflow/compare/0.13.2...0.13.3 diff --git a/README.md b/README.md index ff7f185a..2a7483c8 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ ---------------------------------------------------------- | Branch | Tests | Coverage | Links | Documentation | Deployment | Activity | | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `master` | [![test](https://github.com/Galileo-Galilei/kedro-mlflow/workflows/test/badge.svg?branch=master)](https://github.com/Galileo-Galilei/kedro-mlflow/actions?query=workflow%3Atest+branch%3Amaster) | [![codecov](https://codecov.io/gh/Galileo-Galilei/kedro-mlflow/branch/master/graph/badge.svg)](https://codecov.io/gh/Galileo-Galilei/kedro-mlflow/branch/master) | [![links](https://github.com/Galileo-Galilei/kedro-mlflow/workflows/check-links/badge.svg?branch=master)](https://github.com/Galileo-Galilei/kedro-mlflow/actions?query=workflow%3Acheck-links+branch%3Amaster) | [![Documentation](https://readthedocs.org/projects/kedro-mlflow/badge/?version=stable)](https://kedro-mlflow.readthedocs.io/en/stable/) | [![publish](https://github.com/Galileo-Galilei/kedro-mlflow/workflows/publish/badge.svg?branch=master)](https://github.com/Galileo-Galilei/kedro-mlflow/actions?query=branch%3Amaster+workflow%3Apublish) | [![commit](https://img.shields.io/github/commits-since/Galileo-Galilei/kedro-mlflow/0.13.3)](https://github.com/Galileo-Galilei/kedro-mlflow/compare/0.13.3...master) | +| `master` | [![test](https://github.com/Galileo-Galilei/kedro-mlflow/workflows/test/badge.svg?branch=master)](https://github.com/Galileo-Galilei/kedro-mlflow/actions?query=workflow%3Atest+branch%3Amaster) | [![codecov](https://codecov.io/gh/Galileo-Galilei/kedro-mlflow/branch/master/graph/badge.svg)](https://codecov.io/gh/Galileo-Galilei/kedro-mlflow/branch/master) | [![links](https://github.com/Galileo-Galilei/kedro-mlflow/workflows/check-links/badge.svg?branch=master)](https://github.com/Galileo-Galilei/kedro-mlflow/actions?query=workflow%3Acheck-links+branch%3Amaster) | [![Documentation](https://readthedocs.org/projects/kedro-mlflow/badge/?version=stable)](https://kedro-mlflow.readthedocs.io/en/stable/) | [![publish](https://github.com/Galileo-Galilei/kedro-mlflow/workflows/publish/badge.svg?branch=master)](https://github.com/Galileo-Galilei/kedro-mlflow/actions?query=branch%3Amaster+workflow%3Apublish) | [![commit](https://img.shields.io/github/commits-since/Galileo-Galilei/kedro-mlflow/0.13.4)](https://github.com/Galileo-Galilei/kedro-mlflow/compare/0.13.4...master) | *If you like the repo, please give it a :star:* diff --git a/docs/source/02_installation/01_installation.md b/docs/source/02_installation/01_installation.md index 0ab5c5a4..b72d8e1c 100644 --- a/docs/source/02_installation/01_installation.md +++ b/docs/source/02_installation/01_installation.md @@ -77,10 +77,10 @@ projects. It is developed as part of the Kedro initiative at QuantumBlack. Installed plugins: -kedro_mlflow: 0.13.3 (hooks:global,project) +kedro_mlflow: 0.13.4 (hooks:global,project) ``` -The version ``0.13.3`` of the plugin is installed and has both global and project commands. +The version ``0.13.4`` of the plugin is installed and has both global and project commands. That's it! You are now ready to go! diff --git a/docs/source/03_getting_started/01_example_project.md b/docs/source/03_getting_started/01_example_project.md index c75f9938..4c28dab1 100644 --- a/docs/source/03_getting_started/01_example_project.md +++ b/docs/source/03_getting_started/01_example_project.md @@ -7,7 +7,7 @@ Create a conda environment and install ``kedro-mlflow`` (this will automatically ```console conda create -n km_example python=3.9 --yes conda activate km_example -pip install kedro-mlflow==0.13.3 +pip install kedro-mlflow==0.13.4 ``` ## Install the toy project diff --git a/kedro_mlflow/__init__.py b/kedro_mlflow/__init__.py index 8ab7c888..64be6469 100644 --- a/kedro_mlflow/__init__.py +++ b/kedro_mlflow/__init__.py @@ -1,6 +1,6 @@ """kedro-mlflow plugin constants""" -__version__ = "0.13.3" +__version__ = "0.13.4" import logging diff --git a/pyproject.toml b/pyproject.toml index 40fd6666..76583a1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -82,7 +82,7 @@ docstring-code-format = false docstring-code-line-length = "dynamic" [tool.bumpversion] -current_version = "0.13.3" +current_version = "0.13.4" [[tool.bumpversion.files]] filename = "setup.py" diff --git a/setup.py b/setup.py index 9c589be4..3271ba61 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def _parse_requirements(path, encoding="utf-8"): setup( name=NAME, - version="0.13.3", # this will be bumped automatically by bump-my-version + version="0.13.4", # this will be bumped automatically by bump-my-version description="A kedro-plugin to use mlflow in your kedro projects", license="Apache Software License (Apache 2.0)", long_description=README,