diff --git a/CMakeLists.txt b/CMakeLists.txt index 5c6bd9be..bc5846cf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.3) set(VINEYARD_MAJOR_VERSION 0) set(VINEYARD_MINOR_VERSION 23) -set(VINEYARD_PATCH_VERSION 1) +set(VINEYARD_PATCH_VERSION 2) set(VINEYARD_VERSION ${VINEYARD_MAJOR_VERSION}.${VINEYARD_MINOR_VERSION}.${VINEYARD_PATCH_VERSION}) message(STATUS "Configuring and building vineyard version '${VINEYARD_VERSION}'.") diff --git a/charts/vineyard-operator/Chart.yaml b/charts/vineyard-operator/Chart.yaml index 31392aab..8604d7d9 100644 --- a/charts/vineyard-operator/Chart.yaml +++ b/charts/vineyard-operator/Chart.yaml @@ -24,10 +24,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.23.1 +version: 0.23.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 0.23.1 +appVersion: 0.23.2 diff --git a/k8s/cmd/main.go b/k8s/cmd/main.go index 495f8279..50f21ffb 100644 --- a/k8s/cmd/main.go +++ b/k8s/cmd/main.go @@ -48,7 +48,7 @@ var cmdLong = util.LongDesc(` var cmd = &cobra.Command{ Use: "vineyardctl [command]", - Version: "v0.23.1", + Version: "v0.23.2", Short: "vineyardctl is the command-line tool for interact with the Vineyard Operator.", Long: cmdLong, } diff --git a/setup.cfg b/setup.cfg index 35ab09c0..aa653be2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.23.1 +version = 0.23.2 [pycodestyle] max_line_length = 88 diff --git a/setup_llm.py b/setup_llm.py index a27e8f3e..2976a24a 100644 --- a/setup_llm.py +++ b/setup_llm.py @@ -24,20 +24,8 @@ from setuptools import setup from setuptools.command.build_ext import build_ext from setuptools.command.install import install -from wheel.bdist_wheel import bdist_wheel -class bdist_wheel_plat(bdist_wheel): - def finalize_options(self): - bdist_wheel.finalize_options(self) - self.root_is_pure = False - - def get_tag(self): - self.root_is_pure = True - tag = bdist_wheel.get_tag(self) - self.root_is_pure = False - return tag - class CopyCMakeExtension(Extension): def __init__(self, name): super().__init__(name, sources=[]) @@ -105,7 +93,6 @@ def find_llm_packages(root): ], cmdclass={ 'build_ext': build_ext_with_precompiled, - 'bdist_wheel': bdist_wheel_plat, "install": install_plat }, zip_safe=False, diff --git a/src/common/util/config.h b/src/common/util/config.h index 391f2410..28a9a7da 100644 --- a/src/common/util/config.h +++ b/src/common/util/config.h @@ -18,11 +18,11 @@ limitations under the License. #define VINEYARD_VERSION_MAJOR 0 #define VINEYARD_VERSION_MINOR 23 -#define VINEYARD_VERSION_PATCH 1 +#define VINEYARD_VERSION_PATCH 2 #define VINEYARD_VERSION \ ((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \ VINEYARD_VERSION_PATCH -#define VINEYARD_VERSION_STRING "0.23.1" +#define VINEYARD_VERSION_STRING "0.23.2" #endif // SRC_COMMON_UTIL_CONFIG_H_