bump to 0.1.11

This commit is contained in:
vms 2020-04-29 00:54:11 +03:00
parent b89a9878d2
commit 7100cb9475
7 changed files with 15 additions and 12 deletions

View File

@ -12,9 +12,9 @@ jobs:
keys: keys:
- backendsdk01-{{ checksum "Cargo.toml" }} - backendsdk01-{{ checksum "Cargo.toml" }}
- run: | #TODO: enable 'stable' and 'beta' once `allocator_api` becomes stable - run: | #TODO: enable 'stable' and 'beta' once `allocator_api` becomes stable
rustup toolchain install nightly-2019-09-23 rustup toolchain install nightly-2020-04-20
rustup default nightly-2019-09-23 rustup default nightly-2020-04-20
rustup override set nightly-2019-09-23 rustup override set nightly-2020-04-20
rustup target add wasm32-unknown-unknown rustup target add wasm32-unknown-unknown
rustup component add rustfmt rustup component add rustfmt
rustup component add clippy rustup component add clippy

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fluence" name = "fluence"
version = "0.1.10" # remember to update html_root_url version = "0.1.11" # remember to update html_root_url
description = "Fluence backend SDK for developing backend applications for the Fluence network" description = "Fluence backend SDK for developing backend applications for the Fluence network"
documentation = "https://docs.rs/fluence/" documentation = "https://docs.rs/fluence/"
repository = "https://github.com/fluencelabs/rust-sdk" repository = "https://github.com/fluencelabs/rust-sdk"
@ -18,8 +18,8 @@ all-features = true
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
fluence-sdk-macro = { path = "crates/macro", version = "=0.1.10" } fluence-sdk-macro = { path = "crates/macro", version = "=0.1.11" }
fluence-sdk-main = { path = "crates/main", version = "=0.1.10" } fluence-sdk-main = { path = "crates/main", version = "=0.1.11" }
[features] [features]
default = ["export_allocator"] default = ["export_allocator"]
@ -29,6 +29,9 @@ wasm_logger = ["fluence-sdk-main/wasm_logger"]
# Turn on a compilation for the module that contains the standard implementation of allocate/deallocate functions. # Turn on a compilation for the module that contains the standard implementation of allocate/deallocate functions.
export_allocator = ["fluence-sdk-main/export_allocator"] export_allocator = ["fluence-sdk-main/export_allocator"]
# Provides additional imports to allow this module work as a side module
side_module = ["fluence-sdk-main/side_module"]
[workspace] [workspace]
members = [ members = [
"crates/main", "crates/main",

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fluence-sdk-main" name = "fluence-sdk-main"
version = "0.1.10" # remember to update html_root_url version = "0.1.11" # remember to update html_root_url
edition = "2018" edition = "2018"
description = "Rust SDK for writing applications for Fluence" description = "Rust SDK for writing applications for Fluence"
documentation = "https://docs.rs/fluence/fluence-sdk-macro" 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` //! `export_allocator` feature), `logger` (is turned on by the `wasm_logger` feature), and `memory`
//! modules. //! modules.
#![doc(html_root_url = "https://docs.rs/fluence-sdk-main/0.1.10")] #![doc(html_root_url = "https://docs.rs/fluence-sdk-main/0.1.11")]
#![feature(allocator_api)] #![feature(allocator_api)]
#![deny( #![deny(
dead_code, dead_code,

View File

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