Skip to content

Commit

Permalink
chore: bump version to 0.9.1
Browse files Browse the repository at this point in the history
Signed-off-by: peefy <[email protected]>
  • Loading branch information
Peefy committed Jul 7, 2024
1 parent 9d671e4 commit e66b5dc
Show file tree
Hide file tree
Showing 21 changed files with 28 additions and 28 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.9.0"
version = "0.9.1"
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.9.0" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.1" }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,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.9.0-SNAPSHOT</version>
<version>0.9.1-SNAPSHOT</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion dotnet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ crate-type = ["cdylib"]
doc = false

[dependencies]
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.1" }
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.9.0"
const KCLVM_VERSION = "v0.9.1"

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 @@ -18,6 +18,6 @@ serde = { version = "1", features = ["derive"] }
once_cell = "1.19.0"
lazy_static = "1.4.0"

kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0" }
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0" }
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.9.1" }
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.9.1" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.1" }
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.9.0-SNAPSHOT</version>
<version>0.9.1-SNAPSHOT</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.9.0-SNAPSHOT</version>
<version>0.9.1-SNAPSHOT</version>
<name>KCL Arifact Library for Java</name>
<description>
KCL is an open-source constraint-based record and functional language mainly
Expand Down
2 changes: 1 addition & 1 deletion nodejs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version = "0.0.0"
crate-type = ["cdylib"]

[dependencies]
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.1" }
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
napi = { version = "2.12.2", default-features = false, features = ["napi4"] }
napi-derive = "2.12.2"
Expand Down
2 changes: 1 addition & 1 deletion nodejs/examples/exec-program/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"dist/"
],
"dependencies": {
"kcl-lib": "0.9.0"
"kcl-lib": "0.9.1"
}
}
2 changes: 1 addition & 1 deletion nodejs/npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kcl-lang/lib-darwin-arm64",
"repository": "https://github.com/kcl-lang/lib",
"version": "0.9.0",
"version": "0.9.1",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion nodejs/npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kcl-lang/lib-darwin-x64",
"repository": "https://github.com/kcl-lang/lib",
"version": "0.9.0",
"version": "0.9.1",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion nodejs/npm/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kcl-lang/lib-linux-arm64-gnu",
"repository": "https://github.com/kcl-lang/lib",
"version": "0.9.0",
"version": "0.9.1",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion nodejs/npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kcl-lang/lib-linux-x64-gnu",
"repository": "https://github.com/kcl-lang/lib",
"version": "0.9.0",
"version": "0.9.1",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion nodejs/npm/win32-arm64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kcl-lang/lib-win32-arm64-msvc",
"repository": "https://github.com/kcl-lang/lib",
"version": "0.9.0",
"version": "0.9.1",
"os": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion nodejs/npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kcl-lang/lib-win32-x64-msvc",
"repository": "https://github.com/kcl-lang/lib",
"version": "0.9.0",
"version": "0.9.1",
"os": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kcl-lib",
"version": "0.9.0",
"version": "0.9.1",
"repository": "https://github.com/kcl-lang/lib",
"license": "Apache-2.0",
"main": "index.js",
Expand Down
4 changes: 2 additions & 2 deletions python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "kcl-python-lib"
version = "0.9.0"
version = "0.9.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]

[dependencies]
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.0" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.9.1" }
pyo3 = "0.20.1"
6 changes: 3 additions & 3 deletions wasm/examples/node/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion wasm/examples/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"dist/"
],
"dependencies": {
"@kcl-lang/wasm-lib": "0.9.0"
"@kcl-lang/wasm-lib": "0.9.1"
}
}
4 changes: 2 additions & 2 deletions wasm/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kcl-lang/wasm-lib",
"version": "0.9.0",
"version": "0.9.1",
"description": "KCL WASM module",
"files": [
"kcl.wasm",
Expand Down

0 comments on commit e66b5dc

Please sign in to comment.