chore(master): release marine-rs-sdk 0.8.1 (#126)

* chore(master): release marine-rs-sdk 0.8.1

* chore: Bump version to 0.8.1
This commit is contained in:
fluencebot 2023-08-09 13:58:57 +03:00 committed by GitHub
parent 88897bac8b
commit 46c53330ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 57 additions and 50 deletions

View File

@ -1,3 +1,3 @@
{ {
".": "0.8.0" ".": "0.8.1"
} }

View File

@ -1,5 +1,12 @@
# Changelog # Changelog
## [0.8.1](https://github.com/fluencelabs/marine-rs-sdk/compare/marine-rs-sdk-v0.8.0...marine-rs-sdk-v0.8.1) (2023-08-09)
### Bug Fixes
* update polyplets to 0.4.0 as part of minor version update process ([#125](https://github.com/fluencelabs/marine-rs-sdk/issues/125)) ([88897ba](https://github.com/fluencelabs/marine-rs-sdk/commit/88897bac8b32311c2de2863afae3436a343e2b20))
## [0.8.0](https://github.com/fluencelabs/marine-rs-sdk/compare/marine-rs-sdk-v0.7.1...marine-rs-sdk-v0.8.0) (2023-07-24) ## [0.8.0](https://github.com/fluencelabs/marine-rs-sdk/compare/marine-rs-sdk-v0.7.1...marine-rs-sdk-v0.8.0) (2023-07-24)

70
Cargo.lock generated
View File

@ -235,6 +235,8 @@ dependencies = [
[[package]] [[package]]
name = "marine-macro" name = "marine-macro"
version = "0.8.0" version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f2928ba9662d0b60f757da8a9fb52f8a452b0c48143cdf20249bd33f607defa"
dependencies = [ dependencies = [
"marine-macro-impl 0.8.0", "marine-macro-impl 0.8.0",
"marine-rs-sdk-main 0.8.0", "marine-rs-sdk-main 0.8.0",
@ -242,25 +244,10 @@ dependencies = [
[[package]] [[package]]
name = "marine-macro" name = "marine-macro"
version = "0.8.0" version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f2928ba9662d0b60f757da8a9fb52f8a452b0c48143cdf20249bd33f607defa"
dependencies = [ dependencies = [
"marine-macro-impl 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "marine-macro-impl 0.8.1",
"marine-rs-sdk-main 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "marine-rs-sdk-main 0.8.1",
]
[[package]]
name = "marine-macro-impl"
version = "0.8.0"
dependencies = [
"marine-macro-testing-utils",
"pretty_assertions",
"proc-macro2",
"quote",
"serde",
"serde_json",
"syn 1.0.109",
] ]
[[package]] [[package]]
@ -276,9 +263,22 @@ dependencies = [
"syn 1.0.109", "syn 1.0.109",
] ]
[[package]]
name = "marine-macro-impl"
version = "0.8.1"
dependencies = [
"marine-macro-testing-utils",
"pretty_assertions",
"proc-macro2",
"quote",
"serde",
"serde_json",
"syn 1.0.109",
]
[[package]] [[package]]
name = "marine-macro-testing-utils" name = "marine-macro-testing-utils"
version = "0.8.0" version = "0.8.1"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -287,26 +287,16 @@ dependencies = [
[[package]] [[package]]
name = "marine-rs-sdk" name = "marine-rs-sdk"
version = "0.8.0" version = "0.8.1"
dependencies = [ dependencies = [
"marine-macro 0.8.0", "marine-macro 0.8.1",
"marine-rs-sdk-main 0.8.0", "marine-rs-sdk-main 0.8.1",
"marine-timestamp-macro", "marine-timestamp-macro",
"polyplets", "polyplets",
"serde", "serde",
"trybuild", "trybuild",
] ]
[[package]]
name = "marine-rs-sdk-main"
version = "0.8.0"
dependencies = [
"lazy_static",
"log",
"serde",
"simple_logger",
]
[[package]] [[package]]
name = "marine-rs-sdk-main" name = "marine-rs-sdk-main"
version = "0.8.0" version = "0.8.0"
@ -317,9 +307,19 @@ dependencies = [
"serde", "serde",
] ]
[[package]]
name = "marine-rs-sdk-main"
version = "0.8.1"
dependencies = [
"lazy_static",
"log",
"serde",
"simple_logger",
]
[[package]] [[package]]
name = "marine-timestamp-macro" name = "marine-timestamp-macro"
version = "0.8.0" version = "0.8.1"
dependencies = [ dependencies = [
"chrono", "chrono",
"quote", "quote",
@ -374,8 +374,8 @@ version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b579a79a461ca50abb202eac61c76d8782fdf091a91775c9e181352e7cd30a8b" checksum = "b579a79a461ca50abb202eac61c76d8782fdf091a91775c9e181352e7cd30a8b"
dependencies = [ dependencies = [
"marine-macro 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "marine-macro 0.8.0",
"marine-rs-sdk-main 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "marine-rs-sdk-main 0.8.0",
"serde", "serde",
] ]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "marine-rs-sdk" name = "marine-rs-sdk"
version = "0.8.0" version = "0.8.1"
description = "Fluence backend SDK for developing backend applications for the Fluence network" description = "Fluence backend SDK for developing backend applications for the Fluence network"
documentation = "https://docs.rs/fluence" documentation = "https://docs.rs/fluence"
repository = "https://github.com/fluencelabs/marine-rs-sdk" repository = "https://github.com/fluencelabs/marine-rs-sdk"
@ -18,9 +18,9 @@ path = "src/lib.rs"
doctest = false doctest = false
[dependencies] [dependencies]
marine-macro = { path = "crates/marine-macro", version = "=0.8.0" } marine-macro = { path = "crates/marine-macro", version = "=0.8.1" }
marine-rs-sdk-main = { path = "crates/main", version = "=0.8.0" } # warning: silent compilation break on minor verison bump. See docs/update-guide.md for details marine-rs-sdk-main = { path = "crates/main", version = "=0.8.1" } # warning: silent compilation break on minor verison bump. See docs/update-guide.md for details
marine-timestamp-macro = { path = "crates/timestamp-macro", version = "=0.8.0" } marine-timestamp-macro = { path = "crates/timestamp-macro", version = "=0.8.1" }
polyplets = "0.4.0" polyplets = "0.4.0"
serde = { version = "1.0.155", features = ["derive"]} serde = { version = "1.0.155", features = ["derive"]}

View File

@ -1,6 +1,6 @@
[package] [package]
name = "marine-macro-testing-utils" name = "marine-macro-testing-utils"
version = "0.8.0" version = "0.8.1"
edition = "2018" edition = "2018"
description = "Some functions for testing procedural macros" description = "Some functions for testing procedural macros"
documentation = "https://docs.rs/fluence/marine-macro-testing-utils" documentation = "https://docs.rs/fluence/marine-macro-testing-utils"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "marine-rs-sdk-main" name = "marine-rs-sdk-main"
version = "0.8.0" version = "0.8.1"
edition = "2018" edition = "2018"
description = "Contains logger, allocators and several other modules for marine-rs-sdk" description = "Contains logger, allocators and several other modules for marine-rs-sdk"
documentation = "https://docs.rs/marine-rs-sdk-main" documentation = "https://docs.rs/marine-rs-sdk-main"

View File

@ -19,7 +19,7 @@
#![allow(clippy::missing_safety_doc)] #![allow(clippy::missing_safety_doc)]
#![allow(clippy::needless_doctest_main)] #![allow(clippy::needless_doctest_main)]
#![doc(html_root_url = "https://docs.rs/marine-rs-sdk-main/0.8.0")] // x-release-please-version #![doc(html_root_url = "https://docs.rs/marine-rs-sdk-main/0.8.1")] // x-release-please-version
#![deny( #![deny(
dead_code, dead_code,
nonstandard_style, nonstandard_style,

View File

@ -1,6 +1,6 @@
[package] [package]
name = "marine-macro-impl" name = "marine-macro-impl"
version = "0.8.0" version = "0.8.1"
edition = "2018" edition = "2018"
description = "Implementation of the `#[marine]` macro" description = "Implementation of the `#[marine]` macro"
documentation = "https://docs.rs/fluence/marine-macro-impl" documentation = "https://docs.rs/fluence/marine-macro-impl"

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.8.0")] // x-release-please-version #![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.8.1")] // x-release-please-version
#![deny( #![deny(
dead_code, dead_code,
nonstandard_style, nonstandard_style,

View File

@ -1,6 +1,6 @@
[package] [package]
name = "marine-macro" name = "marine-macro"
version = "0.8.0" version = "0.8.1"
edition = "2018" edition = "2018"
description = "Definition of the `#[marine]` macro" description = "Definition of the `#[marine]` macro"
documentation = "https://docs.rs/fluence/marine-macro" documentation = "https://docs.rs/fluence/marine-macro"
@ -18,5 +18,5 @@ proc-macro = true
doctest = false doctest = false
[dependencies] [dependencies]
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.8.0" } marine-macro-impl = { path = "../marine-macro-impl", version = "=0.8.1" }
marine-rs-sdk-main = { path = "../main", version = "=0.8.0" } marine-rs-sdk-main = { path = "../main", version = "=0.8.1" }

View File

@ -1,6 +1,6 @@
[package] [package]
name = "marine-timestamp-macro" name = "marine-timestamp-macro"
version = "0.8.0" version = "0.8.1"
edition = "2018" edition = "2018"
description = "Definition of the `#[build_timestamp]` macro" description = "Definition of the `#[build_timestamp]` macro"
documentation = "https://docs.rs/fluence/marine-timestamp-macro" documentation = "https://docs.rs/fluence/marine-timestamp-macro"

View File

@ -55,7 +55,7 @@
//! pub fn curl_get(url: String) -> String; //! pub fn curl_get(url: String) -> String;
//! } //! }
//! ``` //! ```
#![doc(html_root_url = "https://docs.rs/sdk/0.8.0")] // x-release-please-version #![doc(html_root_url = "https://docs.rs/sdk/0.8.1")] // x-release-please-version
#![deny( #![deny(
dead_code, dead_code,
nonstandard_style, nonstandard_style,