From cb84039b3e19d3240f65a0410cf19fa7a539e6a5 Mon Sep 17 00:00:00 2001 From: Sean Shi Date: Thu, 20 Jul 2023 17:05:11 -0700 Subject: [PATCH 1/2] bump setup version to 0.0.0.beta5 --- clients/python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/python/setup.py b/clients/python/setup.py index d0cb52ab..dbf97fb6 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.beta4", + version="0.0.0.beta5", packages=find_packages(), ) From 9041693673660e5b37c8ebf7b294c19cb6bf094c Mon Sep 17 00:00:00 2001 From: Sean Shi Date: Thu, 20 Jul 2023 17:06:37 -0700 Subject: [PATCH 2/2] bump in more places --- clients/python/llmengine/__init__.py | 2 +- clients/python/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/python/llmengine/__init__.py b/clients/python/llmengine/__init__.py index 1d882f5c..d7567145 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.beta4" +__version__ = "0.0.0.beta5" from typing import Sequence diff --git a/clients/python/pyproject.toml b/clients/python/pyproject.toml index f8c28795..7ca3992d 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.beta4" +version = "0.0.0.beta5" description = "Scale LLM Engine Python client" license = "Apache-2.0" authors = ["Phil Chen "]