Skip to content

Commit 198f8eb

Browse files
authored
Merge pull request #83 from kcl-lang/kcl-nodejs-override-api
refactor: kcl nodejs override api
2 parents 6dc9c23 + b1219c4 commit 198f8eb

File tree

26 files changed

+66657
-64465
lines changed

26 files changed

+66657
-64465
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.9.0-alpha.1"
3+
version = "0.9.0-alpha.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.0-alpha.1" }
14+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0-alpha.2" }

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.7</version>
79+
<version>0.9.0-SNAPSHOT</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.9.0-alpha.1"
11+
const KCLVM_VERSION = "v0.9.0-alpha.2"
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.9.0-alpha.1" }
23-
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0-alpha.1" }
24-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0-alpha.1" }
22+
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0-alpha.2" }
23+
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0-alpha.2" }
24+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0-alpha.2" }

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.9.0-alpha.1</version>
29+
<version>0.9.0-SNAPSHOT</version>
3030
</dependency>
3131
```
3232

0 commit comments

Comments
 (0)