Skip to content

Commit

Permalink
Merge pull request #129 from Peefy/chore-bump-version-0.10.0-alpha.2
Browse files Browse the repository at this point in the history
chore: bump version to v0.10.0-alpha.2
  • Loading branch information
Peefy authored Aug 5, 2024
2 parents ec3b3ee + b682448 commit ff61a2f
Show file tree
Hide file tree
Showing 44 changed files with 76 additions and 59 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,4 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/')"
run: |
cd dotnet/KclLib/bin/Release
dotnet nuget push KclLib.0.10.0-alpha.1.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
dotnet nuget push KclLib.0.10.0-alpha.2.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
8 changes: 8 additions & 0 deletions .github/workflows/go-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,13 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Ready msys2
uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: git mingw-w64-x86_64-toolchain
path-type: inherit
if: matrix.os == 'windows-latest'
- name: Go code test
run: go test ./...
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kcl-lang"
version = "0.10.0-alpha.1"
version = "0.10.0-alpha.2"
edition = "2021"
readme = "README.md"
documentation = "kcl-lang.io"
Expand All @@ -11,4 +11,4 @@ license = "Apache-2.0"

[dependencies]
anyhow = "1"
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-alpha.1" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-alpha.2" }
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ This way you'll be able to import the above dependency to use the SDK.
<dependency>
<groupId>com.kcl</groupId>
<artifactId>kcl-lib</artifactId>
<version>0.10.0-alpha.1-SNAPSHOT</version>
<version>0.10.0-alpha.2-SNAPSHOT</version>
</dependency>
```

Expand Down Expand Up @@ -191,7 +191,7 @@ For CMake, you can use FetchContent to add KCL C++ Lib to your project.
FetchContent_Declare(
kcl-lib
GIT_REPOSITORY https://github.com/kcl-lang/lib.git
GIT_TAG v0.10.0-alpha.1
GIT_TAG v0.10.0-alpha.2
SOURCE_SUBDIR cpp
)
FetchContent_MakeAvailable(kcl-lib)
Expand Down
4 changes: 2 additions & 2 deletions c/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kcl-lib-c"
version = "0.10.0-alpha.1"
version = "0.10.0-alpha.2"
edition = "2021"
publish = false

Expand All @@ -12,4 +12,4 @@ doc = false
cbindgen = "0.26.0"

[dependencies]
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-alpha.1" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-alpha.2" }
4 changes: 2 additions & 2 deletions cpp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
name = "kcl-lib-cpp"
publish = false
edition = "2021"
version = "0.10.0-alpha.1"
version = "0.10.0-alpha.2"

[lib]
crate-type = ["staticlib"]

[dependencies]
anyhow = "1.0"
cxx = "1.0"
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-alpha.1" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.0-alpha.2" }

[build-dependencies]
cxx-build = "1.0"
Loading

0 comments on commit ff61a2f

Please sign in to comment.