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

File tree

42 files changed

+56
-56
lines changed

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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 6 additions & 6 deletions
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

Lines changed: 3 additions & 3 deletions

c/Cargo.toml

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions

dotnet/Cargo.toml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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>

0 commit comments

Comments
 (0)