Skip to content

Commit 83a48ec

Browse files
authored
Merge pull request #277 from kcl-lang/chore-bump-kcl-lib-0.12.2
chore: bump kcl lib to 0.12.2
2 parents 54d023b + caeb8c2 commit 83a48ec

File tree

53 files changed

+9196
-618
lines changed

Some content is hidden

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

53 files changed

+9196
-618
lines changed

.github/workflows/c-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
working-directory: "c"
3030
strategy:
3131
matrix:
32-
os: [macos-13, macos-latest, ubuntu-latest]
32+
os: [macos-15-intel, macos-latest, ubuntu-latest]
3333
runs-on: ${{ matrix.os }}
3434
steps:
3535
- uses: actions/checkout@v6

.github/workflows/cpp-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
working-directory: "cpp"
3030
strategy:
3131
matrix:
32-
os: [macos-13, macos-latest, ubuntu-latest]
32+
os: [macos-15-intel, macos-latest, ubuntu-latest]
3333
runs-on: ${{ matrix.os }}
3434
steps:
3535
- uses: actions/checkout@v6

.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.12.1.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
179+
dotnet nuget push KclLib.0.12.2.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json

.github/workflows/go-test.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,8 @@ jobs:
2727
include:
2828
# macOS Intel/ARM configurations
2929

30-
- os: macos-13
31-
runner: macos-13
32-
cgo_enabled: 0
33-
34-
- os: macos-13-xlarge
35-
runner: macos-13
30+
- os: macos-15-intel
31+
runner: macos-15-intel
3632
cgo_enabled: 0
3733

3834
- os: macos-14

.github/workflows/nodejs-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
path: nodejs/*.node
172172

173173
macos:
174-
runs-on: macos-13
174+
runs-on: macos-15-intel
175175
strategy:
176176
matrix:
177177
settings:

.github/workflows/swift-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
matrix:
3232
# https://github.com/swift-actions/setup-swift/issues/677
3333
# ubuntu-latest is not supported
34-
os: [macos-13, macos-latest, ubuntu-22.04]
34+
os: [macos-15-intel, macos-latest, ubuntu-22.04]
3535
runs-on: ${{ matrix.os }}
3636
steps:
3737
- uses: actions/checkout@v6

.github/workflows/zig-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
working-directory: "zig"
3030
strategy:
3131
matrix:
32-
os: [macos-13, macos-latest, ubuntu-latest]
32+
os: [macos-15-intel, macos-latest, ubuntu-latest]
3333
runs-on: ${{ matrix.os }}
3434
steps:
3535
- uses: actions/checkout@v6

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kcl-lang"
3-
version = "0.12.1"
3+
version = "0.12.2"
44
edition = "2024"
55
readme = "README.md"
66
documentation = "kcl-lang.io"
@@ -11,9 +11,9 @@ license = "Apache-2.0"
1111

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ This way you'll be able to import the above dependency to use the SDK.
9595
<dependency>
9696
<groupId>com.kcl</groupId>
9797
<artifactId>kcl-lib</artifactId>
98-
<version>0.12.1</version>
98+
<version>0.12.2</version>
9999
</dependency>
100100
```
101101

@@ -197,7 +197,7 @@ This way you'll be able to import the above dependency to use the SDK.
197197
<dependency>
198198
<groupId>com.kcl</groupId>
199199
<artifactId>kcl-lib</artifactId>
200-
<version>0.12.1</version>
200+
<version>0.12.2</version>
201201
</dependency>
202202
```
203203

@@ -231,7 +231,7 @@ For CMake, you can use FetchContent to add KCL C++ Lib to your project.
231231
FetchContent_Declare(
232232
kcl-lib
233233
GIT_REPOSITORY https://github.com/kcl-lang/lib.git
234-
GIT_TAG v0.12.1
234+
GIT_TAG v0.12.2
235235
SOURCE_SUBDIR cpp
236236
)
237237
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.12.1"
3+
version = "0.12.2"
44
edition = "2024"
55
publish = false
66

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

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

0 commit comments

Comments
 (0)