mirror of
https://github.com/fluencelabs/marine-rs-sdk
synced 2025-03-14 14:00:49 +00:00
chore(master): release marine-rs-sdk 0.11.0 (#153)
* chore(master): release marine-rs-sdk 0.11.0 * chore: Bump version to 0.11.0
This commit is contained in:
parent
3bdf0c242a
commit
911a08fffe
2
.github/release-please/manifest.json
vendored
2
.github/release-please/manifest.json
vendored
@ -1,3 +1,3 @@
|
||||
{
|
||||
".": "0.10.3"
|
||||
".": "0.11.0"
|
||||
}
|
||||
|
11
CHANGELOG.md
11
CHANGELOG.md
@ -1,5 +1,16 @@
|
||||
# Changelog
|
||||
|
||||
## [0.11.0](https://github.com/fluencelabs/marine-rs-sdk/compare/marine-rs-sdk-v0.10.3...marine-rs-sdk-v0.11.0) (2024-02-05)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* **ABI, call-parameters:** add worker_id field into CallParameters ([#151](https://github.com/fluencelabs/marine-rs-sdk/issues/151))
|
||||
|
||||
### Features
|
||||
|
||||
* **ABI, call-parameters:** add worker_id field into CallParameters ([#151](https://github.com/fluencelabs/marine-rs-sdk/issues/151)) ([3bdf0c2](https://github.com/fluencelabs/marine-rs-sdk/commit/3bdf0c242aa1da62be319f2131b9c14e396d23f9))
|
||||
|
||||
## [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)
|
||||
|
||||
|
||||
|
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -303,7 +303,7 @@ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
||||
|
||||
[[package]]
|
||||
name = "marine-call-parameters"
|
||||
version = "0.10.3"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"marine-macro",
|
||||
"marine-rs-sdk-main",
|
||||
@ -313,7 +313,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "marine-macro"
|
||||
version = "0.10.3"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"marine-macro-impl",
|
||||
"marine-rs-sdk-main",
|
||||
@ -321,7 +321,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "marine-macro-impl"
|
||||
version = "0.10.3"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"marine-macro-testing-utils",
|
||||
"pretty_assertions",
|
||||
@ -334,7 +334,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "marine-macro-testing-utils"
|
||||
version = "0.10.3"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@ -343,7 +343,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "marine-rs-sdk"
|
||||
version = "0.10.3"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"marine-call-parameters",
|
||||
"marine-macro",
|
||||
@ -355,7 +355,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "marine-rs-sdk-main"
|
||||
version = "0.10.3"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"lazy_static",
|
||||
"log",
|
||||
@ -365,7 +365,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "marine-timestamp-macro"
|
||||
version = "0.10.3"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"quote",
|
||||
|
10
Cargo.toml
10
Cargo.toml
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "marine-rs-sdk"
|
||||
version = "0.10.3"
|
||||
version = "0.11.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,10 +18,10 @@ path = "src/lib.rs"
|
||||
doctest = false
|
||||
|
||||
[dependencies]
|
||||
marine-call-parameters = { path = "crates/call-parameters", version = "=0.10.3" }
|
||||
marine-macro = { path = "crates/marine-macro", version = "=0.10.3" }
|
||||
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.3" }
|
||||
marine-call-parameters = { path = "crates/call-parameters", version = "=0.11.0" }
|
||||
marine-macro = { path = "crates/marine-macro", version = "=0.11.0" }
|
||||
marine-rs-sdk-main = { path = "crates/main", version = "=0.11.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.11.0" }
|
||||
|
||||
serde = { version = "1.0.189", features = ["derive"]}
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "marine-call-parameters"
|
||||
version = "0.10.3"
|
||||
version = "0.11.0"
|
||||
edition = "2021"
|
||||
description = "Contains CallParameters and SecurityTetralets structures for marine-rs-sdk"
|
||||
documentation = "https://docs.rs/fluence"
|
||||
@ -15,8 +15,8 @@ rkyv = { version = "0.7.43", features = ["validation", "strict"], optional = tru
|
||||
serde = "1.0.189"
|
||||
|
||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||
marine-macro = { path = "../marine-macro", version = "=0.10.3" }
|
||||
marine-rs-sdk-main = { path = "../main", version = "=0.10.3" }
|
||||
marine-macro = { path = "../marine-macro", version = "=0.11.0" }
|
||||
marine-rs-sdk-main = { path = "../main", version = "=0.11.0" }
|
||||
|
||||
[features]
|
||||
default = ["marine-abi"]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "marine-macro-testing-utils"
|
||||
version = "0.10.3"
|
||||
version = "0.11.0"
|
||||
edition = "2018"
|
||||
description = "Some functions for testing procedural macros"
|
||||
documentation = "https://docs.rs/fluence/marine-macro-testing-utils"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "marine-rs-sdk-main"
|
||||
version = "0.10.3"
|
||||
version = "0.11.0"
|
||||
edition = "2018"
|
||||
description = "Contains logger, allocators and several other modules for marine-rs-sdk"
|
||||
documentation = "https://docs.rs/marine-rs-sdk-main"
|
||||
|
@ -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.10.3")] // x-release-please-version
|
||||
#![doc(html_root_url = "https://docs.rs/marine-rs-sdk-main/0.11.0")] // x-release-please-version
|
||||
#![deny(
|
||||
dead_code,
|
||||
nonstandard_style,
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "marine-macro-impl"
|
||||
version = "0.10.3"
|
||||
version = "0.11.0"
|
||||
edition = "2018"
|
||||
description = "Implementation of the `#[marine]` macro"
|
||||
documentation = "https://docs.rs/fluence/marine-macro-impl"
|
||||
|
@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.10.3")] // x-release-please-version
|
||||
#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.11.0")] // x-release-please-version
|
||||
#![deny(
|
||||
dead_code,
|
||||
nonstandard_style,
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "marine-macro"
|
||||
version = "0.10.3"
|
||||
version = "0.11.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.10.3" }
|
||||
marine-rs-sdk-main = { path = "../main", version = "=0.10.3" }
|
||||
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.11.0" }
|
||||
marine-rs-sdk-main = { path = "../main", version = "=0.11.0" }
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "marine-timestamp-macro"
|
||||
version = "0.10.3"
|
||||
version = "0.11.0"
|
||||
edition = "2018"
|
||||
description = "Definition of the `#[build_timestamp]` macro"
|
||||
documentation = "https://docs.rs/fluence/marine-timestamp-macro"
|
||||
|
@ -55,7 +55,7 @@
|
||||
//! pub fn curl_get(url: String) -> String;
|
||||
//! }
|
||||
//! ```
|
||||
#![doc(html_root_url = "https://docs.rs/sdk/0.10.3")] // x-release-please-version
|
||||
#![doc(html_root_url = "https://docs.rs/sdk/0.11.0")] // x-release-please-version
|
||||
#![deny(
|
||||
dead_code,
|
||||
nonstandard_style,
|
||||
|
Loading…
x
Reference in New Issue
Block a user