Skip to content

Commit

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

* chore: Bump version to 0.14.0
  • Loading branch information
fluencebot authored Feb 21, 2024
1 parent 9bb739a commit d94bf3a
Show file tree
Hide file tree
Showing 13 changed files with 37 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.13.0"
".": "0.14.0"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.14.0](https://github.com/fluencelabs/marine-rs-sdk/compare/marine-rs-sdk-v0.13.0...marine-rs-sdk-v0.14.0) (2024-02-21)


### ⚠ BREAKING CHANGES

* rename lambda to lens ([#159](https://github.com/fluencelabs/marine-rs-sdk/issues/159))

### Features

* rename lambda to lens ([#159](https://github.com/fluencelabs/marine-rs-sdk/issues/159)) ([9bb739a](https://github.com/fluencelabs/marine-rs-sdk/commit/9bb739a6e733cbaef2ab850dfd6d890b478342b5))

## [0.13.0](https://github.com/fluencelabs/marine-rs-sdk/compare/marine-rs-sdk-v0.12.0...marine-rs-sdk-v0.13.0) (2024-02-20)


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.13.0"
version = "0.14.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"
Expand All @@ -18,10 +18,10 @@ path = "src/lib.rs"
doctest = false

[dependencies]
marine-call-parameters = { path = "crates/call-parameters", version = "=0.13.0" }
marine-macro = { path = "crates/marine-macro", version = "=0.13.0" }
marine-rs-sdk-main = { path = "crates/main", version = "=0.13.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.13.0" }
marine-call-parameters = { path = "crates/call-parameters", version = "=0.14.0" }
marine-macro = { path = "crates/marine-macro", version = "=0.14.0" }
marine-rs-sdk-main = { path = "crates/main", version = "=0.14.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.14.0" }

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.13.0"
version = "0.14.0"
edition = "2021"
description = "Contains CallParameters and SecurityTetralets structures for marine-rs-sdk"
documentation = "https://docs.rs/fluence"
Expand All @@ -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.13.0" }
marine-rs-sdk-main = { path = "../main", version = "=0.13.0" }
marine-macro = { path = "../marine-macro", version = "=0.14.0" }
marine-rs-sdk-main = { path = "../main", version = "=0.14.0" }

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

0 comments on commit d94bf3a

Please sign in to comment.