From ec62667021cf4877d1e49dfd55b527d6bdaf508e Mon Sep 17 00:00:00 2001 From: Sean Shi Date: Fri, 1 Sep 2023 17:56:42 -0700 Subject: [PATCH] Bump python client version from 0.0.0beta12 to 0.0.0beta13 --- clients/python/llmengine/__init__.py | 2 +- clients/python/pyproject.toml | 2 +- clients/python/setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clients/python/llmengine/__init__.py b/clients/python/llmengine/__init__.py index 4b1b86fb..768cbb86 100644 --- a/clients/python/llmengine/__init__.py +++ b/clients/python/llmengine/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.0.0.beta12" +__version__ = "0.0.0.beta13" from typing import Sequence diff --git a/clients/python/pyproject.toml b/clients/python/pyproject.toml index 6352055d..51afec3e 100644 --- a/clients/python/pyproject.toml +++ b/clients/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "scale-llm-engine" -version = "0.0.0.beta12" +version = "0.0.0.beta13" description = "Scale LLM Engine Python client" license = "Apache-2.0" authors = ["Phil Chen "] diff --git a/clients/python/setup.py b/clients/python/setup.py index 6af08c9a..2b51d491 100644 --- a/clients/python/setup.py +++ b/clients/python/setup.py @@ -3,6 +3,6 @@ setup( name="scale-llm-engine", python_requires=">=3.7", - version="0.0.0.beta12", + version="0.0.0.beta13", packages=find_packages(), )