chore: release master (#423)

* chore: release master

* chore: Bump marine-js version to 0.13.1

* set correct versions

* update changelogs

* rollback wasms

---------

Co-authored-by: Valery Antopol <valery.antopol@gmail.com>
This commit is contained in:
fluencebot 2024-02-29 10:05:11 +02:00 committed by GitHub
parent 2ab2011610
commit e5c56190be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
15 changed files with 35 additions and 17 deletions

View File

@ -1,5 +1,5 @@
{
"crates/fluence-app-service": "0.35.0",
"crates/fluence-app-service": "0.35.1",
"crates/it-generator": "0.17.0",
"crates/it-interfaces": "0.9.1",
"crates/it-json-serde": "0.5.1",
@ -11,9 +11,9 @@
"crates/wasm-backend-traits": "0.6.0",
"crates/wasmtime-backend": "0.6.0",
"core": "0.30.0",
"marine": "0.36.0",
"marine": "0.36.1",
"tools/cli": "0.19.7",
"tools/repl": "0.30.0",
"marine-js": "0.13.0",
"tools/repl": "0.30.1",
"marine-js": "0.13.1",
"crates/js-backend": "0.3.3"
}

8
Cargo.lock generated
View File

@ -1013,7 +1013,7 @@ dependencies = [
[[package]]
name = "fluence-app-service"
version = "0.35.0"
version = "0.35.1"
dependencies = [
"log",
"maplit",
@ -1839,7 +1839,7 @@ dependencies = [
[[package]]
name = "marine-js"
version = "0.13.0"
version = "0.13.1"
dependencies = [
"js-sys",
"log",
@ -2142,7 +2142,7 @@ dependencies = [
[[package]]
name = "marine-runtime"
version = "0.36.0"
version = "0.36.1"
dependencies = [
"bytesize",
"env_logger",
@ -2338,7 +2338,7 @@ dependencies = [
[[package]]
name = "mrepl"
version = "0.30.0"
version = "0.30.1"
dependencies = [
"anyhow",
"check-latest",

View File

@ -35,6 +35,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies
* marine-runtime bumped from 0.34.0 to 0.35.0
* The following workspace dependencies were updated
* dependencies
* marine-runtime bumped from 0.36.0 to 0.36.1
## [0.35.0](https://github.com/fluencelabs/marine/compare/fluence-app-service-v0.34.0...fluence-app-service-v0.35.0) (2024-02-22)

View File

@ -1,14 +1,14 @@
[package]
name = "fluence-app-service"
description = "Fluence Application Service"
version = "0.35.0"
version = "0.35.1"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"
edition = "2021"
[dependencies]
marine-runtime = { path = "../../marine", version = "0.36.0" }
marine-runtime = { path = "../../marine", version = "0.36.1" }
marine-min-it-version = { path = "../../crates/min-it-version", version = "0.3.2" }
marine-wasm-backend-traits = {path = "../wasm-backend-traits", version = "0.6.0" }
marine-wasmtime-backend = { path = "../wasmtime-backend", version = "0.6.0" }

View File

@ -20,6 +20,8 @@
## [0.13.0](https://github.com/fluencelabs/marine/compare/marine-js-v0.12.0...marine-js-v0.13.0) (2024-02-22)

View File

@ -1,6 +1,6 @@
[package]
name = "marine-js"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
description = "Web version of the marine runtime"
publish = false

View File

@ -1,12 +1,12 @@
{
"name": "@fluencelabs/marine-js",
"version": "0.13.0",
"version": "0.13.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@fluencelabs/marine-js",
"version": "0.13.0",
"version": "0.13.1",
"license": "Apache 2.0",
"dependencies": {
"@wasmer/wasi": "0.12.0",

View File

@ -1,7 +1,7 @@
{
"name": "@fluencelabs/marine-js",
"description": "Marine-js",
"version": "0.13.0",
"version": "0.13.1",
"exports": {
".": "./dist/index.js",
"./types": {

View File

@ -13,6 +13,14 @@ 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.36.1](https://github.com/fluencelabs/marine/compare/marine-runtime-v0.36.0...marine-runtime-v0.36.1) (2024-02-29)
### Bug Fixes
* **host imports:** add mounted binaries for __marine_host_api_v3 ([#424](https://github.com/fluencelabs/marine/issues/424)) ([2ab2011](https://github.com/fluencelabs/marine/commit/2ab2011610775bda047663c624e434d966744ff0))
## [0.36.0](https://github.com/fluencelabs/marine/compare/marine-runtime-v0.35.0...marine-runtime-v0.36.0) (2024-02-22)

View File

@ -1,7 +1,7 @@
[package]
name = "marine-runtime"
description = "The Fluence Wasm Runtime"
version = "0.36.0"
version = "0.36.1"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
license = "Apache-2.0"

View File

@ -30,6 +30,10 @@ 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
* The following workspace dependencies were updated
* dependencies
* fluence-app-service bumped from 0.35.0 to 0.35.1
## [0.30.0](https://github.com/fluencelabs/marine/compare/mrepl-v0.29.0...mrepl-v0.30.0) (2024-02-22)

View File

@ -1,7 +1,7 @@
[package]
name = "mrepl"
description = "Fluence Marine REPL intended for testing purposes"
version = "0.30.0"
version = "0.30.1"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/marine"
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.35.0", features = ["raw-module-api"] }
fluence-app-service = { path = "../../crates/fluence-app-service", version = "0.35.1", 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.6.0" }