Skip to content

Commit c790d87

Browse files
committed
bump version code
print error
1 parent a2aa661 commit c790d87

File tree

10 files changed

+35
-33
lines changed

10 files changed

+35
-33
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ cargo run -p fluentci-engine -- serve
5959
6060
## 📦 Downloads
6161

62-
- `Mac`: arm64: [fluentci-engine_v0.4.8_aarch64-apple-darwin.tar.gz](https://github.com/fluentci-io/fluentci-engine/releases/download/v0.4.8/fluentci-engine_v0.4.8_aarch64-apple-darwin.tar.gz) intel: [fluentci-engine_v0.4.8_x86_64-apple-darwin.tar.gz](https://github.com/fluentci-io/fluentci-engine/releases/download/v0.4.8/fluentci-engine_v0.4.8_x86_64-apple-darwin.tar.gz)
63-
- `Linux`: intel: [fluentci-engine_v0.4.8_x86_64-unknown-linux-gnu.tar.gz](https://github.com/fluentci-io/fluentci-engine/releases/download/v0.4.8/fluentci-engine_v0.4.8_x86_64-unknown-linux-gnu.tar.gz) arm64: [fluentci-engine_v0.4.8_aarch64-unknown-linux-gnu.tar.gz](https://github.com/fluentci-io/fluentci-engine/releases/download/v0.4.8/fluentci-engine_v0.4.8_aarch64-unknown-linux-gnu.tar.gz)
62+
- `Mac`: arm64: [fluentci-engine_v0.4.9_aarch64-apple-darwin.tar.gz](https://github.com/fluentci-io/fluentci-engine/releases/download/v0.4.9/fluentci-engine_v0.4.9_aarch64-apple-darwin.tar.gz) intel: [fluentci-engine_v0.4.9_x86_64-apple-darwin.tar.gz](https://github.com/fluentci-io/fluentci-engine/releases/download/v0.4.9/fluentci-engine_v0.4.9_x86_64-apple-darwin.tar.gz)
63+
- `Linux`: intel: [fluentci-engine_v0.4.9_x86_64-unknown-linux-gnu.tar.gz](https://github.com/fluentci-io/fluentci-engine/releases/download/v0.4.9/fluentci-engine_v0.4.9_x86_64-unknown-linux-gnu.tar.gz) arm64: [fluentci-engine_v0.4.9_aarch64-unknown-linux-gnu.tar.gz](https://github.com/fluentci-io/fluentci-engine/releases/download/v0.4.9/fluentci-engine_v0.4.9_aarch64-unknown-linux-gnu.tar.gz)
6464

6565
## 📚 Documentation
6666

crates/cli/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ license = "MPL-2.0"
88
name = "fluentci-engine"
99
readme = "../../README.md"
1010
repository = "https://github.com/fluentci-io/fluentci-engine"
11-
version = "0.4.8"
11+
version = "0.4.9"
1212

1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
1616
anyhow = "1.0.81"
1717
clap = "3.2.20"
1818
extism = "1.2.0"
19-
fluentci-core = {path = "../core", version = "0.3.6"}
20-
fluentci-ext = {path = "../ext", version = "0.2.5"}
21-
fluentci-server = {path = "../server", version = "0.3.7"}
22-
fluentci-shared = {path = "../shared", version = "0.2.7"}
19+
fluentci-core = {path = "../core", version = "0.3.7"}
20+
fluentci-ext = {path = "../ext", version = "0.2.6"}
21+
fluentci-server = {path = "../server", version = "0.3.8"}
22+
fluentci-shared = {path = "../shared", version = "0.2.8"}
2323
get-port = "4.0.0"
2424
md5 = "0.7.0"
2525
regex = "1.10.3"

crates/common/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ keywords = ["nix", "environment", "ci", "wasm", "devops"]
77
license = "MPL-2.0"
88
name = "fluentci-common"
99
repository = "https://github.com/fluentci-io/fluentci-engine"
10-
version = "0.2.7"
10+
version = "0.2.8"
1111

1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
1515
anyhow = "1.0.81"
1616
dirs = "5.0.1"
17-
fluentci-core = {path = "../core", version = "0.3.6"}
18-
fluentci-ext = {path = "../ext", version = "0.2.5"}
17+
fluentci-core = {path = "../core", version = "0.3.7"}
18+
fluentci-ext = {path = "../ext", version = "0.2.6"}
1919
fluentci-secrets = {path = "../secrets", version = "0.1.0"}
2020
fluentci-types = {path = "../types", version = "0.1.8"}
2121
regex = "1.10.4"

crates/core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ keywords = ["nix", "environment", "ci", "wasm", "devops"]
77
license = "MPL-2.0"
88
name = "fluentci-core"
99
repository = "https://github.com/fluentci-io/fluentci-engine"
10-
version = "0.3.6"
10+
version = "0.3.7"
1111

1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
1515
anyhow = "1.0.81"
1616
chrono = "0.4.35"
1717
dirs = "5.0.1"
18-
fluentci-ext = {path = "../ext", version = "0.2.5"}
18+
fluentci-ext = {path = "../ext", version = "0.2.6"}
1919
fluentci-logging = {path = "../logging", version = "0.1.0"}
2020
fluentci-secrets = {path = "../secrets", version = "0.1.0"}
2121
fluentci-types = {path = "../types", version = "0.1.8"}

crates/ext/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["nix", "environment", "ci", "wasm", "devops"]
77
license = "MPL-2.0"
88
name = "fluentci-ext"
99
repository = "https://github.com/fluentci-io/fluentci-engine"
10-
version = "0.2.5"
10+
version = "0.2.6"
1111

1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

crates/ext/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,9 @@ pub fn exec(
150150
println!("{}", line);
151151
match fluentci_logging::info(&line, &namespace) {
152152
Ok(_) => {}
153-
Err(_) => {}
153+
Err(e) => {
154+
println!("Error: {}", e);
155+
}
154156
}
155157
stdout.push_str(&line);
156158
stdout.push_str("\n");

crates/graphql/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["nix", "environment", "ci", "wasm", "devops"]
77
license = "MPL-2.0"
88
name = "fluentci-graphql"
99
repository = "https://github.com/fluentci-io/fluentci-engine"
10-
version = "0.3.7"
10+
version = "0.3.8"
1111

1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

@@ -16,9 +16,9 @@ anyhow = "1.0.80"
1616
async-graphql = "7.0.2"
1717
async-graphql-actix-web = "7.0.2"
1818
dirs = "5.0.1"
19-
fluentci-common = {path = "../common", version = "0.2.7"}
20-
fluentci-core = {path = "../core", version = "0.3.6"}
21-
fluentci-ext = {path = "../ext", version = "0.2.5"}
19+
fluentci-common = {path = "../common", version = "0.2.8"}
20+
fluentci-core = {path = "../core", version = "0.3.7"}
21+
fluentci-ext = {path = "../ext", version = "0.2.6"}
2222
fluentci-secrets = {path = "../secrets", version = "0.1.0"}
2323
fluentci-types = {path = "../types", version = "0.1.8"}
2424
regex = "1.10.3"

crates/server/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["nix", "environment", "ci", "wasm", "devops"]
77
license = "MPL-2.0"
88
name = "fluentci-server"
99
repository = "https://github.com/fluentci-io/fluentci-engine"
10-
version = "0.3.7"
10+
version = "0.3.8"
1111

1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

@@ -17,9 +17,9 @@ actix-web = "4.5.1"
1717
anyhow = "1.0.81"
1818
async-graphql = "7.0.2"
1919
async-graphql-actix-web = "7.0.2"
20-
fluentci-core = {path = "../core", version = "0.3.6"}
21-
fluentci-ext = {path = "../ext", version = "0.2.5"}
22-
fluentci-graphql = {path = "../graphql", version = "0.3.7"}
20+
fluentci-core = {path = "../core", version = "0.3.7"}
21+
fluentci-ext = {path = "../ext", version = "0.2.6"}
22+
fluentci-graphql = {path = "../graphql", version = "0.3.8"}
2323
mime_guess = "2.0.4"
2424
owo-colors = "4.0.0"
2525
tokio = "1.36.0"

crates/shared/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ keywords = ["nix", "environment", "ci", "wasm", "devops"]
77
license = "MPL-2.0"
88
name = "fluentci-shared"
99
repository = "https://github.com/fluentci-io/fluentci-engine"
10-
version = "0.2.7"
10+
version = "0.2.8"
1111

1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
1515
anyhow = "1.0.82"
1616
extism = "1.2.0"
1717
extism-pdk = "1.1.0"
18-
fluentci-common = {path = "../common", version = "0.2.7"}
19-
fluentci-core = {path = "../core", version = "0.3.6"}
20-
fluentci-ext = {path = "../ext", version = "0.2.5"}
18+
fluentci-common = {path = "../common", version = "0.2.8"}
19+
fluentci-core = {path = "../core", version = "0.3.7"}
20+
fluentci-ext = {path = "../ext", version = "0.2.6"}
2121
fluentci-secrets = {path = "../secrets", version = "0.1.0"}
2222
fluentci-types = {path = "../types", version = "0.1.8"}
2323
serde = {version = "1.0.197", features = ["serde_derive", "derive"]}

0 commit comments

Comments
 (0)