Skip to content

Commit a2de88e

Browse files
committed
chore: bump version to v0.9.3
Signed-off-by: peefy <xpf6677@163.com>
1 parent a377b34 commit a2de88e

File tree

30 files changed

+39
-39
lines changed

30 files changed

+39
-39
lines changed

.github/workflows/dotnet-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,4 +175,4 @@ jobs:
175175
if: "startsWith(github.ref, 'refs/tags/')"
176176
run: |
177177
cd dotnet/KclLib/bin/Release
178-
dotnet nuget push KclLib.0.9.2.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
178+
dotnet nuget push KclLib.0.9.3.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json

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.9.2"
3+
version = "0.9.3"
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.9.2" }
14+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.3" }

README.md

Lines changed: 1 addition & 1 deletion
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.9.2-SNAPSHOT</version>
88+
<version>0.9.3-SNAPSHOT</version>
8989
</dependency>
9090
```
9191

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

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.9.2 LANGUAGES CXX)
2+
project(kcl-lib VERSION 0.9.3 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.9.2"
5+
version = "0.9.3"
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.9.2" }
13+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.3" }
1414

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

cpp/README.md

Lines changed: 1 addition & 1 deletion
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.9.2
15+
GIT_TAG v0.9.3
1616
SOURCE_SUBDIR cpp
1717
)
1818
FetchContent_MakeAvailable(kcl-lib)

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.9.2" }
11+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.3" }

0 commit comments

Comments
 (0)