chore: release master (#296)

This commit is contained in:
fluencebot 2023-03-22 15:58:53 +02:00 committed by GitHub
parent defd165b86
commit b23e1654f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 37 additions and 18 deletions

View File

@ -1,5 +1,5 @@
{
"crates/fluence-app-service": "0.25.0",
"crates/fluence-app-service": "0.25.1",
"crates/it-generator": "0.10.0",
"crates/it-interfaces": "0.8.0",
"crates/it-json-serde": "0.4.0",
@ -10,9 +10,9 @@
"crates/utils": "0.5.0",
"crates/wasm-backend-traits": "0.2.0",
"crates/wasmtime-backend": "0.2.0",
"core": "0.20.0",
"marine": "0.26.0",
"core": "0.20.1",
"marine": "0.26.1",
"tools/cli": "0.14.0",
"tools/repl": "0.21.0",
"tools/repl": "0.21.1",
"marine-js": "0.4.0"
}

14
Cargo.lock generated
View File

@ -1206,7 +1206,7 @@ dependencies = [
[[package]]
name = "fluence-app-service"
version = "0.23.1"
version = "0.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "942caba094d1c219ad3656d51c827470d12dac834b4325843e9f61b12bf0d0dd"
dependencies = [
@ -1223,7 +1223,7 @@ dependencies = [
[[package]]
name = "fluence-app-service"
version = "0.25.0"
version = "0.25.1"
dependencies = [
"log",
"maplit",
@ -2011,7 +2011,7 @@ dependencies = [
[[package]]
name = "marine-core"
version = "0.19.0"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec214534c429191be20933848b185cd4ff614eac6a8d49edfa70f04087730288"
dependencies = [
@ -2044,7 +2044,7 @@ dependencies = [
[[package]]
name = "marine-core"
version = "0.20.0"
version = "0.20.1"
dependencies = [
"anyhow",
"bytes",
@ -2335,7 +2335,7 @@ dependencies = [
[[package]]
name = "marine-runtime"
version = "0.24.1"
version = "0.26.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "545262bf5b68d2b4f4b9eed2557f09421cc4bb62a10e71c307140f27b6411b9c"
dependencies = [
@ -2363,7 +2363,7 @@ dependencies = [
[[package]]
name = "marine-runtime"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"bytesize",
"env_logger 0.9.3",
@ -2563,7 +2563,7 @@ dependencies = [
[[package]]
name = "mrepl"
version = "0.21.0"
version = "0.21.1"
dependencies = [
"anyhow",
"check-latest",

View File

@ -4,6 +4,13 @@ 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).
## [0.20.1](https://github.com/fluencelabs/marine/compare/marine-core-v0.20.0...marine-core-v0.20.1) (2023-03-22)
### Bug Fixes
* **runtime:** support new wasm opcodes by removing unused memory limit setting ([#299](https://github.com/fluencelabs/marine/issues/299)) ([b9dbf67](https://github.com/fluencelabs/marine/commit/b9dbf6737655218619fb1275e564f03756c59a13))
## [0.20.0](https://github.com/fluencelabs/marine/compare/marine-core-v0.19.0...marine-core-v0.20.0) (2023-03-14)

View File

@ -1,7 +1,7 @@
[package]
name = "marine-core"
description = "Core of Marine, the Fluence Wasm Runtime"
version = "0.20.0"
version = "0.20.1"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2021"

View File

@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies
* marine-runtime bumped from 0.24.0 to 0.24.1
* The following workspace dependencies were updated
* dependencies
* marine-runtime bumped from 0.26.0 to 0.26.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,13 +1,13 @@
[package]
name = "fluence-app-service"
description = "Fluence Application Service"
version = "0.25.0"
version = "0.25.1"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2021"
[dependencies]
marine-runtime = { path = "../../marine", version = "0.26.0" }
marine-runtime = { path = "../../marine", version = "0.26.1" }
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"}

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-core bumped from 0.20.0 to 0.20.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.0"
version = "0.26.1"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2021"
@ -11,7 +11,7 @@ name = "marine"
path = "src/lib.rs"
[dependencies]
marine-core = { path = "../core", version = "0.20.0" }
marine-core = { path = "../core", version = "0.20.1" }
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"] }

View File

@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies
* fluence-app-service bumped from 0.23.0 to 0.23.1
* The following workspace dependencies were updated
* dependencies
* fluence-app-service bumped from 0.25.0 to 0.25.1
## [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.0"
version = "0.21.1"
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.0", features = ["raw-module-api"] }
fluence-app-service = { path = "../../crates/fluence-app-service", version = "0.25.1", 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"}