Skip to content

Commit

Permalink
bump version code
Browse files Browse the repository at this point in the history
bump version code
  • Loading branch information
tsirysndr committed Apr 7, 2024
1 parent 92886a5 commit 65b112b
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 31 deletions.
36 changes: 18 additions & 18 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MPL-2.0"
name = "fluentci-engine"
readme = "../../README.md"
repository = "https://github.com/fluentci-io/fluentci-engine"
version = "0.2.4"
version = "0.2.5"

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

Expand All @@ -18,8 +18,8 @@ clap = "3.2.20"
extism = "1.2.0"
fluentci-core = {path = "../core", version = "0.1.6"}
fluentci-ext = {path = "../ext", version = "0.1.4"}
fluentci-server = {path = "../server", version = "0.1.7"}
fluentci-shared = {path = "../shared", version = "0.1.3"}
fluentci-server = {path = "../server", version = "0.1.8"}
fluentci-shared = {path = "../shared", version = "0.1.4"}
get-port = "4.0.0"
md5 = "0.7.0"
regex = "1.10.3"
Expand Down
1 change: 1 addition & 0 deletions crates/cli/src/cmd/call.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ pub fn call(module: &str, command: &str) {
.with_function("get_os", [], [PTR], user_data.clone(), get_os)
.with_function("get_arch", [], [PTR], user_data.clone(), get_arch)
.with_function("call", [PTR], [PTR], user_data.clone(), shared::call)
.with_function("with_packages", [PTR], [], user_data.clone(), with_packages)
.build()
.unwrap();

Expand Down
2 changes: 1 addition & 1 deletion crates/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["nix", "environment", "ci", "cd", "devops"]
license = "MPL-2.0"
name = "fluentci-common"
repository = "https://github.com/fluentci-io/fluentci-engine"
version = "0.1.2"
version = "0.1.3"

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

Expand Down
4 changes: 2 additions & 2 deletions crates/graphql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["nix", "environment", "ci", "cd", "devops"]
license = "MPL-2.0"
name = "fluentci-graphql"
repository = "https://github.com/fluentci-io/fluentci-engine"
version = "0.1.7"
version = "0.1.8"

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

Expand All @@ -16,7 +16,7 @@ anyhow = "1.0.80"
async-graphql = "7.0.2"
async-graphql-actix-web = "7.0.2"
dirs = "5.0.1"
fluentci-common = {path = "../common", version = "0.1.2"}
fluentci-common = {path = "../common", version = "0.1.3"}
fluentci-core = {path = "../core", version = "0.1.6"}
fluentci-ext = {path = "../ext", version = "0.1.4"}
fluentci-types = {path = "../types", version = "0.1.1"}
Expand Down
2 changes: 1 addition & 1 deletion crates/pdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["nix", "environment", "ci", "cd", "devops"]
license = "MPL-2.0"
name = "fluentci-pdk"
repository = "https://github.com/fluentci-io/fluentci-engine"
version = "0.1.8"
version = "0.1.9"

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

Expand Down
3 changes: 2 additions & 1 deletion crates/pdk/src/pkgx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ extern "ExtismHost" {
fn with_workdir(path: String);
fn with_cache(cache: Json<Cache>);
fn with_file(file: Json<File>);
fn with_packages(packages: Json<Vec<String>>);
fn stdout() -> String;
fn stderr() -> String;
}
Expand Down Expand Up @@ -73,7 +74,7 @@ impl Pkgx {

pub fn with_packages(&self, packages: Vec<&str>) -> Result<Pkgx, Error> {
unsafe {
with_exec(Json::from(
with_packages(Json::from(
packages
.into_iter()
.map(|x| x.to_string())
Expand Down
4 changes: 2 additions & 2 deletions crates/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["nix", "environment", "ci", "cd", "devops"]
license = "MPL-2.0"
name = "fluentci-server"
repository = "https://github.com/fluentci-io/fluentci-engine"
version = "0.1.7"
version = "0.1.8"

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

Expand All @@ -19,7 +19,7 @@ async-graphql = "7.0.2"
async-graphql-actix-web = "7.0.2"
fluentci-core = {path = "../core", version = "0.1.6"}
fluentci-ext = {path = "../ext", version = "0.1.4"}
fluentci-graphql = {path = "../graphql", version = "0.1.6"}
fluentci-graphql = {path = "../graphql", version = "0.1.8"}
mime_guess = "2.0.4"
owo-colors = "4.0.0"
tokio = "1.36.0"
4 changes: 2 additions & 2 deletions crates/shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ keywords = ["nix", "environment", "ci", "cd", "devops"]
license = "MPL-2.0"
name = "fluentci-shared"
repository = "https://github.com/fluentci-io/fluentci-engine"
version = "0.1.3"
version = "0.1.4"

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

[dependencies]
extism = "1.2.0"
extism-pdk = "1.1.0"
fluentci-common = {path = "../common", version = "0.1.1"}
fluentci-common = {path = "../common", version = "0.1.3"}
fluentci-core = {path = "../core", version = "0.1.5"}
fluentci-ext = {path = "../ext", version = "0.1.4"}
fluentci-types = {path = "../types", version = "0.1.3"}
Expand Down
1 change: 1 addition & 0 deletions crates/shared/src/shared.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ host_fn!(pub call(user_data: State; opts: Json<Module>) -> String {
.with_function("get_os", [], [PTR], user_data.clone(), get_os)
.with_function("get_arch", [], [PTR], user_data.clone(), get_arch)
.with_function("call", [PTR], [PTR], user_data.clone(), call)
.with_function("with_packages", [PTR], [], user_data.clone(), with_packages)
.build()
.unwrap();

Expand Down
2 changes: 1 addition & 1 deletion sdk/typescript/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fluentci/sdk",
"version": "0.2.6",
"version": "0.2.7",
"exports": {
".": "./src/client.gen.ts",
"./plugin": "./src/plugin.ts"
Expand Down

0 comments on commit 65b112b

Please sign in to comment.