From aa69c12c5ad08c5ce6c8f268027a26cb95900632 Mon Sep 17 00:00:00 2001 From: yuanbohan Date: Tue, 7 May 2024 17:41:22 +0800 Subject: [PATCH] bump version to 0.2.0 (#145) --- pyproject.toml | 2 +- src/greptimeai/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 812ee69..bd3f1d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "greptimeai" -version = "0.1.18" # update greptimeai.__version__ at the same time +version = "0.2.0" # update greptimeai.__version__ at the same time description = "Observability tool for LLM application" authors = [ { name = "Greptime", email = "info@greptime.com" }, diff --git a/src/greptimeai/__init__.py b/src/greptimeai/__init__.py index e82eeb4..f2032b7 100644 --- a/src/greptimeai/__init__.py +++ b/src/greptimeai/__init__.py @@ -1,5 +1,5 @@ import logging -__version__ = "0.1.18" +__version__ = "0.2.0" logger = logging.getLogger(f"greptimeai:{__version__}")