diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 16c521fe..12318deb 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -37,6 +37,6 @@ jobs: - name: Create Release uses: softprops/action-gh-release@v1 with: - name: Release ${{ github.ref }} + name: Release ${{ github.ref_name }} draft: false prerelease: false diff --git a/VERSION b/VERSION index 9415eb30..834eb3fa 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -9.7.6 +9.8.0 diff --git a/clarifai/versions.py b/clarifai/versions.py index 13e7db65..97643b8b 100644 --- a/clarifai/versions.py +++ b/clarifai/versions.py @@ -1,6 +1,6 @@ import os -CLIENT_VERSION = '9.7.6' +CLIENT_VERSION = '9.8.0' OS_VER = os.sys.platform PYTHON_VERSION = '.'.join( map(str, [os.sys.version_info.major, os.sys.version_info.minor, os.sys.version_info.micro])) diff --git a/requirements.txt b/requirements.txt index d3155ec6..979e13a7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -clarifai-grpc==9.7.4 +clarifai-grpc==9.8.0 pandas==1.3.5 numpy==1.22.0 tqdm==4.64.1 diff --git a/setup.py b/setup.py index 1a02ae8e..512b585e 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="clarifai", - version="9.7.6", + version="9.8.0", author="Clarifai", author_email="support@clarifai.com", description="Clarifai Python SDK", @@ -24,7 +24,7 @@ license="Apache 2.0", python_requires='>=3.8', install_requires=[ - "clarifai-grpc>=9.7.4", "tritonclient==2.34.0", "packaging", "tqdm==4.64.1", "rich==13.4.2" + "clarifai-grpc>=9.8.0", "tritonclient==2.34.0", "packaging", "tqdm==4.64.1", "rich==13.4.2" ], entry_points={ "console_scripts": [