Skip to content

Commit 96abc9c

Browse files
committed
chore: bump version to v0.8.1
Signed-off-by: peefy <[email protected]>
1 parent f2190fe commit 96abc9c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
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"
3+
version = "0.8.1"
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"
11+
const KCLVM_VERSION = "v0.8.1"
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</version>
9+
<version>0.8.1</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" # You should replace this with actual version
6+
KCLVM_VERSION = "0.8.1" # 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
KCLVM_CLI_USE_TEST_ENV_VAR = "KCLVM_CLI_USE_TEST"

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def copy_libs():
134134
setup(
135135
name="kcl_lib",
136136
author="KCL Authors",
137-
version="0.8.0",
137+
version="0.8.1",
138138
license="Apache License 2.0",
139139
python_requires=">=3.7",
140140
description="KCL Artifact Library for Python",

0 commit comments

Comments
 (0)