Skip to content

Commit

Permalink
Merge pull request #71 from kcl-lang/bump-lib-087
Browse files Browse the repository at this point in the history
chore: bump kcl lib to 0.8.7
  • Loading branch information
Peefy authored May 8, 2024
2 parents 54ec98e + 5daa4fc commit 263fcf3
Show file tree
Hide file tree
Showing 26 changed files with 465 additions and 266 deletions.
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.8.6"
version = "0.8.7"
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.8.6" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.8.7" }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,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.8.6</version>
<version>0.8.7</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion install.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"runtime"
)

const KCLVM_VERSION = "v0.8.6"
const KCLVM_VERSION = "v0.8.7"

func findPath(name string) string {
if path, err := exec.LookPath(name); err == nil {
Expand Down
6 changes: 3 additions & 3 deletions java/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ kcl-lang = {path = "../"}
once_cell = "1.19.0"
lazy_static = "1.4.0"

kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.8.6" }
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.8.6" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.8.6" }
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.8.7" }
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.8.7" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.8.7" }
2 changes: 1 addition & 1 deletion java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,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.8.6</version>
<version>0.8.7</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.kcl</groupId>
<artifactId>kcl-lib</artifactId>
<version>0.8.6</version>
<version>0.8.7</version>
<name>KCL Arifact Library for Java</name>
<description>
KCL is an open-source constraint-based record and functional language mainly
Expand Down
Loading

0 comments on commit 263fcf3

Please sign in to comment.