From 5d5b7d76a971f76eee2ccce21a0148dc83d31bb1 Mon Sep 17 00:00:00 2001 From: aceforeverd Date: Sat, 30 Dec 2023 12:14:54 +0800 Subject: [PATCH] feat: bump version 0.9.0 --- README.md | 2 +- poetry.lock | 2 +- prod.Dockerfile | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4c35bcd..e7cf9b0 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,7 @@ optional arguments: ## Release History - 0.9.0 - * Features + * Features - **BREAKING** support OpenMLDB 0.8.4. OpenMLDB 0.8.4 removed deploy response time, please use openmldb-exporter >= 0.9.0. Ref [Compatibility](#compatibility) info above * Chores - update deps diff --git a/poetry.lock b/poetry.lock index 3c8abd2..2beb893 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1018,4 +1018,4 @@ testing = ["coverage (>=5.0.3)", "zope.event", "zope.testing"] [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "66833239ba4ec433d78ff33436a23e9162ff35feac620819e46659c91f38cb62" +content-hash = "b4194427e04c2d799d9671f97390526c7aa5004e0603f72126c6639b8cf69128" diff --git a/prod.Dockerfile b/prod.Dockerfile index d680627..dacf178 100644 --- a/prod.Dockerfile +++ b/prod.Dockerfile @@ -1,6 +1,6 @@ FROM python:3.11-slim-bullseye -ENV OPENMLDB_EXPORTER_VERSION=0.8.0 +ENV OPENMLDB_EXPORTER_VERSION=0.9.0 RUN pip install --no-cache-dir openmldb-exporter==${OPENMLDB_EXPORTER_VERSION} diff --git a/pyproject.toml b/pyproject.toml index a3fd81f..9e51351 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ openmldb-exporter = "openmldb_exporter.exporter:main" [tool.poetry.dependencies] python = "^3.8" prometheus-client = "^0.19.0" -openmldb = "^0.8.0" +openmldb = "^0.8.4" # uncomment below to use openmldb sdk built from source # set develop = true so changes in python will take effect immediately # openmldb = { path = "../python/", develop = true }