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.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
|
||||
|
||||
## [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)
|
||||
|
||||
|
||||
|
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -234,7 +234,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "marine-call-parameters"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"marine-macro",
|
||||
"marine-rs-sdk-main",
|
||||
@ -243,7 +243,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "marine-macro"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"marine-macro-impl",
|
||||
"marine-rs-sdk-main",
|
||||
@ -251,7 +251,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "marine-macro-impl"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"marine-macro-testing-utils",
|
||||
"pretty_assertions",
|
||||
@ -264,7 +264,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "marine-macro-testing-utils"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@ -273,7 +273,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "marine-rs-sdk"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"marine-call-parameters",
|
||||
"marine-macro",
|
||||
@ -285,7 +285,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "marine-rs-sdk-main"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"lazy_static",
|
||||
"log",
|
||||
@ -295,7 +295,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "marine-timestamp-macro"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"quote",
|
||||
|
10
Cargo.toml
10
Cargo.toml
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "marine-rs-sdk"
|
||||
version = "0.9.0"
|
||||
version = "0.10.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.9.0" }
|
||||
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" }
|
||||
marine-call-parameters = { path = "crates/call-parameters", version = "=0.10.0" }
|
||||
marine-macro = { path = "crates/marine-macro", version = "=0.10.0" }
|
||||
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.10.0" }
|
||||
|
||||
serde = { version = "1.0.155", features = ["derive"]}
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "marine-call-parameters"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
edition = "2021"
|
||||
description = "Contains CallParameters and SecurityTetralets structures for marine-rs-sdk"
|
||||
documentation = "https://docs.rs/fluence"
|
||||
@ -14,8 +14,8 @@ license = "Apache-2.0"
|
||||
serde = "1.0.155"
|
||||
|
||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||
marine-macro = { path = "../marine-macro", version = "=0.9.0" }
|
||||
marine-rs-sdk-main = { path = "../main", version = "=0.9.0" }
|
||||
marine-macro = { path = "../marine-macro", version = "=0.10.0" }
|
||||
marine-rs-sdk-main = { path = "../main", version = "=0.10.0" }
|
||||
|
||||
[features]
|
||||
default = ["marine-abi"]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "marine-macro-testing-utils"
|
||||
version = "0.9.0"
|
||||
version = "0.10.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.9.0"
|
||||
version = "0.10.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.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(
|
||||
dead_code,
|
||||
nonstandard_style,
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "marine-macro-impl"
|
||||
version = "0.9.0"
|
||||
version = "0.10.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.9.0")] // x-release-please-version
|
||||
#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.10.0")] // x-release-please-version
|
||||
#![deny(
|
||||
dead_code,
|
||||
nonstandard_style,
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "marine-macro"
|
||||
version = "0.9.0"
|
||||
version = "0.10.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.9.0" }
|
||||
marine-rs-sdk-main = { path = "../main", version = "=0.9.0" }
|
||||
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.10.0" }
|
||||
marine-rs-sdk-main = { path = "../main", version = "=0.10.0" }
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "marine-timestamp-macro"
|
||||
version = "0.9.0"
|
||||
version = "0.10.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.9.0")] // x-release-please-version
|
||||
#![doc(html_root_url = "https://docs.rs/sdk/0.10.0")] // x-release-please-version
|
||||
#![deny(
|
||||
dead_code,
|
||||
nonstandard_style,
|
||||
|
Loading…
x
Reference in New Issue
Block a user