Skip to content

Commit 1640faf

Browse files
committed
chore: update version to v0.8.0-alpha.2
Signed-off-by: peefy <[email protected]>
1 parent 0110433 commit 1640faf

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kcl-lang"
3-
version = "0.8.0-alpha.1"
3+
version = "0.8.0-alpha.2"
44
edition = "2021"
55
readme = "README.md"
66
documentation = "kcl-lang.io"

install.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"runtime"
99
)
1010

11-
const KCLVM_VERSION = "v0.8.0-alpha.1"
11+
const KCLVM_VERSION = "v0.8.0-alpha.2"
1212

1313
func findPath(name string) string {
1414
if path, err := exec.LookPath(name); err == nil {

java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.kcl</groupId>
88
<artifactId>kcl-lib</artifactId>
9-
<version>0.8.0-alpha.1</version>
9+
<version>0.8.0-alpha.2</version>
1010
<name>KCL Arifact Library for Java</name>
1111
<description>
1212
KCL is an open-source constraint-based record and functional language mainly

python/kcl_lib/bootstrap/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import platform
44
from pathlib import Path
55

6-
KCLVM_VERSION = "0.8.0-alpha.1" # You should replace this with actual version
6+
KCLVM_VERSION = "0.8.0-alpha.2" # You should replace this with actual version
77
KCLVM_CLI_BIN_PATH_ENV_VAR = "KCLVM_CLI_BIN_PATH"
88
KCLVM_CLI_INSTALL_PATH_ENV_VAR = "KCLVM_CLI_INSTALL_PATH"
99
LIB_NAME = "kclvm_cli_cdylib"

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "kcl_lib"
3-
version = "0.8.0-alpha.1"
3+
version = "0.8.0-alpha.2"
44
description = "KCL Artifact Library for Python"
55
authors = [
66
{ name="KCL Authors", email="" }

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def copy_libs():
121121
setup(
122122
name="kcl_lib",
123123
author="KCL Authors",
124-
version="0.8.0-alpha.1",
124+
version="0.8.0-alpha.2",
125125
license="Apache License 2.0",
126126
python_requires=">=3.7",
127127
description="KCL Artifact Library for Python",

0 commit comments

Comments
 (0)