Skip to content

Commit b9e415b

Browse files
authored
Merge pull request #162 from kcl-lang/chore-bump-lib-0.10.8
chore: bump lib version to 0.10.8
2 parents 9823722 + 7eb2b7b commit b9e415b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+56
-56
lines changed

.github/workflows/dotnet-test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,4 @@ jobs:
176176
if: "startsWith(github.ref, 'refs/tags/')"
177177
run: |
178178
cd dotnet/KclLib/bin/Release
179-
dotnet nuget push KclLib.0.10.7.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
179+
dotnet nuget push KclLib.0.10.8.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json

.github/workflows/wasm-test.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
uses: actions/setup-node@v3
3333
with:
3434
node-version: 20.x
35-
- name: Install rust nightly toolchain
35+
- name: Setup Rust
3636
uses: actions-rs/toolchain@v1
3737
with:
38-
toolchain: 1.79
38+
toolchain: 1.81
3939
override: true
4040
components: clippy, rustfmt
41-
- name: Set up Go
41+
- name: Setup Go
4242
uses: actions/setup-go@v2
4343
with:
4444
go-version: 1.22

Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kcl-lang"
3-
version = "0.10.7"
3+
version = "0.10.8"
44
edition = "2021"
55
readme = "README.md"
66
documentation = "kcl-lang.io"
@@ -11,8 +11,8 @@ license = "Apache-2.0"
1111

1212
[dependencies]
1313
anyhow = "1"
14-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
15-
kclvm-evaluator = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
16-
kclvm-loader = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
17-
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
18-
kclvm-runtime = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
14+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
15+
kclvm-evaluator = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
16+
kclvm-loader = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
17+
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
18+
kclvm-runtime = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }

README.md

+3-3

c/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kcl-lib-c"
3-
version = "0.10.7"
3+
version = "0.10.8"
44
edition = "2021"
55
publish = false
66

@@ -12,4 +12,4 @@ doc = false
1212
cbindgen = "0.26.0"
1313

1414
[dependencies]
15-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
15+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }

cpp/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.10)
2-
project(kcl-lib VERSION 0.10.7 LANGUAGES CXX)
2+
project(kcl-lib VERSION 0.10.8 LANGUAGES CXX)
33

44
set(CMAKE_CXX_STANDARD 17)
55
set(CMAKE_CXX_STANDARD_REQUIRED ON)

cpp/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
name = "kcl-lib-cpp"
33
publish = false
44
edition = "2021"
5-
version = "0.10.7"
5+
version = "0.10.8"
66

77
[lib]
88
crate-type = ["staticlib"]
99

1010
[dependencies]
1111
anyhow = "1.0"
1212
cxx = "1.0"
13-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
13+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
1414

1515
[build-dependencies]
1616
cxx-build = "1.0"

cpp/README.md

+2-2

dotnet/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ crate-type = ["cdylib"]
88
doc = false
99

1010
[dependencies]
11-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
11+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }

dotnet/KclLib/KclLib.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<PropertyGroup>
1212
<AssemblyName>KclLib</AssemblyName>
1313
<PackageId>KclLib</PackageId>
14-
<Version>0.10.7</Version>
14+
<Version>0.10.8</Version>
1515
<IncludeSymbols>true</IncludeSymbols>
1616
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1717
<RepositoryUrl>https://github.com/kcl-lang</RepositoryUrl>

dotnet/examples/exec-program/exec-program.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="KclLib" Version="0.10.7" />
12+
<PackageReference Include="KclLib" Version="0.10.8" />
1313
</ItemGroup>
1414

1515
</Project>

go/install/install.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/gofrs/flock"
1111
)
1212

13-
const KCLVM_VERSION = "v0.10.7"
13+
const KCLVM_VERSION = "v0.10.8"
1414

1515
func findPath(name string) string {
1616
if path, err := exec.LookPath(name); err == nil {
38.7 KB
Binary file not shown.
41 KB
Binary file not shown.
26.7 KB
Binary file not shown.
28.6 KB
Binary file not shown.
45.5 KB
Binary file not shown.
45.5 KB
Binary file not shown.

java/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ serde = { version = "1", features = ["derive"] }
1818
once_cell = "1.19.0"
1919
lazy_static = "1.4.0"
2020

21-
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
22-
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
23-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
21+
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
22+
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
23+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }

java/README.md

+1-1

java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.kcl</groupId>
77
<artifactId>kcl-lib</artifactId>
8-
<version>0.10.7-SNAPSHOT</version>
8+
<version>0.10.8-SNAPSHOT</version>
99
<name>KCL Arifact Library for Java</name>
1010
<description>
1111
KCL is an open-source constraint-based record and functional language mainly

kotlin/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ serde = { version = "1", features = ["derive"] }
1818
once_cell = "1.19.0"
1919
lazy_static = "1.4.0"
2020

21-
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
22-
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
23-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
21+
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
22+
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
23+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }

kotlin/README.md

+1-1

kotlin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.kcl</groupId>
77
<artifactId>kcl-lib-kotlin</artifactId>
8-
<version>0.10.7-SNAPSHOT</version>
8+
<version>0.10.8-SNAPSHOT</version>
99
<name>KCL Arifact Library for Kotlin</name>
1010
<description>
1111
KCL is an open-source constraint-based record and functional language mainly

