Skip to content

Commit

Permalink
fix!: update versions to comply with semver (#357)
Browse files Browse the repository at this point in the history
bump versions
  • Loading branch information
ValeryAntopol authored Aug 4, 2023
1 parent 3daf6b5 commit 71e138d
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 35 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.

8 changes: 4 additions & 4 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "marine-core"
description = "Core of Marine, the Fluence Wasm Runtime"
version = "0.21.0"
version = "0.22.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -11,10 +11,10 @@ name = "marine_core"
path = "src/lib.rs"

[dependencies]
marine-module-info-parser = { path = "../crates/module-info-parser", version = "0.6.2" }
marine-module-info-parser = { path = "../crates/module-info-parser", version = "0.7.0" }
marine-it-interfaces = { path = "../crates/it-interfaces", version = "0.8.1" }
marine-it-parser = { path = "../crates/it-parser", version = "0.12.2" }
marine-it-generator = { path = "../crates/it-generator", version = "0.10.2" }
marine-it-parser = { path = "../crates/it-parser", version = "0.13.0" }
marine-it-generator = { path = "../crates/it-generator", version = "0.11.0" }
marine-module-interface = { path = "../crates/module-interface", version = "0.7.1" }
marine-utils = { path = "../crates/utils", version = "0.5.0" }
marine-min-it-version = { path = "../crates/min-it-version", version = "0.3.0" }
Expand Down
4 changes: 2 additions & 2 deletions crates/fluence-app-service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "fluence-app-service"
description = "Fluence Application Service"
version = "0.26.0"
version = "0.27.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2021"

[dependencies]
marine-runtime = { path = "../../marine", version = "0.27.0" }
marine-runtime = { path = "../../marine", version = "0.28.0" }
marine-min-it-version = { path = "../../crates/min-it-version", version = "0.3.0" }
marine-wasm-backend-traits = {path = "../wasm-backend-traits", version = "0.3.0"}
marine-wasmtime-backend = { path = "../wasmtime-backend", version = "0.3.0"}
Expand Down
4 changes: 2 additions & 2 deletions crates/it-generator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "marine-it-generator"
description = "Fluence Marine interface types generator"
version = "0.10.2"
version = "0.11.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -11,7 +11,7 @@ name = "marine_it_generator"
path = "src/lib.rs"

[dependencies]
marine-it-parser = { path = "../it-parser", version = "0.12.2" }
marine-it-parser = { path = "../it-parser", version = "0.13.0" }
marine-macro-impl = "0.7.1"

wasmer-it = { package = "wasmer-interface-types-fl", version = "0.26.1" }
Expand Down
2 changes: 1 addition & 1 deletion crates/it-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "marine-it-parser"
description = "Fluence Marine interface types parser"
version = "0.12.2"
version = "0.13.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion crates/module-info-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "marine-module-info-parser"
description = "Fluence Marine Wasm module info (manifest and version) parser"
version = "0.6.2"
version = "0.7.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions marine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "marine-runtime"
description = "The Fluence Wasm Runtime"
version = "0.27.0"
version = "0.28.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -11,7 +11,7 @@ name = "marine"
path = "src/lib.rs"

[dependencies]
marine-core = { path = "../core", version = "0.21.0", default-features = false}
marine-core = { path = "../core", version = "0.22.0", default-features = false}
marine-module-interface = { path = "../crates/module-interface", version = "0.7.1" }
marine-utils = { path = "../crates/utils", version = "0.5.0" }
marine-rs-sdk-main = { version = "0.7.1", features = ["logger"] }
Expand Down
8 changes: 4 additions & 4 deletions tools/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "marine"
description = "Fluence Marine command line tool"
version = "0.14.2"
version = "0.15.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine/tools/cli"
license = "Apache-2.0"
Expand All @@ -12,9 +12,9 @@ name = "marine"
path = "src/main.rs"

[dependencies]
marine-it-generator = { path = "../../crates/it-generator", version = "0.10.2" }
marine-it-parser = { path = "../../crates/it-parser", version = "0.12.2" }
marine-module-info-parser = { path = "../../crates/module-info-parser", version = "0.6.2" }
marine-it-generator = { path = "../../crates/it-generator", version = "0.11.0" }
marine-it-parser = { path = "../../crates/it-parser", version = "0.13.0" }
marine-module-info-parser = { path = "../../crates/module-info-parser", version = "0.7.0" }

cargo_toml = "0.15.2"
cargo-lock = "8.0.3"
Expand Down
2 changes: 1 addition & 1 deletion tools/repl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "mrepl"
path = "src/main.rs"

[dependencies]
fluence-app-service = { path = "../../crates/fluence-app-service", version = "0.26.0", features = ["raw-module-api"] }
fluence-app-service = { path = "../../crates/fluence-app-service", version = "0.27.0", features = ["raw-module-api"] }
marine-rs-sdk-main = { version = "0.7.1", features = ["logger"] }
marine-wasm-backend-traits = {path = "../../crates/wasm-backend-traits", version = "0.3.0"}

Expand Down

0 comments on commit 71e138d

Please sign in to comment.