Skip to content

Commit b682448

Browse files
committed
chore: bump kcl lib version to 0.10.0-alpha.2
Signed-off-by: peefy <xpf6677@163.com>
1 parent ec3b3ee commit b682448

File tree

44 files changed

+76
-59
lines changed

Some content is hidden

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

44 files changed

+76
-59
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.0-alpha.1.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
179+
dotnet nuget push KclLib.0.10.0-alpha.2.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json

.github/workflows/go-test.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,13 @@ jobs:
3333
uses: actions/setup-go@v2
3434
with:
3535
go-version: 1.22
36+
- name: Ready msys2
37+
uses: msys2/setup-msys2@v2
38+
with:
39+
msystem: MINGW64
40+
update: true
41+
install: git mingw-w64-x86_64-toolchain
42+
path-type: inherit
43+
if: matrix.os == 'windows-latest'
3644
- name: Go code test
3745
run: go test ./...

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-lang"
3-
version = "0.10.0-alpha.1"
3+
version = "0.10.0-alpha.2"
44
edition = "2021"
55
readme = "README.md"
66
documentation = "kcl-lang.io"
@@ -11,4 +11,4 @@ license = "Apache-2.0"
1111

1212
[dependencies]
1313
anyhow = "1"
14-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-alpha.1" }
14+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-alpha.2" }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ This way you'll be able to import the above dependency to use the SDK.
8585
<dependency>
8686
<groupId>com.kcl</groupId>
8787
<artifactId>kcl-lib</artifactId>
88-
<version>0.10.0-alpha.1-SNAPSHOT</version>
88+
<version>0.10.0-alpha.2-SNAPSHOT</version>
8989
</dependency>
9090
```
9191

@@ -191,7 +191,7 @@ For CMake, you can use FetchContent to add KCL C++ Lib to your project.
191191
FetchContent_Declare(
192192
kcl-lib
193193
GIT_REPOSITORY https://github.com/kcl-lang/lib.git
194-
GIT_TAG v0.10.0-alpha.1
194+
GIT_TAG v0.10.0-alpha.2
195195
SOURCE_SUBDIR cpp
196196
)
197197
FetchContent_MakeAvailable(kcl-lib)

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.0-alpha.1"
3+
version = "0.10.0-alpha.2"
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.0-alpha.1" }
15+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-alpha.2" }

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.0-alpha.1"
5+
version = "0.10.0-alpha.2"
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.0-alpha.1" }
13+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-alpha.2" }
1414

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

0 commit comments

Comments
 (0)