Skip to content

Commit

Permalink
chore(master): release marine-rs-sdk 0.10.2 (#147)
Browse files Browse the repository at this point in the history
* chore(master): release marine-rs-sdk 0.10.2

* chore: Bump version to 0.10.2
  • Loading branch information
fluencebot authored Dec 12, 2023
1 parent d3cade9 commit 337e677
Show file tree
Hide file tree
Showing 13 changed files with 33 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.10.1"
".": "0.10.2"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [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)


### Bug Fixes

* **ABI:** use correct empty string/vector representation ([#146](https://github.com/fluencelabs/marine-rs-sdk/issues/146)) ([d3cade9](https://github.com/fluencelabs/marine-rs-sdk/commit/d3cade98f8555cb31907d890a91c87bb53ee9c18))

## [0.10.1](https://github.com/fluencelabs/marine-rs-sdk/compare/marine-rs-sdk-v0.10.0...marine-rs-sdk-v0.10.1) (2023-10-24)


Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-rs-sdk"
version = "0.10.1"
version = "0.10.2"
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"
Expand All @@ -18,10 +18,10 @@ path = "src/lib.rs"
doctest = false

[dependencies]
marine-call-parameters = { path = "crates/call-parameters", version = "=0.10.1" }
marine-macro = { path = "crates/marine-macro", version = "=0.10.1" }
marine-rs-sdk-main = { path = "crates/main", version = "=0.10.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.10.1" }
marine-call-parameters = { path = "crates/call-parameters", version = "=0.10.2" }
marine-macro = { path = "crates/marine-macro", version = "=0.10.2" }
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-timestamp-macro = { path = "crates/timestamp-macro", version = "=0.10.2" }

serde = { version = "1.0.189", features = ["derive"]}

Expand Down
6 changes: 3 additions & 3 deletions crates/call-parameters/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-call-parameters"
version = "0.10.1"
version = "0.10.2"
edition = "2021"
description = "Contains CallParameters and SecurityTetralets structures for marine-rs-sdk"
documentation = "https://docs.rs/fluence"
Expand All @@ -14,8 +14,8 @@ license = "Apache-2.0"
serde = "1.0.189"

[target.'cfg(target_arch = "wasm32")'.dependencies]
marine-macro = { path = "../marine-macro", version = "=0.10.1" }
marine-rs-sdk-main = { path = "../main", version = "=0.10.1" }
marine-macro = { path = "../marine-macro", version = "=0.10.2" }
marine-rs-sdk-main = { path = "../main", version = "=0.10.2" }

[features]
default = ["marine-abi"]
Expand Down
2 changes: 1 addition & 1 deletion crates/macro-testing-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-macro-testing-utils"
version = "0.10.1"
version = "0.10.2"
edition = "2018"
description = "Some functions for testing procedural macros"
documentation = "https://docs.rs/fluence/marine-macro-testing-utils"
Expand Down
2 changes: 1 addition & 1 deletion crates/main/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-rs-sdk-main"
version = "0.10.1"
version = "0.10.2"
edition = "2018"
description = "Contains logger, allocators and several other modules for marine-rs-sdk"
documentation = "https://docs.rs/marine-rs-sdk-main"
Expand Down
2 changes: 1 addition & 1 deletion crates/main/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.1")] // x-release-please-version
#![doc(html_root_url = "https://docs.rs/marine-rs-sdk-main/0.10.2")] // x-release-please-version
#![deny(
dead_code,
nonstandard_style,
Expand Down
2 changes: 1 addition & 1 deletion crates/marine-macro-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-macro-impl"
version = "0.10.1"
version = "0.10.2"
edition = "2018"
description = "Implementation of the `#[marine]` macro"
documentation = "https://docs.rs/fluence/marine-macro-impl"
Expand Down
2 changes: 1 addition & 1 deletion crates/marine-macro-impl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.10.1")] // x-release-please-version
#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.10.2")] // x-release-please-version
#![deny(
dead_code,
nonstandard_style,
Expand Down
6 changes: 3 additions & 3 deletions crates/marine-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-macro"
version = "0.10.1"
version = "0.10.2"
edition = "2018"
description = "Definition of the `#[marine]` macro"
documentation = "https://docs.rs/fluence/marine-macro"
Expand All @@ -18,5 +18,5 @@ proc-macro = true
doctest = false

[dependencies]
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.10.1" }
marine-rs-sdk-main = { path = "../main", version = "=0.10.1" }
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.10.2" }
marine-rs-sdk-main = { path = "../main", version = "=0.10.2" }
2 changes: 1 addition & 1 deletion crates/timestamp-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "marine-timestamp-macro"
version = "0.10.1"
version = "0.10.2"
edition = "2018"
description = "Definition of the `#[build_timestamp]` macro"
documentation = "https://docs.rs/fluence/marine-timestamp-macro"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
//! pub fn curl_get(url: String) -> String;
//! }
//! ```
#![doc(html_root_url = "https://docs.rs/sdk/0.10.1")] // x-release-please-version
#![doc(html_root_url = "https://docs.rs/sdk/0.10.2")] // x-release-please-version
#![deny(
dead_code,
nonstandard_style,
Expand Down

0 comments on commit 337e677

Please sign in to comment.