Skip to content

Commit

Permalink
chore: release master (#309)
Browse files Browse the repository at this point in the history
* chore: release master

* Fix lock

---------

Co-authored-by: Anatoly Laskaris <github_me@nahsi.dev>
  • Loading branch information
fluencebot and nahsi authored Mar 22, 2023
1 parent 51e062c commit 29e7393
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 18 deletions.
8 changes: 4 additions & 4 deletions .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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 changes: 7 additions & 7 deletions Cargo.lock

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

7 changes: 7 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion 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.20.0"
version = "0.20.1"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2021"
Expand Down
4 changes: 4 additions & 0 deletions crates/fluence-app-service/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


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.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"}
Expand Down
4 changes: 4 additions & 0 deletions marine/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


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.26.0"
version = "0.26.1"
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.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"] }
Expand Down
4 changes: 4 additions & 0 deletions tools/repl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
4 changes: 2 additions & 2 deletions tools/repl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"}

Expand Down

0 comments on commit 29e7393

Please sign in to comment.