Skip to content

Commit 9554346

Browse files
authored
chore: bump cpp lib version to 0.11.2 (#193)
1 parent 78e74ea commit 9554346

File tree

5 files changed

+80
-56
lines changed

5 files changed

+80
-56
lines changed

cpp/CMakeLists.txt

+1-1
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.11.1 LANGUAGES CXX)
2+
project(kcl-lib VERSION 0.11.2 LANGUAGES CXX)
33

44
set(CMAKE_CXX_STANDARD 17)
55
set(CMAKE_CXX_STANDARD_REQUIRED ON)

cpp/Cargo.lock

+64-50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cpp/Cargo.toml

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

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

cpp/README.md

+2-2
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.11.1
15+
GIT_TAG v0.11.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.11.1
27+
git checkout v0.11.2
2828
```
2929

3030
```shell

0 commit comments

Comments
 (0)