chore(master): release marine-rs-sdk 0.8.0 (#122)

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

* chore: Bump version to 0.8.0
This commit is contained in:
fluencebot 2023-07-24 17:10:47 +03:00 committed by GitHub
parent 2816debc18
commit 56f4b4d61e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 62 additions and 50 deletions

View File

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

12
CHANGELOG.md Normal file
View File

@ -0,0 +1,12 @@
# Changelog
## [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)
### ⚠ BREAKING CHANGES
* allow field attibutes ([#121](https://github.com/fluencelabs/marine-rs-sdk/issues/121))
### Features
* allow field attibutes ([#121](https://github.com/fluencelabs/marine-rs-sdk/issues/121)) ([7a39cd3](https://github.com/fluencelabs/marine-rs-sdk/commit/7a39cd35ada38a8c38e0b1643e88d0f1601a5030))

70
Cargo.lock generated
View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "marine-rs-sdk"
version = "0.7.1"
version = "0.8.0"
description = "Fluence backend SDK for developing backend applications for the Fluence network"
documentation = "https://docs.rs/fluence"
repository = "https://github.com/fluencelabs/marine-rs-sdk"
@ -18,9 +18,9 @@ path = "src/lib.rs"
doctest = false
[dependencies]
marine-macro = { path = "crates/marine-macro", version = "=0.7.1" }
marine-rs-sdk-main = { path = "crates/main", version = "=0.7.1" }
marine-timestamp-macro = { path = "crates/timestamp-macro", version = "=0.7.1" }
marine-macro = { path = "crates/marine-macro", version = "=0.8.0" }
marine-rs-sdk-main = { path = "crates/main", version = "=0.8.0" }
marine-timestamp-macro = { path = "crates/timestamp-macro", version = "=0.8.0" }
polyplets = "0.3.2"
serde = { version = "1.0.155", features = ["derive"]}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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