Skip to content

Commit

Permalink
fix(versions)!: enforce minor version bumps (#430)
Browse files Browse the repository at this point in the history
bump versions manually
  • Loading branch information
ValeryAntopol authored Apr 10, 2024
1 parent 13cf85b commit be8293b
Show file tree
Hide file tree
Showing 17 changed files with 62 additions and 62 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

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

16 changes: 8 additions & 8 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.30.0"
version = "0.31.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
Expand All @@ -12,15 +12,15 @@ name = "marine_core"
path = "src/lib.rs"

[dependencies]
marine-module-info-parser = { path = "../crates/module-info-parser", version = "0.15.0" }
marine-it-interfaces = { path = "../crates/it-interfaces", version = "0.9.1" }
marine-it-parser = { path = "../crates/it-parser", version = "0.16.0" }
marine-it-generator = { path = "../crates/it-generator", version = "0.17.0" }
marine-module-interface = { path = "../crates/module-interface", version = "0.8.1" }
marine-module-info-parser = { path = "../crates/module-info-parser", version = "0.16.0" }
marine-it-interfaces = { path = "../crates/it-interfaces", version = "0.10.0" }
marine-it-parser = { path = "../crates/it-parser", version = "0.17.0" }
marine-it-generator = { path = "../crates/it-generator", version = "0.18.0" }
marine-module-interface = { path = "../crates/module-interface", version = "0.9.0" }
marine-utils = { path = "../crates/utils", version = "0.5.1" }
marine-min-it-version = { path = "../crates/min-it-version", version = "0.3.2" }
marine-wasm-backend-traits = {path = "../crates/wasm-backend-traits", version = "0.6.0" }
marine-wasmtime-backend = { path = "../crates/wasmtime-backend", version = "0.6.0", optional = true}
marine-wasm-backend-traits = {path = "../crates/wasm-backend-traits", version = "0.7.0" }
marine-wasmtime-backend = { path = "../crates/wasmtime-backend", version = "0.7.0", optional = true}

wasmer-it = { package = "wasmer-interface-types-fl", version = "0.28.0" }
it-lilo = "0.7.0"
Expand Down
8 changes: 4 additions & 4 deletions crates/fluence-app-service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "fluence-app-service"
description = "Fluence Application Service"
version = "0.35.2"
version = "0.36.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
edition = "2021"

[dependencies]
marine-runtime = { path = "../../marine", version = "0.36.2" }
marine-runtime = { path = "../../marine", version = "0.37.0" }
marine-min-it-version = { path = "../../crates/min-it-version", version = "0.3.2" }
marine-wasm-backend-traits = {path = "../wasm-backend-traits", version = "0.6.0" }
marine-wasmtime-backend = { path = "../wasmtime-backend", version = "0.6.0", optional = true }
marine-wasm-backend-traits = {path = "../wasm-backend-traits", version = "0.7.0" }
marine-wasmtime-backend = { path = "../wasmtime-backend", version = "0.7.0", optional = true }

maplit = "1.0.2"
log = "0.4.20"
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.17.0"
version = "0.18.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
Expand All @@ -12,7 +12,7 @@ name = "marine_it_generator"
path = "src/lib.rs"

[dependencies]
marine-it-parser = { path = "../it-parser", version = "0.16.0" }
marine-it-parser = { path = "../it-parser", version = "0.17.0" }
marine-macro-impl = "0.14.0"

wasmer-it = { package = "wasmer-interface-types-fl", version = "0.28.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/it-interfaces/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "marine-it-interfaces"
description = "Fluence Marine interface types helper crate"
version = "0.9.1"
version = "0.10.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/it-json-serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "it-json-serde"
description = "Fluence Marine interface-types serde tools"
version = "0.5.1"
version = "0.6.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions 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.16.0"
version = "0.17.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
Expand All @@ -12,9 +12,9 @@ name = "marine_it_parser"
path = "src/lib.rs"

[dependencies]
marine-it-interfaces = { path = "../it-interfaces", version = "0.9.1" }
marine-module-interface = { path = "../module-interface", version = "0.8.1" }
marine-wasm-backend-traits = { path = "../wasm-backend-traits", version = "0.6.0" }
marine-it-interfaces = { path = "../it-interfaces", version = "0.10.0" }
marine-module-interface = { path = "../module-interface", version = "0.9.0" }
marine-wasm-backend-traits = { path = "../wasm-backend-traits", version = "0.7.0" }

anyhow = "1.0.75"
walrus = "0.20.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/js-backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "marine-js-backend"
version = "0.3.3"
version = "0.4.0"
edition = "2021"
description = "Fluence Marine Wasm backend interface implementation for JS environment"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"

[dependencies]
marine-wasm-backend-traits = {path = "../wasm-backend-traits", version = "0.6.0" }
marine-wasm-backend-traits = {path = "../wasm-backend-traits", version = "0.7.0" }
it-memory-traits = "0.5.0"

wasm-bindgen = "0.2.84"
Expand Down
4 changes: 2 additions & 2 deletions 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.15.0"
version = "0.16.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
Expand All @@ -14,7 +14,7 @@ path = "src/lib.rs"
[dependencies]
marine-rs-sdk-main = { version = "0.14.0", default-features = false }

marine-wasm-backend-traits = { path = "../wasm-backend-traits", version = "0.6.0" }
marine-wasm-backend-traits = { path = "../wasm-backend-traits", version = "0.7.0" }

anyhow = "1.0.75"
chrono = "0.4.31"
Expand Down
4 changes: 2 additions & 2 deletions crates/module-interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "marine-module-interface"
description = "Fluence Marine module interface"
version = "0.8.1"
version = "0.9.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
Expand All @@ -12,7 +12,7 @@ name = "marine_module_interface"
path = "src/lib.rs"

[dependencies]
marine-it-interfaces = { path = "../it-interfaces", version = "0.9.1" }
marine-it-interfaces = { path = "../it-interfaces", version = "0.10.0" }

anyhow = "1.0.75"
walrus = "0.20.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-backend-traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "marine-wasm-backend-traits"
description = "Fluence Marine generic Wasm backend interface"
version = "0.6.0"
version = "0.7.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/wasmtime-backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "marine-wasmtime-backend"
description = "Fluence Marine Wasm backend interface implementation for Wasmtime"
version = "0.6.0"
version = "0.7.0"
edition = "2021"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"

[dependencies]
marine-wasm-backend-traits = {path = "../wasm-backend-traits", version = "0.6.0" }
marine-wasm-backend-traits = {path = "../wasm-backend-traits", version = "0.7.0" }
wasmer-it = { package = "wasmer-interface-types-fl", version = "0.28.0" }
it-memory-traits = "0.5.0"

Expand Down
2 changes: 1 addition & 1 deletion examples/call_parameters/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ path = "src/main.rs"

[dependencies]
marine-rs-sdk = { version = "0.14.0", features = ["logger"] }
serde_json = "1.0.111"
serde_json = "1.0.111"
6 changes: 3 additions & 3 deletions marine-js/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-js"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
description = "Web version of the marine runtime"
publish = false
Expand All @@ -10,9 +10,9 @@ publish = false
crate-type = ["cdylib"]

[dependencies]
marine-js-backend = {path = "../crates/js-backend", version = "0.3.3" }
marine-js-backend = {path = "../crates/js-backend", version = "0.4.0" }
marine-runtime = {path = "../marine", default-features = false}
marine-wasm-backend-traits = {path = "../crates/wasm-backend-traits", version = "0.6.0"}
marine-wasm-backend-traits = {path = "../crates/wasm-backend-traits", version = "0.7.0" }

wasm-bindgen = "0.2.86"
once_cell = "1.18.0"
Expand Down
12 changes: 6 additions & 6 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.36.2"
version = "0.37.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
Expand All @@ -12,18 +12,18 @@ name = "marine"
path = "src/lib.rs"

[dependencies]
marine-core = { path = "../core", version = "0.30.0", default-features = false}
marine-module-interface = { path = "../crates/module-interface", version = "0.8.1" }
marine-core = { path = "../core", version = "0.31.0", default-features = false}
marine-module-interface = { path = "../crates/module-interface", version = "0.9.0" }
marine-utils = { path = "../crates/utils", version = "0.5.1" }
marine-rs-sdk-main = { version = "0.14.0", default-features = false, features = ["logger"] }
marine-rs-sdk = { version = "0.14.0", default-features = false, features = ["logger"] }
marine_call_parameters_v0 = { package = "marine-call-parameters", version = "=0.10.3", default-features = false }
marine_call_parameters_v1 = { package = "marine-call-parameters", version = "=0.12.0", default-features = false }
marine_call_parameters_v2 = { package = "marine-call-parameters", version = "=0.13.0", default-features = false }

it-json-serde = { path = "../crates/it-json-serde", version = "0.5.1" }
marine-wasm-backend-traits = { path = "../crates/wasm-backend-traits", version = "0.6.0" }
marine-wasmtime-backend = { path = "../crates/wasmtime-backend", version = "0.6.0", optional = true}
it-json-serde = { path = "../crates/it-json-serde", version = "0.6.0" }
marine-wasm-backend-traits = { path = "../crates/wasm-backend-traits", version = "0.7.0" }
marine-wasmtime-backend = { path = "../crates/wasmtime-backend", version = "0.7.0", optional = true}

wasmer-it = { package = "wasmer-interface-types-fl", version = "0.28.0" }
it-memory-traits = "0.5.0"
Expand Down
Loading

0 comments on commit be8293b

Please sign in to comment.