Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fluencelabs/marine-rs-sdk-test
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: marine-rs-sdk-test-v0.14.0
Choose a base ref
...
head repository: fluencelabs/marine-rs-sdk-test
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: marine-rs-sdk-test-v0.15.0
Choose a head ref
  • 2 commits
  • 12 files changed
  • 2 contributors

Commits on Feb 21, 2024

  1. feat!: update sdk and marine (#117)

    update sdk and marine
    ValeryAntopol authored Feb 21, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    467cc1c View commit details
  2. chore(master): release marine-rs-sdk-test 0.15.0 (#118)

    * chore(master): release marine-rs-sdk-test 0.15.0
    
    * chore: Bump version to 0.15.0
    fluencebot authored Feb 21, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    4ea5689 View commit details
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.14.0"
".": "0.15.0"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.15.0](https://github.com/fluencelabs/marine-rs-sdk-test/compare/marine-rs-sdk-test-v0.14.0...marine-rs-sdk-test-v0.15.0) (2024-02-21)


### ⚠ BREAKING CHANGES

* update sdk and marine ([#117](https://github.com/fluencelabs/marine-rs-sdk-test/issues/117))

### Features

* update sdk and marine ([#117](https://github.com/fluencelabs/marine-rs-sdk-test/issues/117)) ([467cc1c](https://github.com/fluencelabs/marine-rs-sdk-test/commit/467cc1c1ef3e5abd42670c686022f3b2c688c5c3))

## [0.14.0](https://github.com/fluencelabs/marine-rs-sdk-test/compare/marine-rs-sdk-test-v0.13.0...marine-rs-sdk-test-v0.14.0) (2024-02-20)


103 changes: 74 additions & 29 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-rs-sdk-test"
version = "0.14.0"
version = "0.15.0"
description = "Backend SDK that allows testing modules for the Marine runtime"
documentation = "https://docs.rs/marine-rs-sdk-test"
repository = "https://github.com/fluencelabs/marine-rs-sdk-test"
@@ -21,9 +21,9 @@ doctest = false
trybuild = "1.0"

[dependencies]
marine-test-macro = { path = "crates/marine-test-macro", version = "=0.14.0" }
marine-build-rs-generator = { path = "crates/marine-build-rs-generator", version = "=0.14.0" }
fluence-app-service = { version = "0.33.0", features = ["raw-module-api"] }
marine-test-macro = { path = "crates/marine-test-macro", version = "=0.15.0" }
marine-build-rs-generator = { path = "crates/marine-build-rs-generator", version = "=0.15.0" }
fluence-app-service = { version = "0.34.0", features = ["raw-module-api"] }

serde = { version = "1.0.162", features = ["derive"] }
serde_json = "1.0.96"
4 changes: 2 additions & 2 deletions crates/marine-build-rs-generator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-build-rs-generator"
version = "0.14.0"
version = "0.15.0"
edition = "2018"
description = "Tools for generating marine_test_env in build scripts"
documentation = "https://docs.rs/marine-build-rs-generator"
@@ -17,4 +17,4 @@ all-features = true
doctest = false

[dependencies]
marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "=0.14.0" }
marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "=0.15.0" }
4 changes: 2 additions & 2 deletions crates/marine-test-macro-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-test-macro-impl"
version = "0.14.0"
version = "0.15.0"
edition = "2018"
description = "Implementation of the `#[marine_test]` macro"
documentation = "https://docs.rs/fluence/marine-test-macro-impl"
@@ -14,7 +14,7 @@ license = "Apache-2.0"
all-features = true

[dependencies]
fluence-app-service = { version = "0.33.0", features = ["raw-module-api"] }
fluence-app-service = { version = "0.34.0", features = ["raw-module-api"] }
marine-it-parser = "0.15.0"
itertools = "0.10.5"
darling = "0.20.1"
4 changes: 2 additions & 2 deletions crates/marine-test-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-test-macro"
version = "0.14.0"
version = "0.15.0"
edition = "2018"
description = "Definition of the `#[marine_test]` macro"
documentation = "https://docs.rs/fluence/marine-test-macro"
@@ -18,7 +18,7 @@ proc-macro = true
doctest = false

[dependencies]
marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "=0.14.0" }
marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "=0.15.0" }

quote = "1.0.26"
proc-macro2 = "1.0.69"
4 changes: 2 additions & 2 deletions examples/build_rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "build-rs-example"
version = "0.14.0"
version = "0.15.0"
authors = ["Fluence Labs"]
description = "The greeting module for the Fluence network"
repository = "https://github.com/fluencelabs/marine/tree/master/examples/build_rs"
@@ -12,7 +12,7 @@ name = "build_rs_test"
path = "src/main.rs"

[dependencies]
marine-rs-sdk = "0.13.0"
marine-rs-sdk = "0.14.0"

[dev-dependencies]
marine-rs-sdk-test = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/multi-service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "multi-service-example"
version = "0.14.0"
version = "0.15.0"
authors = ["Fluence Labs"]
edition = "2021"
publish = false
4 changes: 2 additions & 2 deletions examples/multi-service/consumer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "consumer"
version = "0.14.0"
version = "0.15.0"
authors = ["Fluence Labs"]
edition = "2021"
publish = false
@@ -10,4 +10,4 @@ name = "consumer"
path = "src/main.rs"

[dependencies]
marine-rs-sdk = "0.13.0"
marine-rs-sdk = "0.14.0"
Loading