Skip to content

Commit

Permalink
chore: bump kcl lib to v0.8.0-alpha.3
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 1640faf commit 69fc5ce
Show file tree
Hide file tree
Showing 8 changed files with 191 additions and 196 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.2"
version = "0.8.0-alpha.3"
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.2"
const KCLVM_VERSION = "v0.8.0-alpha.3"

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.2</version>
<version>0.8.0-alpha.3</version>
<name>KCL Arifact Library for Java</name>
<description>
KCL is an open-source constraint-based record and functional language mainly
Expand Down
3 changes: 3 additions & 0 deletions python/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
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

dist:
rm -rf build
rm -rf dist
rm -rf kcl_lib.egg-info
rm -rf kcl_lib/lib/**
for platform in $(PLATFORMS); do \
rm -rf build && rm -rf kcl_lib/lib && python3 setup.py bdist_wheel --plat-name $$platform; \
done
Expand Down
355 changes: 182 additions & 173 deletions python/kcl_lib/api/spec_pb2.py

Large diffs are not rendered by default.

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.2" # You should replace this with actual version
KCLVM_VERSION = "0.8.0-alpha.3" # 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
17 changes: 0 additions & 17 deletions python/pyproject.toml

This file was deleted.

4 changes: 2 additions & 2 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,14 @@ def copy_libs():
setup(
name="kcl_lib",
author="KCL Authors",
version="0.8.0-alpha.2",
version="0.8.0-alpha.3",
license="Apache License 2.0",
python_requires=">=3.7",
description="KCL Artifact Library for Python",
long_description="""A constraint-based record & functional language mainly used in configuration and policy scenarios.""",
author_email="",
url="https://kcl-lang.io/",
packages=["kcl_lib"],
packages=["kcl_lib", "kcl_lib/api", "kcl_lib/bootstrap"],
data_files=data_files,
include_package_data=True,
zip_safe=True,
Expand Down

0 comments on commit 69fc5ce

Please sign in to comment.