From 6cbc7da00825c418bc16a8bf8a774dd0090df9fc Mon Sep 17 00:00:00 2001 From: Matteo Mortari Date: Fri, 18 Oct 2024 15:56:20 +0200 Subject: [PATCH 1/2] docs: update readme link (#487) Signed-off-by: Matteo Mortari --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0565262c..0fd114e2 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Model registry provides a central repository for model developers to store and m 2. Installation - [installing Model Registry standalone](https://www.kubeflow.org/docs/components/model-registry/installation/#standalone-installation) - [installing Model Registry with Kubeflow manifests](https://github.com/kubeflow/manifests/tree/master/apps/model-registry/upstream#readme) - - [installing Model Registry using ODH Operator](https://github.com/opendatahub-io/model-registry-operator/pull/137) + - [installing Model Registry using ODH Operator](https://github.com/opendatahub-io/model-registry-operator/tree/main/docs#readme) 3. Concepts - [Logical Model](./docs/logical_model.md) 4. Python client From 34d8e60cc897edb27c3e959e10ee91345ac46916 Mon Sep 17 00:00:00 2001 From: Matteo Mortari Date: Fri, 18 Oct 2024 15:57:21 +0200 Subject: [PATCH 2/2] chore: version bump and add alpha version policy in readme (#489) Signed-off-by: Matteo Mortari --- README.md | 4 ++++ clients/python/pyproject.toml | 2 +- clients/python/src/model_registry/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0fd114e2..ef8f66a1 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,10 @@ Model registry provides a central repository for model developers to store and m [![codecov](https://codecov.io/github/kubeflow/model-registry/graph/badge.svg?token=61URLQA3VS)](https://codecov.io/github/kubeflow/model-registry) [![FOSSA Status](https://app.fossa.com/api/projects/custom%2B162%2Fgithub.com%2Fkubeflow%2Fmodel-registry.svg?type=shield&issueType=license)](https://app.fossa.com/projects/custom%2B162%2Fgithub.com%2Fkubeflow%2Fmodel-registry?ref=badge_shield&issueType=license) +> **Alpha** +> +> This Kubeflow component has alpha status with limited support. See the [Kubeflow versioning policies](https://www.kubeflow.org/docs/started/support/#application-status). The Kubeflow team is interested in your [feedback](https://github.com/kubeflow/model-registry) about the usability of the feature. + ## Documentation links: 1. Introduction diff --git a/clients/python/pyproject.toml b/clients/python/pyproject.toml index efe0916f..c14ce97e 100644 --- a/clients/python/pyproject.toml +++ b/clients/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "model-registry" -version = "0.2.9" +version = "0.2.10" description = "Client for Kubeflow Model Registry" authors = ["Isabella Basso do Amaral "] license = "Apache-2.0" diff --git a/clients/python/src/model_registry/__init__.py b/clients/python/src/model_registry/__init__.py index 3e0b41db..ba6df5fc 100644 --- a/clients/python/src/model_registry/__init__.py +++ b/clients/python/src/model_registry/__init__.py @@ -1,6 +1,6 @@ """Main package for the Kubeflow model registry.""" -__version__ = "0.2.9" +__version__ = "0.2.10" from ._client import ModelRegistry