Skip to content

Commit 69fc5ce

Browse files
committed
chore: bump kcl lib to v0.8.0-alpha.3
Signed-off-by: peefy <xpf6677@163.com>
1 parent 1640faf commit 69fc5ce

File tree

8 files changed

+191
-196
lines changed

8 files changed

+191
-196
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.2"
3+
version = "0.8.0-alpha.3"
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.2"
11+
const KCLVM_VERSION = "v0.8.0-alpha.3"
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.2</version>
9+
<version>0.8.0-alpha.3</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/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
PLATFORMS := macosx_11_0_intel macosx_11_0_x86_64 macosx_11_0_arm64 manylinux2014_x86_64 manylinux_2_27_x86_64 manylinux2014_aarch64 manylinux_2_27_aarch64 win32 win_amd64
22

33
dist:
4+
rm -rf build
45
rm -rf dist
6+
rm -rf kcl_lib.egg-info
7+
rm -rf kcl_lib/lib/**
58
for platform in $(PLATFORMS); do \
69
rm -rf build && rm -rf kcl_lib/lib && python3 setup.py bdist_wheel --plat-name $$platform; \
710
done

python/kcl_lib/api/spec_pb2.py

Lines changed: 182 additions & 173 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.2" # You should replace this with actual version
6+
KCLVM_VERSION = "0.8.0-alpha.3" # 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: 0 additions & 17 deletions
This file was deleted.

python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,14 @@ def copy_libs():
121121
setup(
122122
name="kcl_lib",
123123
author="KCL Authors",
124-
version="0.8.0-alpha.2",
124+
version="0.8.0-alpha.3",
125125
license="Apache License 2.0",
126126
python_requires=">=3.7",
127127
description="KCL Artifact Library for Python",
128128
long_description="""A constraint-based record & functional language mainly used in configuration and policy scenarios.""",
129129
author_email="",
130130
url="https://kcl-lang.io/",
131-
packages=["kcl_lib"],
131+
packages=["kcl_lib", "kcl_lib/api", "kcl_lib/bootstrap"],
132132
data_files=data_files,
133133
include_package_data=True,
134134
zip_safe=True,

0 commit comments

Comments
 (0)