Skip to content

Commit

Permalink
Merge pull request #59 from getindata/release-0.4.1
Browse files Browse the repository at this point in the history
Release 0.4.1
  • Loading branch information
marrrcin committed May 4, 2023
2 parents 2e5836b + dd71de8 commit a040b3c
Show file tree
Hide file tree
Showing 19 changed files with 440 additions and 217 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.0
current_version = 0.4.1

[bumpversion:file:pyproject.toml]

Expand Down
2 changes: 1 addition & 1 deletion .copier-answers.yml
Expand Up @@ -7,7 +7,7 @@ description: Kedro plugin with Azure ML Pipelines support
docs_url: https://kedro-azureml.readthedocs.io/
full_name: Kedro Azure ML Pipelines plugin
github_url: https://github.com/getindata/kedro-azureml
initial_version: 0.4.0
initial_version: 0.4.1
keywords:
- kedro
- mlops
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [0.4.1] - 2023-05-04

- [📝 Docs] Revamp the quickstart guide in documentation
- Refactor `kedro azureml init` command to be more user-friendly
- Add dependency on `kedro-datasets` to prepare for Kedro `0.19.0`; Remove `kedro.datasets.*` imports

## [0.4.0] - 2023-04-28

- [🧑‍🔬 Experimental ] Added support for pipeline-native data passing (allows to preview intermediate data in AzureML Studio UI) by [@tomasvanpottelbergh](https://github.com/tomasvanpottelbergh)
Expand Down Expand Up @@ -56,7 +62,9 @@

- Initial plugin release

[Unreleased]: https://github.com/getindata/kedro-azureml/compare/0.4.0...HEAD
[Unreleased]: https://github.com/getindata/kedro-azureml/compare/0.4.1...HEAD

[0.4.1]: https://github.com/getindata/kedro-azureml/compare/0.4.0...0.4.1

[0.4.0]: https://github.com/getindata/kedro-azureml/compare/0.3.6...0.4.0

Expand Down
6 changes: 4 additions & 2 deletions docs/conf.py
Expand Up @@ -6,6 +6,8 @@

# -- Path setup --------------------------------------------------------------

import datetime as dt

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
Expand All @@ -20,7 +22,7 @@
# -- Project information -----------------------------------------------------

project = "Kedro Azure ML Plugin"
copyright = "2022, GetInData"
copyright = f"{dt.datetime.utcnow().year}, GetInData"
author = "GetInData"

# The full version, including alpha/beta/rc tags
Expand Down Expand Up @@ -58,7 +60,7 @@
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]

autodoc_mock_imports = ["azureml", "pandas"]
autodoc_mock_imports = ["azureml", "pandas", "backoff", "cloudpickle"]

# -- Options for HTML output -------------------------------------------------

Expand Down
3 changes: 2 additions & 1 deletion docs/index.rst
Expand Up @@ -13,7 +13,8 @@ Welcome to Kedro Azure ML Pipelines plugin documentation!
Introduction <source/01_intro.md>
Installation <source/02_installation.md>
Quickstart <source/03_quickstart.rst>
Data Assets <source/04_data_assets.rst>
MLflow Integration <source/04_mlflow.rst>
Data Assets <source/05_data_assets.rst>
Development <source/05_development.md>


Expand Down

0 comments on commit a040b3c

Please sign in to comment.