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.0 (#134)
* chore(master): release marine-rs-sdk 0.10.0 * chore: Bump version to 0.10.0
This commit is contained in:
parent
b55f05a15c
commit
3e64ad7be7
2
.github/release-please/manifest.json
vendored
2
.github/release-please/manifest.json
vendored
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
".": "0.9.0"
|
".": "0.10.0"
|
||||||
}
|
}
|
||||||
|
11
CHANGELOG.md
11
CHANGELOG.md
@ -1,5 +1,16 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.10.0](https://github.com/fluencelabs/marine-rs-sdk/compare/marine-rs-sdk-v0.9.0...marine-rs-sdk-v0.10.0) (2023-09-13)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* hide marine ABI exports under `marine-abi` feature ([#129](https://github.com/fluencelabs/marine-rs-sdk/issues/129))
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* hide marine ABI exports under `marine-abi` feature ([#129](https://github.com/fluencelabs/marine-rs-sdk/issues/129)) ([7059e84](https://github.com/fluencelabs/marine-rs-sdk/commit/7059e84635819925b7f84e5b61260037f2ceb265))
|
||||||
|
|
||||||
## [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)
|
## [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)
|
||||||
|
|
||||||
|
|
||||||
|
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -234,7 +234,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "marine-call-parameters"
|
name = "marine-call-parameters"
|
||||||
version = "0.9.0"
|
version = "0.10.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"marine-macro",
|
"marine-macro",
|
||||||
"marine-rs-sdk-main",
|
"marine-rs-sdk-main",
|
||||||
@ -243,7 +243,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "marine-macro"
|
name = "marine-macro"
|
||||||
version = "0.9.0"
|
version = "0.10.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"marine-macro-impl",
|
"marine-macro-impl",
|
||||||
"marine-rs-sdk-main",
|
"marine-rs-sdk-main",
|
||||||
@ -251,7 +251,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "marine-macro-impl"
|
name = "marine-macro-impl"
|
||||||
version = "0.9.0"
|
version = "0.10.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"marine-macro-testing-utils",
|
"marine-macro-testing-utils",
|
||||||
"pretty_assertions",
|
"pretty_assertions",
|
||||||
@ -264,7 +264,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "marine-macro-testing-utils"
|
name = "marine-macro-testing-utils"
|
||||||
version = "0.9.0"
|
version = "0.10.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
@ -273,7 +273,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "marine-rs-sdk"
|
name = "marine-rs-sdk"
|
||||||
version = "0.9.0"
|
version = "0.10.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"marine-call-parameters",
|
"marine-call-parameters",
|
||||||
"marine-macro",
|
"marine-macro",
|
||||||
@ -285,7 +285,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "marine-rs-sdk-main"
|
name = "marine-rs-sdk-main"
|
||||||
version = "0.9.0"
|
version = "0.10.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"log",
|
"log",
|
||||||
@ -295,7 +295,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "marine-timestamp-macro"
|
name = "marine-timestamp-macro"
|
||||||
version = "0.9.0"
|
version = "0.10.0"
|
||||||
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.9.0"
|
version = "0.10.0"
|
||||||
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.9.0" }
|
marine-call-parameters = { path = "crates/call-parameters", version = "=0.10.0" }
|
||||||
marine-macro = { path = "crates/marine-macro", version = "=0.9.0" }
|
marine-macro = { path = "crates/marine-macro", version = "=0.10.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-rs-sdk-main = { path = "crates/main", version = "=0.10.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" }
|
marine-timestamp-macro = { path = "crates/timestamp-macro", version = "=0.10.0" }
|
||||||
|
|
||||||
serde = { version = "1.0.155", features = ["derive"]}
|
serde = { version = "1.0.155", features = ["derive"]}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "marine-call-parameters"
|
name = "marine-call-parameters"
|
||||||
version = "0.9.0"
|
version = "0.10.0"
|
||||||
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"
|
||||||
@ -14,8 +14,8 @@ license = "Apache-2.0"
|
|||||||
serde = "1.0.155"
|
serde = "1.0.155"
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
marine-macro = { path = "../marine-macro", version = "=0.9.0" }
|
marine-macro = { path = "../marine-macro", version = "=0.10.0" }
|
||||||
marine-rs-sdk-main = { path = "../main", version = "=0.9.0" }
|
marine-rs-sdk-main = { path = "../main", version = "=0.10.0" }
|
||||||
|
|
||||||
[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.9.0"
|
version = "0.10.0"
|
||||||
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.9.0"
|
version = "0.10.0"
|
||||||
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.9.0")] // x-release-please-version
|
#![doc(html_root_url = "https://docs.rs/marine-rs-sdk-main/0.10.0")] // 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.9.0"
|
version = "0.10.0"
|
||||||
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.9.0")] // x-release-please-version
|
#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.10.0")] // 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.9.0"
|
version = "0.10.0"
|
||||||
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.9.0" }
|
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.10.0" }
|
||||||
marine-rs-sdk-main = { path = "../main", version = "=0.9.0" }
|
marine-rs-sdk-main = { path = "../main", version = "=0.10.0" }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "marine-timestamp-macro"
|
name = "marine-timestamp-macro"
|
||||||
version = "0.9.0"
|
version = "0.10.0"
|
||||||
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.9.0")] // x-release-please-version
|
#![doc(html_root_url = "https://docs.rs/sdk/0.10.0")] // x-release-please-version
|
||||||
#![deny(
|
#![deny(
|
||||||
dead_code,
|
dead_code,
|
||||||
nonstandard_style,
|
nonstandard_style,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user