Skip to content

Commit e66b5dc

Browse files
committed
chore: bump version to 0.9.1
Signed-off-by: peefy <xpf6677@163.com>
1 parent 9d671e4 commit e66b5dc

File tree

21 files changed

+28
-28
lines changed

21 files changed

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

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.0-SNAPSHOT</version>
88+
<version>0.9.1-SNAPSHOT</version>
8989
</dependency>
9090
```
9191

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.0" }
11+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.1" }

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"
11+
const KCLVM_VERSION = "v0.9.1"
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" }
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" }
21+
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.9.1" }
22+
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.9.1" }
23+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.1" }

java/README.md

Lines changed: 1 addition & 1 deletion
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-SNAPSHOT</version>
29+
<version>0.9.1-SNAPSHOT</version>
3030
</dependency>
3131
```
3232

java/pom.xml

Lines changed: 1 addition & 1 deletion
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.9.0-SNAPSHOT</version>
8+
<version>0.9.1-SNAPSHOT</version>
99
<name>KCL Arifact Library for Java</name>
1010
<description>
1111
KCL is an open-source constraint-based record and functional language mainly

nodejs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ version = "0.0.0"
77
crate-type = ["cdylib"]
88

99
[dependencies]
10-
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0" }
10+
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.1" }
1111
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
1212
napi = { version = "2.12.2", default-features = false, features = ["napi4"] }
1313
napi-derive = "2.12.2"

nodejs/examples/exec-program/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"dist/"
1313
],
1414
"dependencies": {
15-
"kcl-lib": "0.9.0"
15+
"kcl-lib": "0.9.1"
1616
}
1717
}

nodejs/npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@kcl-lang/lib-darwin-arm64",
33
"repository": "https://github.com/kcl-lang/lib",
4-
"version": "0.9.0",
4+
"version": "0.9.1",
55
"os": [
66
"darwin"
77
],

0 commit comments

Comments
 (0)