lua/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kcl-lib-lua"
3-
version = "0.10.7"
3+
version = "0.10.8"
44
edition = "2021"
55
publish = false
66

@@ -16,4 +16,4 @@ mlua = { version = "0.9", features = [
1616
"module",
1717
"macros",
1818
], default-features = false, optional = true }
19-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
19+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }

lua/kcl_lib-0.10.7-1.rockspec renamed to lua/kcl_lib-0.10.8-1.rockspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package = "kcl_lib"
2-
version = "0.10.7-1"
2+
version = "0.10.8-1"
33

44
source = {
55
url = "git+https://github.com/kcl-lang/kcl",

nodejs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ version = "0.0.0"
77
crate-type = ["cdylib"]
88

99
[dependencies]
10-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
10+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
1111
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
1212
napi = { version = "2.12.2", default-features = false, features = ["napi4"] }
1313
napi-derive = "2.12.2"

nodejs/examples/exec-program/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"dist/"
1313
],
1414
"dependencies": {
15-
"kcl-lib": "0.10.7"
15+
"kcl-lib": "0.10.8"
1616
}
1717
}

nodejs/npm/darwin-arm64/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nodejs/npm/darwin-arm64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kcl-lang/lib-darwin-arm64",
33
"repository": "https://github.com/kcl-lang/lib",
4-
"version": "0.10.7",
4+
"version": "0.10.8",
55
"os": [
66
"darwin"
77
],

nodejs/npm/darwin-x64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kcl-lang/lib-darwin-x64",
33
"repository": "https://github.com/kcl-lang/lib",
4-
"version": "0.10.7",
4+
"version": "0.10.8",
55
"os": [
66
"darwin"
77
],

nodejs/npm/linux-arm64-gnu/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kcl-lang/lib-linux-arm64-gnu",
33
"repository": "https://github.com/kcl-lang/lib",
4-
"version": "0.10.7",
4+
"version": "0.10.8",
55
"os": [
66
"linux"
77
],

nodejs/npm/linux-x64-gnu/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kcl-lang/lib-linux-x64-gnu",
33
"repository": "https://github.com/kcl-lang/lib",
4-
"version": "0.10.7",
4+
"version": "0.10.8",
55
"os": [
66
"linux"
77
],

nodejs/npm/win32-arm64-msvc/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kcl-lang/lib-win32-arm64-msvc",
33
"repository": "https://github.com/kcl-lang/lib",
4-
"version": "0.10.7",
4+
"version": "0.10.8",
55
"os": [
66
"win32"
77
],

nodejs/npm/win32-x64-msvc/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kcl-lang/lib-win32-x64-msvc",
33
"repository": "https://github.com/kcl-lang/lib",
4-
"version": "0.10.7",
4+
"version": "0.10.8",
55
"os": [
66
"win32"
77
],

nodejs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kcl-lib",
3-
"version": "0.10.7",
3+
"version": "0.10.8",
44
"repository": "https://github.com/kcl-lang/lib",
55
"license": "Apache-2.0",
66
"main": "index.js",

python/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "kcl-python-lib"
3-
version = "0.10.7"
3+
version = "0.10.8"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77
[lib]
88
crate-type = ["cdylib"]
99

1010
[dependencies]
11-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
11+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
1212
pyo3 = "0.20.1"

spec/spec.proto

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@ service KclvmService {
106106
/// {
107107
/// "jsonrpc": "2.0",
108108
/// "result": {
109-
/// "version": "0.10.7",
109+
/// "version": "0.10.8",
110110
/// "checksum": "c020ab3eb4b9179219d6837a57f5d323",
111111
/// "git_sha": "1a9a72942fffc9f62cb8f1ae4e1d5ca32aa1f399",
112-
/// "version_info": "Version: 0.10.7-c020ab3eb4b9179219d6837a57f5d323\nPlatform: aarch64-apple-darwin\nGitCommit: 1a9a72942fffc9f62cb8f1ae4e1d5ca32aa1f399"
112+
/// "version_info": "Version: 0.10.8-c020ab3eb4b9179219d6837a57f5d323\nPlatform: aarch64-apple-darwin\nGitCommit: 1a9a72942fffc9f62cb8f1ae4e1d5ca32aa1f399"
113113
/// },
114114
/// "id": 1
115115
/// }

swift/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kcl-lib-c"
3-
version = "0.10.7"
3+
version = "0.10.8"
44
edition = "2021"
55
publish = false
66

@@ -12,4 +12,4 @@ doc = false
1212
cbindgen = "0.26.0"
1313

1414
[dependencies]
15-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.7" }
15+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }

wasm/kcl.wasm

24.9 KB
Binary file not shown.

wasm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kcl-lang/wasm-lib",
3-
"version": "0.10.7",
3+
"version": "0.10.8",
44
"description": "KCL WASM module",
55
"files": [
66
"kcl.wasm",

zig/build.zig.zon

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
// This is a [Semantic Version](https://semver.org/).
1212
// In a future version of Zig it will be used for package deduplication.
13-
.version = "0.10.7",
13+
.version = "0.10.8",
1414

1515
// This field is optional.
1616
// This is currently advisory only; Zig does not yet do anything

0 commit comments

Comments
 (0)