mirror of
https://github.com/fluencelabs/marine-rs-sdk
synced 2025-03-14 22:10:49 +00:00
chore(master): release marine-rs-sdk 0.10.3 (#149)
* chore(master): release marine-rs-sdk 0.10.3 * chore: Bump version to 0.10.3
This commit is contained in:
parent
22863bc94f
commit
e112719b24
2
.github/release-please/manifest.json
vendored
2
.github/release-please/manifest.json
vendored
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
".": "0.10.2"
|
".": "0.10.3"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.10.3](https://github.com/fluencelabs/marine-rs-sdk/compare/marine-rs-sdk-v0.10.2...marine-rs-sdk-v0.10.3) (2023-12-27)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **call-parameters:** optional rkyv support ([#148](https://github.com/fluencelabs/marine-rs-sdk/issues/148)) ([22863bc](https://github.com/fluencelabs/marine-rs-sdk/commit/22863bc94f620fcd9fee4dc1476a71248cc94963))
|
||||||
|
|
||||||
## [0.10.2](https://github.com/fluencelabs/marine-rs-sdk/compare/marine-rs-sdk-v0.10.1...marine-rs-sdk-v0.10.2) (2023-12-12)
|
## [0.10.2](https://github.com/fluencelabs/marine-rs-sdk/compare/marine-rs-sdk-v0.10.1...marine-rs-sdk-v0.10.2) (2023-12-12)
|
||||||
|
|
||||||
|
|
||||||
|
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -303,7 +303,7 @@ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "marine-call-parameters"
|
name = "marine-call-parameters"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"marine-macro",
|
"marine-macro",
|
||||||
"marine-rs-sdk-main",
|
"marine-rs-sdk-main",
|
||||||
@ -313,7 +313,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "marine-macro"
|
name = "marine-macro"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"marine-macro-impl",
|
"marine-macro-impl",
|
||||||
"marine-rs-sdk-main",
|
"marine-rs-sdk-main",
|
||||||
@ -321,7 +321,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "marine-macro-impl"
|
name = "marine-macro-impl"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"marine-macro-testing-utils",
|
"marine-macro-testing-utils",
|
||||||
"pretty_assertions",
|
"pretty_assertions",
|
||||||
@ -334,7 +334,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "marine-macro-testing-utils"
|
name = "marine-macro-testing-utils"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
@ -343,7 +343,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "marine-rs-sdk"
|
name = "marine-rs-sdk"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"marine-call-parameters",
|
"marine-call-parameters",
|
||||||
"marine-macro",
|
"marine-macro",
|
||||||
@ -355,7 +355,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "marine-rs-sdk-main"
|
name = "marine-rs-sdk-main"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"log",
|
"log",
|
||||||
@ -365,7 +365,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "marine-timestamp-macro"
|
name = "marine-timestamp-macro"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"quote",
|
"quote",
|
||||||
|
10
Cargo.toml
10
Cargo.toml
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "marine-rs-sdk"
|
name = "marine-rs-sdk"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
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,10 +18,10 @@ path = "src/lib.rs"
|
|||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
marine-call-parameters = { path = "crates/call-parameters", version = "=0.10.2" }
|
marine-call-parameters = { path = "crates/call-parameters", version = "=0.10.3" }
|
||||||
marine-macro = { path = "crates/marine-macro", version = "=0.10.2" }
|
marine-macro = { path = "crates/marine-macro", version = "=0.10.3" }
|
||||||
marine-rs-sdk-main = { path = "crates/main", version = "=0.10.2" } # warning: silent compilation break on minor verison bump. See docs/update-guide.md for details
|
marine-rs-sdk-main = { path = "crates/main", version = "=0.10.3" } # warning: silent compilation break on minor verison bump. See docs/update-guide.md for details
|
||||||
marine-timestamp-macro = { path = "crates/timestamp-macro", version = "=0.10.2" }
|
marine-timestamp-macro = { path = "crates/timestamp-macro", version = "=0.10.3" }
|
||||||
|
|
||||||
serde = { version = "1.0.189", features = ["derive"]}
|
serde = { version = "1.0.189", features = ["derive"]}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "marine-call-parameters"
|
name = "marine-call-parameters"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Contains CallParameters and SecurityTetralets structures for marine-rs-sdk"
|
description = "Contains CallParameters and SecurityTetralets structures for marine-rs-sdk"
|
||||||
documentation = "https://docs.rs/fluence"
|
documentation = "https://docs.rs/fluence"
|
||||||
@ -15,8 +15,8 @@ rkyv = { version = "0.7.43", features = ["validation", "strict"], optional = tru
|
|||||||
serde = "1.0.189"
|
serde = "1.0.189"
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
marine-macro = { path = "../marine-macro", version = "=0.10.2" }
|
marine-macro = { path = "../marine-macro", version = "=0.10.3" }
|
||||||
marine-rs-sdk-main = { path = "../main", version = "=0.10.2" }
|
marine-rs-sdk-main = { path = "../main", version = "=0.10.3" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["marine-abi"]
|
default = ["marine-abi"]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "marine-macro-testing-utils"
|
name = "marine-macro-testing-utils"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
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"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "marine-rs-sdk-main"
|
name = "marine-rs-sdk-main"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
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"
|
||||||
|
@ -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.10.2")] // x-release-please-version
|
#![doc(html_root_url = "https://docs.rs/marine-rs-sdk-main/0.10.3")] // x-release-please-version
|
||||||
#![deny(
|
#![deny(
|
||||||
dead_code,
|
dead_code,
|
||||||
nonstandard_style,
|
nonstandard_style,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "marine-macro-impl"
|
name = "marine-macro-impl"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
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"
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.10.2")] // x-release-please-version
|
#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.10.3")] // x-release-please-version
|
||||||
#![deny(
|
#![deny(
|
||||||
dead_code,
|
dead_code,
|
||||||
nonstandard_style,
|
nonstandard_style,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "marine-macro"
|
name = "marine-macro"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
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.10.2" }
|
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.10.3" }
|
||||||
marine-rs-sdk-main = { path = "../main", version = "=0.10.2" }
|
marine-rs-sdk-main = { path = "../main", version = "=0.10.3" }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "marine-timestamp-macro"
|
name = "marine-timestamp-macro"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
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"
|
||||||
|
@ -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.10.2")] // x-release-please-version
|
#![doc(html_root_url = "https://docs.rs/sdk/0.10.3")] // x-release-please-version
|
||||||
#![deny(
|
#![deny(
|
||||||
dead_code,
|
dead_code,
|
||||||
nonstandard_style,
|
nonstandard_style,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user