chore(master): release marine-rs-sdk 0.9.0 (#128)

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

* chore: Bump version to 0.9.0
This commit is contained in:
fluencebot 2023-08-16 20:40:37 +03:00 committed by GitHub
parent add9b919ed
commit 4fb25f1818
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 32 additions and 21 deletions

View File

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

View File

@ -1,5 +1,16 @@
# Changelog
## [0.9.0](https://github.com/fluencelabs/marine-rs-sdk/compare/marine-rs-sdk-v0.8.1...marine-rs-sdk-v0.9.0) (2023-08-16)
### ⚠ BREAKING CHANGES
* move SecurityTetraplets from popyplets directly to marine-rs-sdk crate ([#127](https://github.com/fluencelabs/marine-rs-sdk/issues/127))
### Features
* move SecurityTetraplets from popyplets directly to marine-rs-sdk crate ([#127](https://github.com/fluencelabs/marine-rs-sdk/issues/127)) ([add9b91](https://github.com/fluencelabs/marine-rs-sdk/commit/add9b919edcefa06b67975170ea149d148911073))
## [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)

12
Cargo.lock generated
View File

@ -234,7 +234,7 @@ dependencies = [
[[package]]
name = "marine-macro"
version = "0.8.1"
version = "0.9.0"
dependencies = [
"marine-macro-impl",
"marine-rs-sdk-main",
@ -242,7 +242,7 @@ dependencies = [
[[package]]
name = "marine-macro-impl"
version = "0.8.1"
version = "0.9.0"
dependencies = [
"marine-macro-testing-utils",
"pretty_assertions",
@ -255,7 +255,7 @@ dependencies = [
[[package]]
name = "marine-macro-testing-utils"
version = "0.8.1"
version = "0.9.0"
dependencies = [
"proc-macro2",
"quote",
@ -264,7 +264,7 @@ dependencies = [
[[package]]
name = "marine-rs-sdk"
version = "0.8.1"
version = "0.9.0"
dependencies = [
"marine-macro",
"marine-rs-sdk-main",
@ -275,7 +275,7 @@ dependencies = [
[[package]]
name = "marine-rs-sdk-main"
version = "0.8.1"
version = "0.9.0"
dependencies = [
"lazy_static",
"log",
@ -285,7 +285,7 @@ dependencies = [
[[package]]
name = "marine-timestamp-macro"
version = "0.8.1"
version = "0.9.0"
dependencies = [
"chrono",
"quote",

View File

@ -1,6 +1,6 @@
[package]
name = "marine-rs-sdk"
version = "0.8.1"
version = "0.9.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.8.1" }
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.1" }
marine-macro = { path = "crates/marine-macro", version = "=0.9.0" }
marine-rs-sdk-main = { path = "crates/main", version = "=0.9.0" } # warning: silent compilation break on minor verison bump. See docs/update-guide.md for details
marine-timestamp-macro = { path = "crates/timestamp-macro", version = "=0.9.0" }
serde = { version = "1.0.155", features = ["derive"]}

View File

@ -1,6 +1,6 @@
[package]
name = "marine-macro-testing-utils"
version = "0.8.1"
version = "0.9.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.8.1"
version = "0.9.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.8.1")] // x-release-please-version
#![doc(html_root_url = "https://docs.rs/marine-rs-sdk-main/0.9.0")] // x-release-please-version
#![deny(
dead_code,
nonstandard_style,

View File

@ -1,6 +1,6 @@
[package]
name = "marine-macro-impl"
version = "0.8.1"
version = "0.9.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.8.1")] // x-release-please-version
#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.9.0")] // x-release-please-version
#![deny(
dead_code,
nonstandard_style,

View File

@ -1,6 +1,6 @@
[package]
name = "marine-macro"
version = "0.8.1"
version = "0.9.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.8.1" }
marine-rs-sdk-main = { path = "../main", version = "=0.8.1" }
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.9.0" }
marine-rs-sdk-main = { path = "../main", version = "=0.9.0" }

View File

@ -1,6 +1,6 @@
[package]
name = "marine-timestamp-macro"
version = "0.8.1"
version = "0.9.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.8.1")] // x-release-please-version
#![doc(html_root_url = "https://docs.rs/sdk/0.9.0")] // x-release-please-version
#![deny(
dead_code,
nonstandard_style,