Skip to content

Commit 87cf558

Browse files
authored
Merge pull request #118 from Peefy/chore-bump-kcl-092
chore: bump kcl 092
2 parents a587494 + fc5a864 commit 87cf558

File tree

32 files changed

+39
-218
lines changed

32 files changed

+39
-218
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.1.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
178+
dotnet nuget push KclLib.0.9.2.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.1"
3+
version = "0.9.2"
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.1" }
14+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.2" }

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

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.1 LANGUAGES CXX)
2+
project(kcl-lib VERSION 0.9.2 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.1"
5+
version = "0.9.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.9.1" }
13+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.2" }
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.1
15+
GIT_TAG v0.9.2
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.1" }
11+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.2" }

dotnet/KclLib/KclLib.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<PropertyGroup>
1212
<AssemblyName>KclLib</AssemblyName>
1313
<PackageId>KclLib</PackageId>
14-
<Version>0.9.1</Version>
14+
<Version>0.9.2</Version>
1515
<IncludeSymbols>true</IncludeSymbols>
1616
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1717
<RepositoryUrl>https://github.com/kcl-lang</RepositoryUrl>

dotnet/KclLib/README.md

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -65,38 +65,6 @@ var result = new API().ExecProgram(execArgs);
6565
</p>
6666
</details>
6767

68-
### ParseProgram
69-
70-
Parse KCL program with entry files and return the AST JSON string.
71-
72-
<details><summary>Example</summary>
73-
<p>
74-
75-
The content of `schema.k` is
76-
77-
```python
78-
schema AppConfig:
79-
replicas: int
80-
81-
app: AppConfig {
82-
replicas: 2
83-
}
84-
```
85-
86-
C# Code
87-
88-
```csharp
89-
using KclLib.API;
90-
91-
var path = "schema.k"
92-
var args = new ParseProgram_Args();
93-
args.Paths.Add(path);
94-
var result = new API().ParseProgram(args);
95-
```
96-
97-
</p>
98-
</details>
99-
10068
### ParseFile
10169

10270
Parse KCL single file to Module AST JSON string with import dependencies and parse errors.

0 commit comments

Comments
 (0)