Skip to content

Commit

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

* chore: Bump marine-js version to 0.9.2
  • Loading branch information
fluencebot authored Feb 5, 2024
1 parent 9ad73df commit ac4a599
Show file tree
Hide file tree
Showing 18 changed files with 68 additions and 29 deletions.
14 changes: 7 additions & 7 deletions .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"crates/fluence-app-service": "0.31.1",
"crates/fluence-app-service": "0.31.2",
"crates/it-generator": "0.13.1",
"crates/it-interfaces": "0.9.1",
"crates/it-json-serde": "0.5.1",
"crates/it-parser": "0.15.1",
"crates/min-it-version": "0.3.2",
"crates/module-info-parser": "0.11.1",
"crates/module-info-parser": "0.11.2",
"crates/module-interface": "0.8.1",
"crates/utils": "0.5.1",
"crates/wasm-backend-traits": "0.5.1",
"crates/wasmtime-backend": "0.5.1",
"core": "0.26.1",
"marine": "0.32.1",
"tools/cli": "0.19.2",
"tools/repl": "0.26.2",
"marine-js": "0.9.1",
"core": "0.26.2",
"marine": "0.32.2",
"tools/cli": "0.19.3",
"tools/repl": "0.26.3",
"marine-js": "0.9.2",
"crates/js-backend": "0.3.2"
}
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.

4 changes: 4 additions & 0 deletions core/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-wasmtime-backend bumped from 0.2.0 to 0.2.1

* The following workspace dependencies were updated
* dependencies
* marine-module-info-parser bumped from 0.11.1 to 0.11.2

## [0.26.1](https://github.com/fluencelabs/marine/compare/marine-core-v0.26.0...marine-core-v0.26.1) (2024-01-07)


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

[dependencies]
marine-module-info-parser = { path = "../crates/module-info-parser", version = "0.11.1" }
marine-module-info-parser = { path = "../crates/module-info-parser", version = "0.11.2" }
marine-it-interfaces = { path = "../crates/it-interfaces", version = "0.9.1" }
marine-it-parser = { path = "../crates/it-parser", version = "0.15.1" }
marine-it-generator = { path = "../crates/it-generator", version = "0.13.1" }
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 @@ -23,6 +23,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* marine-wasm-backend-traits bumped from 0.2.0 to 0.2.1
* marine-wasmtime-backend bumped from 0.2.1 to 0.2.2

* The following workspace dependencies were updated
* dependencies
* marine-runtime bumped from 0.32.1 to 0.32.2

## [0.31.1](https://github.com/fluencelabs/marine/compare/fluence-app-service-v0.31.0...fluence-app-service-v0.31.1) (2024-01-07)


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,14 +1,14 @@
[package]
name = "fluence-app-service"
description = "Fluence Application Service"
version = "0.31.1"
version = "0.31.2"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
edition = "2021"

[dependencies]
marine-runtime = { path = "../../marine", version = "0.32.1" }
marine-runtime = { path = "../../marine", version = "0.32.2" }
marine-min-it-version = { path = "../../crates/min-it-version", version = "0.3.2" }
marine-wasm-backend-traits = {path = "../wasm-backend-traits", version = "0.5.1" }
marine-wasmtime-backend = { path = "../wasmtime-backend", version = "0.5.1" }
Expand Down
7 changes: 7 additions & 0 deletions crates/module-info-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
* dependencies
* marine-wasm-backend-traits bumped from 0.2.1 to 0.3.0

## [0.11.2](https://github.com/fluencelabs/marine/compare/marine-module-info-parser-v0.11.1...marine-module-info-parser-v0.11.2) (2024-02-05)


### Features

