Skip to content

Commit 366489c

Browse files
committed
chore: bump kcl lib to 0.12.2
Signed-off-by: Peefy <xpf6677@163.com>
1 parent 54d023b commit 366489c

File tree

47 files changed

+9189
-607
lines changed

Some content is hidden

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

47 files changed

+9189
-607
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.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

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" }

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.12.1 LANGUAGES CXX)
2+
project(kcl-lib VERSION 0.12.2 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 = "2024"
5-
version = "0.12.1"
5+
version = "0.12.2"
66

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

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

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

cpp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ You can use FetchContent to add KCL C++ Lib to your project.
1212
FetchContent_Declare(
1313
kcl-lib
1414
GIT_REPOSITORY https://github.com/kcl-lang/lib.git
15-
GIT_TAG v0.12.1
15+
GIT_TAG v0.12.2
1616
SOURCE_SUBDIR cpp
1717
)
1818
FetchContent_MakeAvailable(kcl-lib)
@@ -24,7 +24,7 @@ Or you can download the source code and add it to your project.
2424
mkdir third_party
2525
cd third_party
2626
git clone https://github.com/kcl-lang/lib.git
27-
git checkout v0.12.1
27+
git checkout v0.12.2
2828
```
2929

3030
```shell

dotnet/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "kcl-lib-dotnet"
33
publish = false
4-
version = "0.12.1"
4+
version = "0.12.2"
55
edition = "2024"
66

77
[lib]
88
crate-type = ["cdylib"]
99
doc = false
1010

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

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.12.1</Version>
14+
<Version>0.12.2</Version>
1515
<IncludeSymbols>true</IncludeSymbols>
1616
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1717
<RepositoryUrl>https://github.com/kcl-lang</RepositoryUrl>

0 commit comments

Comments
 (0)