diff --git a/crates/main/Cargo.toml b/crates/main/Cargo.toml index 24a6063..42512c8 100644 --- a/crates/main/Cargo.toml +++ b/crates/main/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fluence-sdk-main" -version = "0.6.5" # remember to update html_root_url +version = "0.6.6" # remember to update html_root_url edition = "2018" description = "Rust SDK for applications for the Fluence network" documentation = "https://docs.rs/fluence/marine-macro" @@ -19,7 +19,7 @@ crate-type = ["rlib"] doctest = false [dependencies] -marine-macro = { path = "../marine-macro", version = "=0.6.5" } +marine-macro = { path = "../marine-macro", version = "=0.6.6" } 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 5cc8216..d23a2ce 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.5.0")] +#![doc(html_root_url = "https://docs.rs/fluence-sdk-main/0.6.6")] #![deny( dead_code, nonstandard_style, diff --git a/crates/marine-macro-impl/Cargo.toml b/crates/marine-macro-impl/Cargo.toml index 845e993..302e3b1 100644 --- a/crates/marine-macro-impl/Cargo.toml +++ b/crates/marine-macro-impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "marine-macro-impl" -version = "0.6.5" # remember to update html_root_url +version = "0.6.6" # remember to update html_root_url edition = "2018" description = "Implementation of the `#[marine]` macro" documentation = "https://docs.rs/fluence/marine-macro" diff --git a/crates/marine-macro-impl/src/lib.rs b/crates/marine-macro-impl/src/lib.rs index 220e231..33805fa 100644 --- a/crates/marine-macro-impl/src/lib.rs +++ b/crates/marine-macro-impl/src/lib.rs @@ -14,7 +14,7 @@ * limitations under the License. */ -#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.6.2")] +#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.6.6")] #![deny( dead_code, nonstandard_style, diff --git a/crates/marine-macro/Cargo.toml b/crates/marine-macro/Cargo.toml index 1c37b3d..754ce5c 100644 --- a/crates/marine-macro/Cargo.toml +++ b/crates/marine-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "marine-macro" -version = "0.6.5" # remember to update html_root_url +version = "0.6.6" # remember to update html_root_url edition = "2018" description = "Definition of the `#[marine]` macro" documentation = "https://docs.rs/fluence/marine-macro" @@ -18,4 +18,4 @@ proc-macro = true doctest = false [dependencies] -marine-macro-impl = { path = "../marine-macro-impl", version = "=0.6.5" } +marine-macro-impl = { path = "../marine-macro-impl", version = "=0.6.6" } diff --git a/crates/marine-macro/src/lib.rs b/crates/marine-macro/src/lib.rs index 62b39af..cb8811f 100644 --- a/crates/marine-macro/src/lib.rs +++ b/crates/marine-macro/src/lib.rs @@ -50,7 +50,7 @@ //! //! ``` -#![doc(html_root_url = "https://docs.rs/marine-macro/0.5.0")] +#![doc(html_root_url = "https://docs.rs/marine-macro/0.6.6")] #![deny( dead_code, nonstandard_style, diff --git a/crates/marine-test-macro/src/lib.rs b/crates/marine-test-macro/src/lib.rs index 0031e1b..7a8c007 100644 --- a/crates/marine-test-macro/src/lib.rs +++ b/crates/marine-test-macro/src/lib.rs @@ -14,7 +14,7 @@ * limitations under the License. */ -#![doc(html_root_url = "https://docs.rs/fluence-test-macro/0.1.4")] +#![doc(html_root_url = "https://docs.rs/fluence-test-macro/0.1.7")] #![deny( dead_code, nonstandard_style, diff --git a/crates/timestamp-macro/Cargo.toml b/crates/timestamp-macro/Cargo.toml index 0d69f76..151fbc3 100644 --- a/crates/timestamp-macro/Cargo.toml +++ b/crates/timestamp-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "marine-timestamp-macro" -version = "0.6.5" # remember to update html_root_url +version = "0.6.6" # remember to update html_root_url edition = "2018" description = "Definition of the `#[build_timestamp]` macro" repository = "https://github.com/fluencelabs/rust-sdk/crates/timestamp-macro" diff --git a/fluence-test/src/lib.rs b/fluence-test/src/lib.rs index 9d15eb4..9255556 100644 --- a/fluence-test/src/lib.rs +++ b/fluence-test/src/lib.rs @@ -14,7 +14,7 @@ * limitations under the License. */ -#![doc(html_root_url = "https://docs.rs/fluence-test/0.1.5")] +#![doc(html_root_url = "https://docs.rs/fluence-test/0.1.7")] #![deny( dead_code, nonstandard_style, diff --git a/fluence/Cargo.toml b/fluence/Cargo.toml index 32adcf9..9a2a738 100644 --- a/fluence/Cargo.toml +++ b/fluence/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fluence" -version = "0.6.5" # remember to update html_root_url +version = "0.6.6" # 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" @@ -19,9 +19,9 @@ path = "src/lib.rs" doctest = false [dependencies] -marine-macro = { path = "../crates/marine-macro", version = "=0.6.5" } -fluence-sdk-main = { path = "../crates/main", version = "=0.6.5" } -marine-timestamp-macro = { path = "../crates/timestamp-macro", version = "=0.6.5" } +marine-macro = { path = "../crates/marine-macro", version = "=0.6.6" } +fluence-sdk-main = { path = "../crates/main", version = "=0.6.6" } +marine-timestamp-macro = { path = "../crates/timestamp-macro", version = "=0.6.6" } serde = { version = "1.0.118", features = ["derive"]} diff --git a/fluence/src/lib.rs b/fluence/src/lib.rs index b7ffe4d..c86dab7 100644 --- a/fluence/src/lib.rs +++ b/fluence/src/lib.rs @@ -55,7 +55,7 @@ //! pub fn curl_get(url: String) -> String; //! } //! ``` -#![doc(html_root_url = "https://docs.rs/fluence/0.5.0")] +#![doc(html_root_url = "https://docs.rs/fluence/0.6.6")] #![deny( dead_code, nonstandard_style,