Skip to content

Commit

Permalink
🚀 Bump version and CHANGELOG for release 0.9.0 (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions authored and Galileo-Galilei committed Apr 1, 2022
1 parent 3dbe440 commit c409432
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 12 deletions.
13 changes: 8 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@

## [Unreleased]

## [0.9.0] - 2022-04-01

### Added

- :sparkles: Add support for ``kedro=0.18.X``
- :sparkles: ``kedro-mlflow`` is now available on ``conda-forge`` and can be installed with ``conda install kedro-mlflow``. This is retroactive to ``kedro-mlflow==0.8.1`` ([#118](https://github.com/Galileo-Galilei/kedro-mlflow/issues/118))
- :sparkles: Add support for `kedro=0.18.X`
- :sparkles: `kedro-mlflow` is now available on `conda-forge` and can be installed with `conda install kedro-mlflow`. This is retroactive to `kedro-mlflow==0.8.1` ([#118](https://github.com/Galileo-Galilei/kedro-mlflow/issues/118))

### Removed

- :boom: :wastebasket: Drop support for ``kedro=0.17.X``

- :boom: :wastebasket: Drop support for `kedro=0.17.X`

## [0.8.1] - 2022-02-13

Expand Down Expand Up @@ -293,7 +294,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.8.1...HEAD
[Unreleased]: https://github.com/Galileo-Galilei/kedro-mlflow/compare/0.9.0...HEAD

[0.9.0]: https://github.com/Galileo-Galilei/kedro-mlflow/compare/0.8.1...0.9.0

[0.8.1]: https://github.com/Galileo-Galilei/kedro-mlflow/compare/0.8.0...0.8.1

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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.8.1)](https://github.com/Galileo-Galilei/kedro-mlflow/compare/0.8.1...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.9.0)](https://github.com/Galileo-Galilei/kedro-mlflow/compare/0.9.0...master) |

# What is kedro-mlflow?

Expand Down
4 changes: 2 additions & 2 deletions docs/source/02_installation/01_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ projects. It is developed as part of
the Kedro initiative at QuantumBlack.

Installed plugins:
kedro_mlflow: 0.8.1 (hooks:global,project)
kedro_mlflow: 0.9.0 (hooks:global,project)
```

The version ``0.8.1`` of the plugin is installed and has both global and project commands.
The version ``0.9.0`` of the plugin is installed and has both global and project commands.

That's it! You are now ready to go!

Expand Down
2 changes: 1 addition & 1 deletion docs/source/03_getting_started/01_example_project.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.1
pip install kedro-mlflow==0.9.0
```

## Install the toy project
Expand Down
2 changes: 1 addition & 1 deletion kedro_mlflow/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""kedro-mlflow plugin constants
"""
__version__ = "0.8.1"
__version__ = "0.9.0"
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.8.1
current_version = 0.9.0

[tool:pytest]
addopts = --cov=kedro_mlflow --cov-report=html tests/
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def _parse_requirements(path, encoding="utf-8"):

setup(
name=NAME,
version="0.8.1", # this will be bumped automatically by bump2version
version="0.9.0", # this will be bumped automatically by bump2version
description="A kedro-plugin to use mlflow in your kedro projects",
license="Apache Software License (Apache 2.0)",
long_description=README,
Expand Down

0 comments on commit c409432

Please sign in to comment.