Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release master #420

Merged
merged 4 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 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.33.0",
"crates/it-generator": "0.15.0",
"crates/fluence-app-service": "0.34.0",
"crates/it-generator": "0.16.0",
"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.13.0",
"crates/module-info-parser": "0.14.0",
"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.28.0",
"marine": "0.34.0",
"tools/cli": "0.19.5",
"tools/repl": "0.28.0",
"marine-js": "0.11.0",
"core": "0.29.0",
"marine": "0.35.0",
"tools/cli": "0.19.6",
"tools/repl": "0.29.0",
"marine-js": "0.12.0",
"crates/js-backend": "0.3.2"
}
16 changes: 8 additions & 8 deletions Cargo.lock

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

19 changes: 19 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies
* marine-module-info-parser bumped from 0.11.1 to 0.11.2

## [0.29.0](https://github.com/fluencelabs/marine/compare/marine-core-v0.28.0...marine-core-v0.29.0) (2024-02-21)


### ⚠ BREAKING CHANGES

* support marine-rs-sdk 0.14

### Features

* support marine-rs-sdk 0.14 ([b20a27f](https://github.com/fluencelabs/marine/commit/b20a27f8b64733f3300afc8e4b5409337dc860aa))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* marine-module-info-parser bumped from 0.13.0 to 0.14.0
* marine-it-generator bumped from 0.15.0 to 0.16.0

## [0.28.0](https://github.com/fluencelabs/marine/compare/marine-core-v0.27.0...marine-core-v0.28.0) (2024-02-20)


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

[dependencies]
marine-module-info-parser = { path = "../crates/module-info-parser", version = "0.13.0" }
marine-module-info-parser = { path = "../crates/module-info-parser", version = "0.14.0" }
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.15.0" }
marine-it-generator = { path = "../crates/it-generator", version = "0.16.0" }
marine-module-interface = { path = "../crates/module-interface", version = "0.8.1" }
marine-utils = { path = "../crates/utils", version = "0.5.1" }
marine-min-it-version = { path = "../crates/min-it-version", version = "0.3.2" }
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 @@ -31,6 +31,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies
* marine-runtime bumped from 0.32.2 to 0.33.0

* The following workspace dependencies were updated
* dependencies
* marine-runtime bumped from 0.34.0 to 0.35.0

## [0.33.0](https://github.com/fluencelabs/marine/compare/fluence-app-service-v0.32.0...fluence-app-service-v0.33.0) (2024-02-20)


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.33.0"
version = "0.34.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
edition = "2021"

[dependencies]
marine-runtime = { path = "../../marine", version = "0.34.0" }
marine-runtime = { path = "../../marine", version = "0.35.0" }
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
11 changes: 11 additions & 0 deletions crates/it-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@
* dependencies
* marine-it-parser bumped from 0.12.1 to 0.12.2

## [0.16.0](https://github.com/fluencelabs/marine/compare/marine-it-generator-v0.15.0...marine-it-generator-v0.16.0) (2024-02-21)


### ⚠ BREAKING CHANGES

* support marine-rs-sdk 0.14

### Features

* support marine-rs-sdk 0.14 ([b20a27f](https://github.com/fluencelabs/marine/commit/b20a27f8b64733f3300afc8e4b5409337dc860aa))

## [0.15.0](https://github.com/fluencelabs/marine/compare/marine-it-generator-v0.14.0...marine-it-generator-v0.15.0) (2024-02-20)


Expand Down
2 changes: 1 addition & 1 deletion 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.15.0"
version = "0.16.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
Expand Down
11 changes: 11 additions & 0 deletions crates/module-info-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@
* dependencies
* marine-wasm-backend-traits bumped from 0.2.1 to 0.3.0

## [0.14.0](https://github.com/fluencelabs/marine/compare/marine-module-info-parser-v0.13.0...marine-module-info-parser-v0.14.0) (2024-02-21)


### ⚠ BREAKING CHANGES

* support marine-rs-sdk 0.14

### Features

* support marine-rs-sdk 0.14 ([b20a27f](https://github.com/fluencelabs/marine/commit/b20a27f8b64733f3300afc8e4b5409337dc860aa))

## [0.13.0](https://github.com/fluencelabs/marine/compare/marine-module-info-parser-v0.12.0...marine-module-info-parser-v0.13.0) (2024-02-20)


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.13.0"
version = "0.14.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
Expand Down
11 changes: 11 additions & 0 deletions marine-js/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@



## [0.12.0](https://github.com/fluencelabs/marine/compare/marine-js-v0.11.0...marine-js-v0.12.0) (2024-02-21)


### ⚠ BREAKING CHANGES

* support marine-rs-sdk 0.14

### Features

* support marine-rs-sdk 0.14 ([b20a27f](https://github.com/fluencelabs/marine/commit/b20a27f8b64733f3300afc8e4b5409337dc860aa))

## [0.11.0](https://github.com/fluencelabs/marine/compare/marine-js-v0.10.0...marine-js-v0.11.0) (2024-02-20)


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.11.0"
version = "0.12.0"
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.11.0",
"version": "0.12.0",
"exports": {
".": "./dist/index.js",
"./types": {
Expand Down
18 changes: 18 additions & 0 deletions marine/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,24 @@ 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.35.0](https://github.com/fluencelabs/marine/compare/marine-runtime-v0.34.0...marine-runtime-v0.35.0) (2024-02-21)


### ⚠ BREAKING CHANGES

* support marine-rs-sdk 0.14

### Features

* support marine-rs-sdk 0.14 ([b20a27f](https://github.com/fluencelabs/marine/commit/b20a27f8b64733f3300afc8e4b5409337dc860aa))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* marine-core bumped from 0.28.0 to 0.29.0

## [0.34.0](https://github.com/fluencelabs/marine/compare/marine-runtime-v0.33.0...marine-runtime-v0.34.0) (2024-02-20)


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.34.0"
version = "0.35.0"
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.28.0", default-features = false}
marine-core = { path = "../core", version = "0.29.0", 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.14.0", default-features = false, features = ["logger"] }
Expand Down
5 changes: 5 additions & 0 deletions tools/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@
* marine-it-generator bumped from 0.14.0 to 0.15.0
* marine-module-info-parser bumped from 0.12.0 to 0.13.0

* The following workspace dependencies were updated
* dependencies
* marine-it-generator bumped from 0.15.0 to 0.16.0
* marine-module-info-parser bumped from 0.13.0 to 0.14.0

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


Expand Down
6 changes: 3 additions & 3 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.5"
version = "0.19.6"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
Expand All @@ -12,9 +12,9 @@ name = "marine"
path = "src/main.rs"

[dependencies]
marine-it-generator = { path = "../../crates/it-generator", version = "0.15.0" }
marine-it-generator = { path = "../../crates/it-generator", version = "0.16.0" }
marine-it-parser = { path = "../../crates/it-parser", version = "0.15.1" }
marine-module-info-parser = { path = "../../crates/module-info-parser", version = "0.13.0" }
marine-module-info-parser = { path = "../../crates/module-info-parser", version = "0.14.0" }

cargo_toml = "0.15.2"
cargo-lock = "8.0.3"
Expand Down
18 changes: 18 additions & 0 deletions tools/repl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies
* fluence-app-service bumped from 0.31.1 to 0.31.2

## [0.29.0](https://github.com/fluencelabs/marine/compare/mrepl-v0.28.0...mrepl-v0.29.0) (2024-02-21)


### ⚠ BREAKING CHANGES

* support marine-rs-sdk 0.14

### Features

* support marine-rs-sdk 0.14 ([b20a27f](https://github.com/fluencelabs/marine/commit/b20a27f8b64733f3300afc8e4b5409337dc860aa))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* fluence-app-service bumped from 0.33.0 to 0.33.1

## [0.28.0](https://github.com/fluencelabs/marine/compare/mrepl-v0.27.0...mrepl-v0.28.0) (2024-02-20)


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.28.0"
version = "0.29.0"
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.33.0", features = ["raw-module-api"] }
fluence-app-service = { path = "../../crates/fluence-app-service", version = "0.34.0", features = ["raw-module-api"] }
marine-rs-sdk-main = { version = "0.14.0", default-features = false, features = ["logger"] }
marine-wasm-backend-traits = {path = "../../crates/wasm-backend-traits", version = "0.5.1" }

Expand Down
Loading