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

Commit

Permalink
Bump version to 0.9.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Huene committed Jun 11, 2019
1 parent c40c103 commit cd8f0e1
Show file tree
Hide file tree
Showing 20 changed files with 65 additions and 57 deletions.
44 changes: 22 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 21 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub fn greet(req: HttpRequest) -> HttpResponse {
## Get Started

- [More Examples](https://github.com/peterhuene/azure-functions-rs/tree/master/examples)
- [Documentation](https://docs.rs/azure-functions/0.8.0/azure_functions/)
- [Documentation](https://docs.rs/azure-functions/0.9.0/azure_functions/)
- [Installation](#installation)
- [Contributing](https://github.com/peterhuene/azure-functions-rs/blob/master/CONTRIBUTING.md)

Expand All @@ -51,17 +51,26 @@ pub fn greet(req: HttpRequest) -> HttpResponse {
- [Azure Functions Core Tools](#azure-functions-core-tools)
- [Installing the Azure Functions for Rust SDK](#installing-the-azure-functions-for-rust-sdk)

- [Creating a new Azure Functions application](#creating-a-new-azure-functions-application)
- [Adding a simple HTTP-triggered application](#adding-a-simple-http-triggered-application)
- [Building the Azure Functions application](#building-the-azure-functions-application)
- [Running the Azure Functions application](#running-the-azure-functions-application)
- [Debugging the Azure Functions application](#debugging-the-azure-functions-application)
- [Deploying the Azure Functions application](#deploying-the-azure-functions-application)
- [Azure Functions Bindings](#azure-functions-bindings)
- [Bindings in Rust](#bindings-in-rust)
- [Input bindings](#input-bindings)
- [Input-output (inout) bindings](#input-output-inout-bindings)
- [Output bindings](#output-bindings)
- [Azure Functions for Rust](#azure-functions-for-rust)
- [Example](#example)
- [Get Started](#get-started)
- [Table of Contents](#table-of-contents)
- [Installation](#installation)
- [Requirements](#requirements)
- [.NET Core SDK](#net-core-sdk)
- [Azure Functions Core Tools](#azure-functions-core-tools)
- [Installing the Azure Functions for Rust SDK](#installing-the-azure-functions-for-rust-sdk)
- [Creating a new Azure Functions application](#creating-a-new-azure-functions-application)
- [Adding a simple HTTP-triggered application](#adding-a-simple-http-triggered-application)
- [Building the Azure Functions application](#building-the-azure-functions-application)
- [Running the Azure Functions application](#running-the-azure-functions-application)
- [Debugging the Azure Functions application](#debugging-the-azure-functions-application)
- [Deploying the Azure Functions application](#deploying-the-azure-functions-application)
- [Azure Functions Bindings](#azure-functions-bindings)
- [Bindings in Rust](#bindings-in-rust)
- [Input bindings](#input-bindings)
- [Input-output (inout) bindings](#input-output-inout-bindings)
- [Output bindings](#output-bindings)

## Installation

Expand Down Expand Up @@ -358,4 +367,3 @@ pub fn example(...) -> ((), Blob) {
```

For the above example, there is no `$return` binding and the Azure Function "returns" no value. Instead, a single output binding named `output1` is used.

4 changes: 2 additions & 2 deletions azure-functions-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "azure-functions-codegen"
license = "MIT"
version = "0.8.0"
version = "0.9.0"
authors = ["Peter Huene <[email protected]>"]
description = "Azure Functions for Rust code generation support"
repository = "https://github.com/peterhuene/azure-functions-rs/"
Expand All @@ -12,7 +12,7 @@ edition = "2018"
proc-macro = true

[dependencies]
azure-functions-shared = { version = "0.8.0", path = "../azure-functions-shared" }
azure-functions-shared = { version = "0.9.0", path = "../azure-functions-shared" }
quote = "0.6.12"
syn = { version = "0.15.35", features = ["full"] }
proc-macro2 = { version = "0.4.30" }
Expand Down
2 changes: 1 addition & 1 deletion azure-functions-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "azure-functions-sdk"
license = "MIT"
version = "0.8.0"
version = "0.9.0"
authors = ["Peter Huene <[email protected]>"]
description = "Azure Functions for Rust Developer Tools"
repository = "https://github.com/peterhuene/azure-functions-rs/"
Expand Down
2 changes: 1 addition & 1 deletion azure-functions-shared-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "azure-functions-shared-codegen"
license = "MIT"
version = "0.8.1"
version = "0.9.0"
authors = ["Peter Huene <[email protected]>"]
description = "Azure Functions for Rust shared code generation support."
repository = "https://github.com/peterhuene/azure-functions-rs/"
Expand Down
4 changes: 2 additions & 2 deletions azure-functions-shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "azure-functions-shared"
license = "MIT"
version = "0.8.0"
version = "0.9.0"
authors = ["Peter Huene <[email protected]>"]
description = "Implementations shared between the azure-functions-codegen and azure-functions crates."
repository = "https://github.com/peterhuene/azure-functions-rs/"
homepage = "https://functions.rs"
edition = "2018"

[dependencies]
azure-functions-shared-codegen = { version = "0.8.1", path = "../azure-functions-shared-codegen" }
azure-functions-shared-codegen = { version = "0.9.0", path = "../azure-functions-shared-codegen" }
tower-grpc = "0.1.0"
prost = "0.5"
prost-types = "0.5"
Expand Down
6 changes: 3 additions & 3 deletions azure-functions/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "azure-functions"
license = "MIT"
version = "0.8.0"
version = "0.9.0"
authors = ["Peter Huene <[email protected]>"]
description = "Azure Functions for Rust"
repository = "https://github.com/peterhuene/azure-functions-rs/"
homepage = "https://functions.rs"
edition = "2018"

[dependencies]
azure-functions-shared = { version = "0.8.0", path = "../azure-functions-shared" }
azure-functions-codegen = { version = "0.8.0", path = "../azure-functions-codegen" }
azure-functions-shared = { version = "0.9.0", path = "../azure-functions-shared" }
azure-functions-codegen = { version = "0.9.0", path = "../azure-functions-codegen" }
http = "0.1"
tower-hyper = "0.1.0"
tower-grpc = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/blob/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:experimental

FROM peterhuene/azure-functions-rs-build:0.8.0 AS build-image
FROM peterhuene/azure-functions-rs-build:0.9.0 AS build-image

WORKDIR /src
COPY . /src
Expand Down
2 changes: 1 addition & 1 deletion examples/cosmosdb/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:experimental

FROM peterhuene/azure-functions-rs-build:0.8.0 AS build-image
FROM peterhuene/azure-functions-rs-build:0.9.0 AS build-image

WORKDIR /src
COPY . /src
Expand Down
2 changes: 1 addition & 1 deletion examples/event-grid/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:experimental

FROM peterhuene/azure-functions-rs-build:0.8.0 AS build-image
FROM peterhuene/azure-functions-rs-build:0.9.0 AS build-image

WORKDIR /src
COPY . /src
Expand Down
2 changes: 1 addition & 1 deletion examples/event-hub/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:experimental

FROM peterhuene/azure-functions-rs-build:0.8.0 AS build-image
FROM peterhuene/azure-functions-rs-build:0.9.0 AS build-image

WORKDIR /src
COPY . /src
Expand Down
2 changes: 1 addition & 1 deletion examples/generic/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:experimental

FROM peterhuene/azure-functions-rs-build:0.8.0 AS build-image
FROM peterhuene/azure-functions-rs-build:0.9.0 AS build-image

WORKDIR /src
COPY . /src
Expand Down
2 changes: 1 addition & 1 deletion examples/http/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:experimental

FROM peterhuene/azure-functions-rs-build:0.8.0 AS build-image
FROM peterhuene/azure-functions-rs-build:0.9.0 AS build-image

WORKDIR /src
COPY . /src
Expand Down
2 changes: 1 addition & 1 deletion examples/queue/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:experimental

FROM peterhuene/azure-functions-rs-build:0.8.0 AS build-image
FROM peterhuene/azure-functions-rs-build:0.9.0 AS build-image

WORKDIR /src
COPY . /src
Expand Down
2 changes: 1 addition & 1 deletion examples/sendgrid/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:experimental

FROM peterhuene/azure-functions-rs-build:0.8.0 AS build-image
FROM peterhuene/azure-functions-rs-build:0.9.0 AS build-image

WORKDIR /src
COPY . /src
Expand Down
2 changes: 1 addition & 1 deletion examples/service-bus/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:experimental

FROM peterhuene/azure-functions-rs-build:0.8.0 AS build-image
FROM peterhuene/azure-functions-rs-build:0.9.0 AS build-image

WORKDIR /src
COPY . /src
Expand Down
2 changes: 1 addition & 1 deletion examples/signalr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:experimental

FROM peterhuene/azure-functions-rs-build:0.8.0 AS build-image
FROM peterhuene/azure-functions-rs-build:0.9.0 AS build-image

WORKDIR /src
COPY . /src
Expand Down
2 changes: 1 addition & 1 deletion examples/table/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:experimental

FROM peterhuene/azure-functions-rs-build:0.8.0 AS build-image
FROM peterhuene/azure-functions-rs-build:0.9.0 AS build-image

WORKDIR /src
COPY . /src
Expand Down
2 changes: 1 addition & 1 deletion examples/timer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile-upstream:experimental

FROM peterhuene/azure-functions-rs-build:0.8.0 AS build-image
FROM peterhuene/azure-functions-rs-build:0.9.0 AS build-image

WORKDIR /src
COPY . /src
Expand Down
Loading

0 comments on commit cd8f0e1

Please sign in to comment.