Skip to content

Commit

Permalink
chore: update version to v0.8.0-alpha.2
Browse files Browse the repository at this point in the history
Signed-off-by: peefy <[email protected]>
  • Loading branch information
Peefy committed Feb 26, 2024
1 parent 0110433 commit 1640faf
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion install.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.kcl</groupId>
<artifactId>kcl-lib</artifactId>
<version>0.8.0-alpha.1</version>
<version>0.8.0-alpha.2</version>
<name>KCL Arifact Library for Java</name>
<description>
KCL is an open-source constraint-based record and functional language mainly
Expand Down
2 changes: 1 addition & 1 deletion python/kcl_lib/bootstrap/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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="" }
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 1640faf

Please sign in to comment.