Skip to content
This repository was archived by the owner on Jun 2, 2020. It is now read-only.

Commit 3a31619

Browse files
authored
Merge pull request #454 from peterhuene/bump-versions
Bump version to 0.11.0.
2 parents 6fdb22b + d810b44 commit 3a31619

File tree

22 files changed

+53
-127
lines changed

22 files changed

+53
-127
lines changed

Cargo.lock

Lines changed: 25 additions & 98 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ See [Building an async Azure Functions application](#building-an-async-azure-fun
7979
## Get Started
8080

8181
- [More Examples](https://github.com/peterhuene/azure-functions-rs/tree/master/examples)
82-
- [Documentation](https://docs.rs/azure-functions/0.10.0/azure_functions/)
82+
- [Documentation](https://docs.rs/azure-functions/0.11.0/azure_functions/)
8383
- [Installation](#installation)
8484
- [Contributing](https://github.com/peterhuene/azure-functions-rs/blob/master/CONTRIBUTING.md)
8585

azure-functions-codegen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "azure-functions-codegen"
33
license = "MIT"
4-
version = "0.10.0"
4+
version = "0.11.0"
55
authors = ["Peter Huene <[email protected]>"]
66
description = "Azure Functions for Rust code generation support"
77
repository = "https://github.com/peterhuene/azure-functions-rs/"
@@ -12,7 +12,7 @@ edition = "2018"
1212
proc-macro = true
1313

1414
[dependencies]
15-
azure-functions-shared = { version = "0.10.0", path = "../azure-functions-shared" }
15+
azure-functions-shared = { version = "0.11.0", path = "../azure-functions-shared" }
1616
quote = "1.0.2"
1717
syn = { version = "1.0.7", features = ["full"] }
1818
proc-macro2 = { version = "1.0.6" }

azure-functions-durable/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "azure-functions-durable"
33
license = "MIT"
4-
version = "0.10.0"
4+
version = "0.11.0"
55
authors = ["Peter Huene <[email protected]>"]
66
description = "Durable Functions for Rust"
77
repository = "https://github.com/peterhuene/azure-functions-rs/"
@@ -10,11 +10,10 @@ edition = "2018"
1010

1111
[dependencies]
1212
futures-preview = "0.3.0-alpha.19"
13-
hyper = "0.13.0-alpha.4"
14-
serde = { version="1.0.97", features = ["derive"] }
13+
hyper = { version = "0.13.0-alpha.4", features = ["unstable-stream"] }
14+
serde = { version = "1.0.97", features = ["derive"] }
1515
serde_json = "1.0.40"
1616
tokio = "0.2.0-alpha.6"
17-
derive_builder = "0.7.2"
1817
chrono = { version = "0.4.9", features = ["serde"] }
1918
url = "1.7.2"
2019
log = "0.4.7"

azure-functions-sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "azure-functions-sdk"
33
license = "MIT"
4-
version = "0.10.0"
4+
version = "0.11.0"
55
authors = ["Peter Huene <[email protected]>"]
66
description = "Azure Functions for Rust Developer Tools"
77
repository = "https://github.com/peterhuene/azure-functions-rs/"

azure-functions-shared-codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "azure-functions-shared-codegen"
33
license = "MIT"
4-
version = "0.10.0"
4+
version = "0.11.0"
55
authors = ["Peter Huene <[email protected]>"]
66
description = "Azure Functions for Rust shared code generation support."
77
repository = "https://github.com/peterhuene/azure-functions-rs/"

azure-functions-shared/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "azure-functions-shared"
33
license = "MIT"
4-
version = "0.10.0"
4+
version = "0.11.0"
55
authors = ["Peter Huene <[email protected]>"]
66
description = "Implementations shared between the azure-functions-codegen and azure-functions crates."
77
repository = "https://github.com/peterhuene/azure-functions-rs/"
88
homepage = "https://functions.rs"
99
edition = "2018"
1010

1111
[dependencies]
12-
azure-functions-shared-codegen = { version = "0.10.0", path = "../azure-functions-shared-codegen" }
12+
azure-functions-shared-codegen = { version = "0.11.0", path = "../azure-functions-shared-codegen" }
1313
tonic = "0.1.0-alpha.5"
1414
prost = "0.5"
1515
prost-types = "0.5"

0 commit comments

Comments
 (0)