From 4402ad7f234e50ab8d448fa70a74ac62a34eedf9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 21 Dec 2024 14:11:06 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.0.8=20=E2=86=92=201.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 ++++++++++ docs/api/conf.py | 2 +- pyproject.toml | 4 ++-- src/mlopus/__init__.py | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de9d914..ea70270 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 1.1.0 (2024-12-21) + +### Feat + +- pull artifacts in offline mode (if at least metadata is cached) + +### Fix + +- enum json encoding + ## 1.0.8 (2024-12-02) ### Fix diff --git a/docs/api/conf.py b/docs/api/conf.py index 572d75f..3adab50 100644 --- a/docs/api/conf.py +++ b/docs/api/conf.py @@ -16,7 +16,7 @@ project = "MLOpus" author = "Lariel Fernandes" -release = "1.0.8" +release = "1.1.0" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index f7084df..c5d9184 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "mlOpus" -version = "1.0.8" +version = "1.1.0" readme = "README.md" license = { text = "Apache-2.0" } description = "MLOps tools for research and development." @@ -73,7 +73,7 @@ dev-dependencies = [ # === Commitizen ================================================================================== [tool.commitizen] -version = "1.0.8" +version = "1.1.0" tag_format = "$version" version_scheme = "semver" version_files = [ diff --git a/src/mlopus/__init__.py b/src/mlopus/__init__.py index 0eabdf9..9592759 100644 --- a/src/mlopus/__init__.py +++ b/src/mlopus/__init__.py @@ -1,6 +1,6 @@ from mlopus import mlflow, artschema, lineage -VERSION = "1.0.8" +VERSION = "1.1.0" __all__ = [ "mlflow",