Skip to content

Commit 496f228

Browse files
committed
chore: bump kcl lib deps to 0.9.0 and bump protoc and protobuf version
Signed-off-by: peefy <[email protected]>
1 parent 89336a9 commit 496f228

File tree

17 files changed

+61486
-66213
lines changed

17 files changed

+61486
-66213
lines changed

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

install.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"runtime"
99
)
1010

11-
const KCLVM_VERSION = "v0.9.0-beta.1"
11+
const KCLVM_VERSION = "v0.9.0"
1212

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

java/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ serde = { version = "1", features = ["derive"] }
1818
once_cell = "1.19.0"
1919
lazy_static = "1.4.0"
2020

21-
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0-beta.1" }
22-
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0-beta.1" }
23-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0-beta.1" }
21+
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0" }
22+
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0" }
23+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0" }

java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<dependency>
4545
<groupId>com.google.protobuf</groupId>
4646
<artifactId>protobuf-java</artifactId>
47-
<version>3.25.3</version>
47+
<version>4.27.0</version>
4848
</dependency>
4949
<dependency>
5050
<groupId>org.slf4j</groupId>

0 commit comments

Comments
 (0)