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(master): release marine-rs-sdk-test 0.10.2 #94

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
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.10.1"
".": "0.10.2"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.10.2](https://github.com/fluencelabs/marine-rs-sdk-test/compare/marine-rs-sdk-test-v0.10.1...marine-rs-sdk-test-v0.10.2) (2023-08-09)


### Features

* update marine runtime ([#93](https://github.com/fluencelabs/marine-rs-sdk-test/issues/93)) ([749429d](https://github.com/fluencelabs/marine-rs-sdk-test/commit/749429ddcbc890808a20235530ddd32e61d4dd5d))

## [0.10.1](https://github.com/fluencelabs/marine-rs-sdk-test/compare/marine-rs-sdk-test-v0.10.0...marine-rs-sdk-test-v0.10.1) (2023-08-07)


Expand Down
184 changes: 19 additions & 165 deletions Cargo.lock

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

6 changes: 3 additions & 3 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.10.0"
version = "0.10.2"
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"
Expand All @@ -21,8 +21,8 @@ doctest = false
trybuild = "1.0"

[dependencies]
marine-test-macro = { path = "crates/marine-test-macro", version = "=0.10.0" }
marine-build-rs-generator = { path = "crates/marine-build-rs-generator", version = "=0.10.0" }
marine-test-macro = { path = "crates/marine-test-macro", version = "=0.10.2" }
marine-build-rs-generator = { path = "crates/marine-build-rs-generator", version = "=0.10.2" }
fluence-app-service = { version = "0.28.0", features = ["raw-module-api"] }

serde = { version = "1.0.162", features = ["derive"] }
Expand Down
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.10.0"
version = "0.10.2"
edition = "2018"
description = "Tools for generating marine_test_env in build scripts"
documentation = "https://docs.rs/marine-build-rs-generator"
Expand All @@ -17,4 +17,4 @@ all-features = true
doctest = false

[dependencies]
marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "=0.10.0" }
marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "=0.10.2" }
2 changes: 1 addition & 1 deletion 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.10.0"
version = "0.10.2"
edition = "2018"
description = "Implementation of the `#[marine_test]` macro"
documentation = "https://docs.rs/fluence/marine-test-macro-impl"
Expand Down
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.10.0"
version = "0.10.2"
edition = "2018"
description = "Definition of the `#[marine_test]` macro"
documentation = "https://docs.rs/fluence/marine-test-macro"
Expand All @@ -18,7 +18,7 @@ proc-macro = true
doctest = false

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

quote = "1.0.26"
proc-macro2 = "1.0.56"
Expand Down
Loading