chore: release master (#313)

* chore: release master

* update Cargo.lock

---------

Co-authored-by: Valery Antopol <valery.antopol@gmail.com>
This commit is contained in:
fluencebot 2023-03-29 17:46:49 +03:00 committed by GitHub
parent a76ace9337
commit 66e42ef4c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 49 additions and 24 deletions

View File

@ -1,5 +1,5 @@
{
"crates/fluence-app-service": "0.25.1",
"crates/fluence-app-service": "0.25.2",
"crates/it-generator": "0.10.0",
"crates/it-interfaces": "0.8.0",
"crates/it-json-serde": "0.4.0",
@ -9,10 +9,10 @@
"crates/module-interface": "0.7.0",
"crates/utils": "0.5.0",
"crates/wasm-backend-traits": "0.2.0",
"crates/wasmtime-backend": "0.2.0",
"core": "0.20.1",
"marine": "0.26.1",
"crates/wasmtime-backend": "0.2.1",
"core": "0.20.2",
"marine": "0.26.2",
"tools/cli": "0.14.0",
"tools/repl": "0.21.1",
"tools/repl": "0.21.2",
"marine-js": "0.4.0"
}

16
Cargo.lock generated
View File

@ -1223,12 +1223,12 @@ dependencies = [
[[package]]
name = "fluence-app-service"
version = "0.25.1"
version = "0.25.2"
dependencies = [
"log",
"maplit",
"marine-min-it-version 0.3.0",
"marine-runtime 0.26.1",
"marine-runtime 0.26.2",
"marine-wasm-backend-traits",
"marine-wasmtime-backend",
"serde",
@ -2044,7 +2044,7 @@ dependencies = [
[[package]]
name = "marine-core"
version = "0.20.1"
version = "0.20.2"
dependencies = [
"anyhow",
"bytes",
@ -2363,7 +2363,7 @@ dependencies = [
[[package]]
name = "marine-runtime"
version = "0.26.1"
version = "0.26.2"
dependencies = [
"bytesize",
"env_logger 0.9.3",
@ -2371,7 +2371,7 @@ dependencies = [
"it-memory-traits 0.4.0",
"itertools",
"log",
"marine-core 0.20.1",
"marine-core 0.20.2",
"marine-module-interface 0.7.0",
"marine-rs-sdk",
"marine-rs-sdk-main",
@ -2466,7 +2466,7 @@ dependencies = [
[[package]]
name = "marine-wasmtime-backend"
version = "0.2.0"
version = "0.2.1"
dependencies = [
"anyhow",
"it-memory-traits 0.4.0",
@ -2563,13 +2563,13 @@ dependencies = [
[[package]]
name = "mrepl"
version = "0.21.1"
version = "0.21.2"
dependencies = [
"anyhow",
"check-latest",
"clap 2.34.0",
"env_logger 0.9.3",
"fluence-app-service 0.25.1",
"fluence-app-service 0.25.2",
"itertools",
"log",
"marine-rs-sdk-main",

View File

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
* The following workspace dependencies were updated
* dependencies
* marine-wasmtime-backend bumped from 0.2.0 to 0.2.1
## [0.20.1](https://github.com/fluencelabs/marine/compare/marine-core-v0.20.0...marine-core-v0.20.1) (2023-03-22)

View File

@ -1,7 +1,7 @@
[package]
name = "marine-core"
description = "Core of Marine, the Fluence Wasm Runtime"
version = "0.20.1"
version = "0.20.2"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2021"
@ -19,7 +19,7 @@ marine-module-interface = { path = "../crates/module-interface", version = "0.7.
marine-utils = { path = "../crates/utils", version = "0.5.0" }
marine-min-it-version = { path = "../crates/min-it-version", version = "0.3.0" }
marine-wasm-backend-traits = {path = "../crates/wasm-backend-traits", version = "0.2.0"}
marine-wasmtime-backend = { path = "../crates/wasmtime-backend", version = "0.2.0"}
marine-wasmtime-backend = { path = "../crates/wasmtime-backend", version = "0.2.1"}
wasmer-it = { workspace = true }
it-lilo = { workspace = true }

View File

@ -12,6 +12,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies
* marine-runtime bumped from 0.26.0 to 0.26.1
* The following workspace dependencies were updated
* dependencies
* marine-runtime bumped from 0.26.1 to 0.26.2
* marine-wasmtime-backend bumped from 0.2.0 to 0.2.1
## [0.25.0](https://github.com/fluencelabs/marine/compare/fluence-app-service-v0.24.0...fluence-app-service-v0.25.0) (2023-03-14)

View File

@ -1,16 +1,16 @@
[package]
name = "fluence-app-service"
description = "Fluence Application Service"
version = "0.25.1"
version = "0.25.2"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2021"
[dependencies]
marine-runtime = { path = "../../marine", version = "0.26.1" }
marine-runtime = { path = "../../marine", version = "0.26.2" }
marine-min-it-version = { path = "../../crates/min-it-version", version = "0.3.0" }
marine-wasm-backend-traits = {path = "../wasm-backend-traits", version = "0.2.0"}
marine-wasmtime-backend = { path = "../wasmtime-backend", version = "0.2.0"}
marine-wasmtime-backend = { path = "../wasmtime-backend", version = "0.2.1"}
maplit = "1.0.2"
log = "0.4.17"

View File

@ -1,5 +1,12 @@
# Changelog
## [0.2.1](https://github.com/fluencelabs/marine/compare/marine-wasmtime-backend-v0.2.0...marine-wasmtime-backend-v0.2.1) (2023-03-29)
### Bug Fixes
* **wasmtime-backend:** give access to stdout and stderr for instances ([#312](https://github.com/fluencelabs/marine/issues/312)) ([a76ace9](https://github.com/fluencelabs/marine/commit/a76ace9337df5b07d9da3f3a449cf12f14e4cf2f))
## [0.2.0](https://github.com/fluencelabs/marine/compare/marine-wasmtime-backend-v0.1.0...marine-wasmtime-backend-v0.2.0) (2023-03-14)

View File

@ -1,7 +1,7 @@
[package]
name = "marine-wasmtime-backend"
description = "Fluence Marine Wasm backend interface implementation for Wasmtime"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
authors = ["Fluence Labs"]
license = "Apache-2.0"

View File

@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies
* marine-core bumped from 0.20.0 to 0.20.1
* The following workspace dependencies were updated
* dependencies
* marine-core bumped from 0.20.1 to 0.20.2
* marine-wasmtime-backend bumped from 0.2.0 to 0.2.1
## [0.26.0](https://github.com/fluencelabs/marine/compare/marine-runtime-v0.25.0...marine-runtime-v0.26.0) (2023-03-14)

View File

@ -1,7 +1,7 @@
[package]
name = "marine-runtime"
description = "The Fluence Wasm Runtime"
version = "0.26.1"
version = "0.26.2"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2021"
@ -11,14 +11,14 @@ name = "marine"
path = "src/lib.rs"
[dependencies]
marine-core = { path = "../core", version = "0.20.1" }
marine-core = { path = "../core", version = "0.20.2" }
marine-module-interface = { path = "../crates/module-interface", version = "0.7.0" }
marine-utils = { path = "../crates/utils", version = "0.5.0" }
marine-rs-sdk-main = { version = "0.7.1", features = ["logger"] }
marine-rs-sdk = { version = "0.7.1", features = ["logger"] }
it-json-serde = { path = "../crates/it-json-serde", version = "0.4.0" }
marine-wasm-backend-traits = { path = "../crates/wasm-backend-traits", version = "0.2.0"}
marine-wasmtime-backend = { path = "../crates/wasmtime-backend", version = "0.2.0"}
marine-wasmtime-backend = { path = "../crates/wasmtime-backend", version = "0.2.1"}
wasmer-it = { workspace = true }
it-memory-traits = { workspace = true }

View File

@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies
* fluence-app-service bumped from 0.25.0 to 0.25.1
* The following workspace dependencies were updated
* dependencies
* fluence-app-service bumped from 0.25.1 to 0.25.2
## [0.21.0](https://github.com/fluencelabs/marine/compare/mrepl-v0.20.0...mrepl-v0.21.0) (2023-03-14)

View File

@ -1,7 +1,7 @@
[package]
name = "mrepl"
description = "Fluence Marine REPL intended for testing purposes"
version = "0.21.1"
version = "0.21.2"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine/tools/repl"
license = "Apache-2.0"
@ -12,7 +12,7 @@ name = "mrepl"
path = "src/main.rs"
[dependencies]
fluence-app-service = { path = "../../crates/fluence-app-service", version = "0.25.1", features = ["raw-module-api"] }
fluence-app-service = { path = "../../crates/fluence-app-service", version = "0.25.2", 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.2.0"}