* **module-info-parser:** add effects extractor ([#410](https://github.com/fluencelabs/marine/issues/410)) ([9ad73df](https://github.com/fluencelabs/marine/commit/9ad73df554e22cac6e03af59793d553865559b1a))

## [0.11.1](https://github.com/fluencelabs/marine/compare/marine-module-info-parser-v0.11.0...marine-module-info-parser-v0.11.1) (2024-01-07)


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.11.1"
version = "0.11.2"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
Expand Down
2 changes: 2 additions & 0 deletions marine-js/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
* dependencies
* marine-js-backend bumped from 0.3.1 to 0.3.2



## [0.9.0](https://github.com/fluencelabs/marine/compare/marine-js-v0.8.0...marine-js-v0.9.0) (2023-12-14)


Expand Down
2 changes: 1 addition & 1 deletion marine-js/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-js"
version = "0.9.1"
version = "0.9.2"
edition = "2021"
description = "Web version of the marine runtime"
publish = false
Expand Down
4 changes: 2 additions & 2 deletions marine-js/npm-package/package-lock.json

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

2 changes: 1 addition & 1 deletion marine-js/npm-package/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fluencelabs/marine-js",
"description": "Marine-js",
"version": "0.9.1",
"version": "0.9.2",
"exports": {
".": "./dist/index.js",
"./types": {
Expand Down
14 changes: 14 additions & 0 deletions marine/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* marine-core bumped from 0.20.1 to 0.20.2
* marine-wasmtime-backend bumped from 0.2.0 to 0.2.1

## [0.32.2](https://github.com/fluencelabs/marine/compare/marine-runtime-v0.32.1...marine-runtime-v0.32.2) (2024-02-05)


### Bug Fixes

* add/update total_memory_limit field in configs for tests ([#411](https://github.com/fluencelabs/marine/issues/411)) ([bdd109d](https://github.com/fluencelabs/marine/commit/bdd109d8424cb1159039a0c3082fad8450e2f328))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* marine-core bumped from 0.26.1 to 0.26.2

## [0.32.1](https://github.com/fluencelabs/marine/compare/marine-runtime-v0.32.0...marine-runtime-v0.32.1) (2024-01-07)


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

[dependencies]
marine-core = { path = "../core", version = "0.26.1", default-features = false}
marine-core = { path = "../core", version = "0.26.2", default-features = false}
marine-module-interface = { path = "../crates/module-interface", version = "0.8.1" }
marine-utils = { path = "../crates/utils", version = "0.5.1" }
marine-rs-sdk-main = {version = "0.10.0", default-features = false, features = ["logger"] }
Expand Down
4 changes: 4 additions & 0 deletions tools/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
* marine-it-parser bumped from 0.12.1 to 0.12.2
* marine-module-info-parser bumped from 0.6.1 to 0.6.2

* The following workspace dependencies were updated
* dependencies
* marine-module-info-parser bumped from 0.11.1 to 0.11.2

## [0.19.2](https://github.com/fluencelabs/marine/compare/marine-v0.19.1...marine-v0.19.2) (2024-01-10)


Expand Down
4 changes: 2 additions & 2 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.19.2"
version = "0.19.3"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
Expand All @@ -14,7 +14,7 @@ path = "src/main.rs"
[dependencies]
marine-it-generator = { path = "../../crates/it-generator", version = "0.13.1" }
marine-it-parser = { path = "../../crates/it-parser", version = "0.15.1" }
marine-module-info-parser = { path = "../../crates/module-info-parser", version = "0.11.1" }
marine-module-info-parser = { path = "../../crates/module-info-parser", version = "0.11.2" }

cargo_toml = "0.15.2"
cargo-lock = "8.0.3"
Expand Down
4 changes: 4 additions & 0 deletions tools/repl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* fluence-app-service bumped from 0.25.3 to 0.26.0
* marine-wasm-backend-traits bumped from 0.2.1 to 0.3.0

* The following workspace dependencies were updated
* dependencies
* fluence-app-service bumped from 0.31.1 to 0.31.2

## [0.26.2](https://github.com/fluencelabs/marine/compare/mrepl-v0.26.1...mrepl-v0.26.2) (2024-01-10)


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.26.2"
version = "0.26.3"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
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.31.1", features = ["raw-module-api"] }
fluence-app-service = { path = "../../crates/fluence-app-service", version = "0.31.2", features = ["raw-module-api"] }
marine-rs-sdk-main = { version = "0.10.0", default-features = false, features = ["logger"] }
marine-wasm-backend-traits = {path = "../../crates/wasm-backend-traits", version = "0.5.1" }

Expand Down

0 comments on commit ac4a599

Please sign in to comment.