Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.12.0.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
dotnet nuget push KclLib.0.12.1.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
117 changes: 58 additions & 59 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kcl-lang"
version = "0.12.0"
version = "0.12.1"
edition = "2024"
readme = "README.md"
documentation = "kcl-lang.io"
Expand All @@ -11,9 +11,9 @@ license = "Apache-2.0"

[dependencies]
anyhow = "1"
kcl-api = { git = "https://github.com/kcl-lang/kcl", version = "0.12.0" }
kcl-evaluator = { git = "https://github.com/kcl-lang/kcl", version = "0.12.0" }
kcl-loader = { git = "https://github.com/kcl-lang/kcl", version = "0.12.0" }
kcl-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.12.0" }
kcl-runtime = { git = "https://github.com/kcl-lang/kcl", version = "0.12.0" }
kcl-primitives = { git = "https://github.com/kcl-lang/kcl", version = "0.12.0" }
kcl-api = { git = "https://github.com/kcl-lang/kcl", version = "0.12.1" }
kcl-evaluator = { git = "https://github.com/kcl-lang/kcl", version = "0.12.1" }
kcl-loader = { git = "https://github.com/kcl-lang/kcl", version = "0.12.1" }
kcl-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.12.1" }
kcl-runtime = { git = "https://github.com/kcl-lang/kcl", version = "0.12.1" }
kcl-primitives = { git = "https://github.com/kcl-lang/kcl", version = "0.12.1" }
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,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.12.0</version>
<version>0.12.1</version>
</dependency>
```

Expand Down Expand Up @@ -197,7 +197,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.12.0</version>
<version>0.12.1</version>
</dependency>
```

Expand Down Expand Up @@ -231,7 +231,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.12.0
GIT_TAG v0.12.1
SOURCE_SUBDIR cpp
)
FetchContent_MakeAvailable(kcl-lib)
Expand Down
Loading
Loading