From 1640fafba28b2252adfe33994b40033b210d51d5 Mon Sep 17 00:00:00 2001 From: peefy Date: Mon, 26 Feb 2024 11:21:14 +0800 Subject: [PATCH] chore: update version to v0.8.0-alpha.2 Signed-off-by: peefy --- Cargo.toml | 2 +- install.go | 2 +- java/pom.xml | 2 +- python/kcl_lib/bootstrap/__init__.py | 2 +- python/pyproject.toml | 2 +- python/setup.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4f5115bc..ad645052 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kcl-lang" -version = "0.8.0-alpha.1" +version = "0.8.0-alpha.2" edition = "2021" readme = "README.md" documentation = "kcl-lang.io" diff --git a/install.go b/install.go index 88d8ceb8..04fea2f5 100644 --- a/install.go +++ b/install.go @@ -8,7 +8,7 @@ import ( "runtime" ) -const KCLVM_VERSION = "v0.8.0-alpha.1" +const KCLVM_VERSION = "v0.8.0-alpha.2" func findPath(name string) string { if path, err := exec.LookPath(name); err == nil { diff --git a/java/pom.xml b/java/pom.xml index e3baa8dd..6062a749 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -6,7 +6,7 @@ com.kcl kcl-lib - 0.8.0-alpha.1 + 0.8.0-alpha.2 KCL Arifact Library for Java KCL is an open-source constraint-based record and functional language mainly diff --git a/python/kcl_lib/bootstrap/__init__.py b/python/kcl_lib/bootstrap/__init__.py index 6730b8a0..0f75e1da 100644 --- a/python/kcl_lib/bootstrap/__init__.py +++ b/python/kcl_lib/bootstrap/__init__.py @@ -3,7 +3,7 @@ import platform from pathlib import Path -KCLVM_VERSION = "0.8.0-alpha.1" # You should replace this with actual version +KCLVM_VERSION = "0.8.0-alpha.2" # You should replace this with actual version KCLVM_CLI_BIN_PATH_ENV_VAR = "KCLVM_CLI_BIN_PATH" KCLVM_CLI_INSTALL_PATH_ENV_VAR = "KCLVM_CLI_INSTALL_PATH" LIB_NAME = "kclvm_cli_cdylib" diff --git a/python/pyproject.toml b/python/pyproject.toml index 6315e513..8090897c 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "kcl_lib" -version = "0.8.0-alpha.1" +version = "0.8.0-alpha.2" description = "KCL Artifact Library for Python" authors = [ { name="KCL Authors", email="" } diff --git a/python/setup.py b/python/setup.py index 1386e483..93f11491 100644 --- a/python/setup.py +++ b/python/setup.py @@ -121,7 +121,7 @@ def copy_libs(): setup( name="kcl_lib", author="KCL Authors", - version="0.8.0-alpha.1", + version="0.8.0-alpha.2", license="Apache License 2.0", python_requires=">=3.7", description="KCL Artifact Library for Python",