bump to 0.1.10 version

This commit is contained in:
vms 2020-04-28 23:34:37 +03:00
parent ac00542974
commit 3ae49e9a37
6 changed files with 9 additions and 9 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "fluence"
version = "0.1.9" # remember to update html_root_url
version = "0.1.10" # 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.1.9" }
fluence-sdk-main = { path = "crates/main", version = "=0.1.9" }
fluence-sdk-macro = { path = "crates/macro", version = "=0.1.10" }
fluence-sdk-main = { path = "crates/main", version = "=0.1.10" }
[features]
default = ["export_allocator"]

View File

@ -1,6 +1,6 @@
[package]
name = "fluence-sdk-macro"
version = "0.1.9" # remember to update html_root_url
version = "0.1.10" # remember to update html_root_url
edition = "2018"
description = "Definition of `#[invoke_handler]` attribute"
documentation = "https://docs.rs/fluence/fluence-sdk-macro"
@ -21,4 +21,4 @@ proc-macro = true
syn = { version = '0.15.44', features = ['full'] }
quote = "0.6.13"
proc-macro2 = "0.4"
fluence-sdk-main = { path = "../main", version = "=0.1.9" }
fluence-sdk-main = { path = "../main", version = "=0.1.10" }

View File

@ -75,7 +75,7 @@
//!
//! Please find more examples [here](https://github.com/fluencelabs/tutorials).
#![doc(html_root_url = "https://docs.rs/fluence-sdk-macro/0.1.9")]
#![doc(html_root_url = "https://docs.rs/fluence-sdk-macro/0.1.10")]
#![deny(
dead_code,
nonstandard_style,

View File

@ -1,6 +1,6 @@
[package]
name = "fluence-sdk-main"
version = "0.1.9" # remember to update html_root_url
version = "0.1.10" # remember to update html_root_url
edition = "2018"
description = "Rust SDK for writing applications for Fluence"
documentation = "https://docs.rs/fluence/fluence-sdk-macro"

View File

@ -18,7 +18,7 @@
//! `export_allocator` feature), `logger` (is turned on by the `wasm_logger` feature), and `memory`
//! modules.
#![doc(html_root_url = "https://docs.rs/fluence-sdk-main/0.1.9")]
#![doc(html_root_url = "https://docs.rs/fluence-sdk-main/0.1.10")]
#![feature(allocator_api)]
#![deny(
dead_code,

View File

@ -22,7 +22,7 @@
//! By default this crate turns on export-allocator feature of the `main` crate, to disable it
//! please import this crate with `default-features = false`.
//!
#![doc(html_root_url = "https://docs.rs/fluence/0.1.9")]
#![doc(html_root_url = "https://docs.rs/fluence/0.1.10")]
#![feature(allocator_api)]
#![deny(
dead_code,