Skip to content

Commit

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

* chore: Bump version to 0.10.1
  • Loading branch information
fluencebot authored Oct 24, 2023
1 parent c43e16e commit d199333
Show file tree
Hide file tree
Showing 13 changed files with 39 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.0"
".": "0.10.1"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

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


### Features

* **deps:** update rust crate chrono to 0.4.31 ([#119](https://github.com/fluencelabs/marine-rs-sdk/issues/119)) ([69d04d1](https://github.com/fluencelabs/marine-rs-sdk/commit/69d04d1cbd80068aa5bb4cb5aeb7d09d0349c4f3))
* **deps:** update rust crate log to 0.4.20 ([#118](https://github.com/fluencelabs/marine-rs-sdk/issues/118)) ([b08bcf1](https://github.com/fluencelabs/marine-rs-sdk/commit/b08bcf1bd183667e636f3033cf51d6fd6328a7b8))
* **deps:** update rust crate pretty_assertions to 1.4.0 ([#137](https://github.com/fluencelabs/marine-rs-sdk/issues/137)) ([00f745f](https://github.com/fluencelabs/marine-rs-sdk/commit/00f745fa157a0105f4c32875079ed34c040c221f))
* **deps:** update rust crate proc-macro2 to 1.0.69 ([#111](https://github.com/fluencelabs/marine-rs-sdk/issues/111)) ([7cd6d86](https://github.com/fluencelabs/marine-rs-sdk/commit/7cd6d867830a44763b26470a0ac37f8f61e8d3e7))
* **deps:** update rust crate quote to 1.0.33 ([0e4cb4b](https://github.com/fluencelabs/marine-rs-sdk/commit/0e4cb4b1f2742095d1f42ee08b2110553100fb8b))
* **deps:** update rust crate serde to 1.0.189 ([#136](https://github.com/fluencelabs/marine-rs-sdk/issues/136)) ([9827098](https://github.com/fluencelabs/marine-rs-sdk/commit/9827098735b0e01288acc844ebceae35ea5ef96b))
* **deps:** update rust crate serde_json to 1.0.107 ([#117](https://github.com/fluencelabs/marine-rs-sdk/issues/117)) ([513a80a](https://github.com/fluencelabs/marine-rs-sdk/commit/513a80aa153cb61a0da133aba734b7a5ba700fab))

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


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.0"
version = "0.10.1"
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.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" }
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" }

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.0"
version = "0.10.1"
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.0" }
marine-rs-sdk-main = { path = "../main", version = "=0.10.0" }
marine-macro = { path = "../marine-macro", version = "=0.10.1" }
marine-rs-sdk-main = { path = "../main", version = "=0.10.1" }

[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.0"
version = "0.10.1"
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.0"
version = "0.10.1"
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.0")] // x-release-please-version
#![doc(html_root_url = "https://docs.rs/marine-rs-sdk-main/0.10.1")] // 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.0"
version = "0.10.1"
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.0")] // x-release-please-version
#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.10.1")] // 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.0"
version = "0.10.1"
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.0" }
marine-rs-sdk-main = { path = "../main", version = "=0.10.0" }
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.10.1" }
marine-rs-sdk-main = { path = "../main", version = "=0.10.1" }
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.0"
version = "0.10.1"
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.0")] // x-release-please-version
#![doc(html_root_url = "https://docs.rs/sdk/0.10.1")] // x-release-please-version
#![deny(
dead_code,
nonstandard_style,
Expand Down

0 comments on commit d199333

Please sign in to comment.