Skip to content

Commit 263fcf3

Browse files
authored
Merge pull request #71 from kcl-lang/bump-lib-087
chore: bump kcl lib to 0.8.7
2 parents 54ec98e + 5daa4fc commit 263fcf3

File tree

26 files changed

+465
-266
lines changed

26 files changed

+465
-266
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kcl-lang"
3-
version = "0.8.6"
3+
version = "0.8.7"
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.8.6" }
14+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.8.7" }

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ This way you'll be able to import the above dependency to use the SDK.
7676
<dependency>
7777
<groupId>com.kcl</groupId>
7878
<artifactId>kcl-lib</artifactId>
79-
<version>0.8.6</version>
79+
<version>0.8.7</version>
8080
</dependency>
8181
```
8282

install.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"runtime"
99
)
1010

11-
const KCLVM_VERSION = "v0.8.6"
11+
const KCLVM_VERSION = "v0.8.7"
1212

1313
func findPath(name string) string {
1414
if path, err := exec.LookPath(name); err == nil {

java/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ kcl-lang = {path = "../"}
1919
once_cell = "1.19.0"
2020
lazy_static = "1.4.0"
2121

22-
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.8.6" }
23-
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.8.6" }
24-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.8.6" }
22+
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.8.7" }
23+
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.8.7" }
24+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.8.7" }

java/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This way you'll be able to import the above dependency to use the SDK.
2626
<dependency>
2727
<groupId>com.kcl</groupId>
2828
<artifactId>kcl-lib</artifactId>
29-
<version>0.8.6</version>
29+
<version>0.8.7</version>
3030
</dependency>
3131
```
3232

java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.kcl</groupId>
77
<artifactId>kcl-lib</artifactId>
8-
<version>0.8.6</version>
8+
<version>0.8.7</version>
99
<name>KCL Arifact Library for Java</name>
1010
<description>
1111
KCL is an open-source constraint-based record and functional language mainly

0 commit comments

Comments
 (0)