From 131d555d75203abfc7f84cf650c76d9202add7f3 Mon Sep 17 00:00:00 2001 From: vms Date: Mon, 1 Mar 2021 14:43:33 +0300 Subject: [PATCH] bump crates --- Cargo.toml | 6 +++--- crates/macro/Cargo.toml | 4 ++-- crates/macro/src/lib.rs | 2 +- crates/main/Cargo.toml | 4 ++-- crates/main/src/lib.rs | 2 +- crates/wit/Cargo.toml | 2 +- crates/wit/src/lib.rs | 2 +- src/lib.rs | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2a71973..44098b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fluence" -version = "0.2.18" # remember to update html_root_url +version = "0.5.0" # remember to update html_root_url description = "Fluence backend SDK for developing backend applications for the Fluence network" documentation = "https://docs.rs/fluence/" repository = "https://github.com/fluencelabs/rust-sdk" @@ -18,8 +18,8 @@ all-features = true path = "src/lib.rs" [dependencies] -fluence-sdk-macro = { path = "crates/macro", version = "=0.2.18" } -fluence-sdk-main = { path = "crates/main", version = "=0.2.18" } +fluence-sdk-macro = { path = "crates/macro", version = "=0.5.0" } +fluence-sdk-main = { path = "crates/main", version = "=0.5.0" } [features] # Print some internal logs by log_utf8_string diff --git a/crates/macro/Cargo.toml b/crates/macro/Cargo.toml index 39426dc..6fb8127 100644 --- a/crates/macro/Cargo.toml +++ b/crates/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fluence-sdk-macro" -version = "0.2.18" # remember to update html_root_url +version = "0.5.0" # remember to update html_root_url edition = "2018" description = "Definition of `#[invoke_handler]` attribute" documentation = "https://docs.rs/fluence/fluence-sdk-macro" @@ -17,4 +17,4 @@ all-features = true proc-macro = true [dependencies] -fluence-sdk-wit = { path = "../wit", version = "=0.2.18" } +fluence-sdk-wit = { path = "../wit", version = "=0.5.0" } diff --git a/crates/macro/src/lib.rs b/crates/macro/src/lib.rs index 58f32ce..add33a9 100644 --- a/crates/macro/src/lib.rs +++ b/crates/macro/src/lib.rs @@ -54,7 +54,7 @@ //! //! ``` -#![doc(html_root_url = "https://docs.rs/fluence-sdk-macro/0.2.18")] +#![doc(html_root_url = "https://docs.rs/fluence-sdk-macro/0.5.0")] #![deny( dead_code, nonstandard_style, diff --git a/crates/main/Cargo.toml b/crates/main/Cargo.toml index af1c889..7d601b8 100644 --- a/crates/main/Cargo.toml +++ b/crates/main/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fluence-sdk-main" -version = "0.2.18" # remember to update html_root_url +version = "0.5.0" # remember to update html_root_url edition = "2018" description = "Rust SDK for applications for the Fluence network" documentation = "https://docs.rs/fluence/fluence-sdk-macro" @@ -18,7 +18,7 @@ path = "src/lib.rs" crate-type = ["rlib"] [dependencies] -fluence-sdk-macro = { path = "../macro", version = "=0.2.18" } +fluence-sdk-macro = { path = "../macro", version = "=0.5.0" } log = { version = "0.4.8", features = ["std"] } serde = "=1.0.118" diff --git a/crates/main/src/lib.rs b/crates/main/src/lib.rs index 3fec6be..7bdd3de 100644 --- a/crates/main/src/lib.rs +++ b/crates/main/src/lib.rs @@ -19,7 +19,7 @@ #![allow(clippy::missing_safety_doc)] #![allow(clippy::needless_doctest_main)] -#![doc(html_root_url = "https://docs.rs/fluence-sdk-main/0.2.18")] +#![doc(html_root_url = "https://docs.rs/fluence-sdk-main/0.5.0")] #![deny( dead_code, nonstandard_style, diff --git a/crates/wit/Cargo.toml b/crates/wit/Cargo.toml index e20488b..791c5d0 100644 --- a/crates/wit/Cargo.toml +++ b/crates/wit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fluence-sdk-wit" -version = "0.2.18" # remember to update html_root_url +version = "0.5.0" # remember to update html_root_url edition = "2018" description = "Webassembly interface-types generator" documentation = "https://docs.rs/fluence/fluence-sdk-macro" diff --git a/crates/wit/src/lib.rs b/crates/wit/src/lib.rs index 8d52ae6..600b12e 100644 --- a/crates/wit/src/lib.rs +++ b/crates/wit/src/lib.rs @@ -14,7 +14,7 @@ * limitations under the License. */ -#![doc(html_root_url = "https://docs.rs/wit-support/0.2.18")] +#![doc(html_root_url = "https://docs.rs/wit-support/0.5.0")] #![deny( dead_code, nonstandard_style, diff --git a/src/lib.rs b/src/lib.rs index 28d5b4d..ddcdd70 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -55,7 +55,7 @@ //! pub fn curl_get(url: String) -> String; //! } //! ``` -#![doc(html_root_url = "https://docs.rs/fluence/0.2.18")] +#![doc(html_root_url = "https://docs.rs/fluence/0.5.0")] #![deny( dead_code, nonstandard_style,