Skip to content

Commit bf9fcc8

Browse files
authored
Merge pull request #132 from Peefy/chore-bump-lib-0.10.0-beta.1
chore: bump kcl lib to v0.10.0-beta.1
2 parents b6193b5 + 9f6c551 commit bf9fcc8

File tree

40 files changed

+51
-50
lines changed

40 files changed

+51
-50
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.2.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
179+
dotnet nuget push KclLib.0.10.0-beta.1.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.10.0-alpha.2"
3+
version = "0.10.0-beta.1"
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.2" }
14+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-beta.1" }

README.md

Lines changed: 3 additions & 3 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.2-SNAPSHOT</version>
88+
<version>0.10.0-beta.1-SNAPSHOT</version>
8989
</dependency>
9090
```
9191

@@ -187,7 +187,7 @@ This way you'll be able to import the above dependency to use the SDK.
187187
<dependency>
188188
<groupId>com.kcl</groupId>
189189
<artifactId>kcl-lib</artifactId>
190-
<version>0.10.0-alpha.2-SNAPSHOT</version>
190+
<version>0.10.0-beta.1-SNAPSHOT</version>
191191
</dependency>
192192
```
193193

@@ -221,7 +221,7 @@ For CMake, you can use FetchContent to add KCL C++ Lib to your project.
221221
FetchContent_Declare(
222222
kcl-lib
223223
GIT_REPOSITORY https://github.com/kcl-lang/lib.git
224-
GIT_TAG v0.10.0-alpha.2
224+
GIT_TAG v0.10.0-beta.1
225225
SOURCE_SUBDIR cpp
226226
)
227227
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.2"
3+
version = "0.10.0-beta.1"
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.2" }
15+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-beta.1" }

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

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

0 commit comments

Comments
 (0)