From b4d1e49c0ad0095e8307384b6101704a39e3149c Mon Sep 17 00:00:00 2001 From: sapessi Date: Thu, 24 Jan 2019 12:53:12 -0800 Subject: [PATCH] Crate version bump for 0.2 release --- Cargo.lock | 8 ++++---- lambda-http/Cargo.toml | 2 +- lambda-runtime-client/Cargo.toml | 2 +- lambda-runtime-core/Cargo.toml | 2 +- lambda-runtime/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7635bf55..61770fcc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -280,7 +280,7 @@ dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "http 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", - "lambda_runtime 0.1.0", + "lambda_runtime 0.2.0", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)", @@ -292,7 +292,7 @@ dependencies = [ [[package]] name = "lambda_runtime" -version = "0.1.0" +version = "0.2.0" dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "lambda_runtime_core 0.1.0", @@ -307,7 +307,7 @@ dependencies = [ [[package]] name = "lambda_runtime_client" -version = "0.1.0" +version = "0.2.0" dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "http 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", @@ -328,7 +328,7 @@ dependencies = [ "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.12.19 (registry+https://github.com/rust-lang/crates.io-index)", - "lambda_runtime_client 0.1.0", + "lambda_runtime_client 0.2.0", "lambda_runtime_errors 0.1.0", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/lambda-http/Cargo.toml b/lambda-http/Cargo.toml index 828e619e..235aa920 100644 --- a/lambda-http/Cargo.toml +++ b/lambda-http/Cargo.toml @@ -20,7 +20,7 @@ http = "0.1" serde = "^1" serde_json = "^1" serde_derive = "^1" -lambda_runtime = { path = "../lambda-runtime", version = "^0.1" } +lambda_runtime = { path = "../lambda-runtime", version = "^0.2" } tokio = "^0.1" base64 = "0.10" failure = "0.1" diff --git a/lambda-runtime-client/Cargo.toml b/lambda-runtime-client/Cargo.toml index 1ae05a91..906fb2f0 100644 --- a/lambda-runtime-client/Cargo.toml +++ b/lambda-runtime-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_runtime_client" -version = "0.1.0" +version = "0.2.0" authors = ["Stefano Buliani", "David Barsky"] edition = "2018" description = "Client SDK for AWS Lambda's runtime APIs" diff --git a/lambda-runtime-core/Cargo.toml b/lambda-runtime-core/Cargo.toml index 6578f563..95821ff4 100644 --- a/lambda-runtime-core/Cargo.toml +++ b/lambda-runtime-core/Cargo.toml @@ -17,7 +17,7 @@ tokio = "^0.1" backtrace = "^0.3" chrono = "^0.4" failure = "^0.1" -lambda_runtime_client = { path = "../lambda-runtime-client", version = "^0.1" } +lambda_runtime_client = { path = "../lambda-runtime-client", version = "^0.2" } lambda_runtime_errors = { path = "../lambda-runtime-errors", version = "^0.1" } [dev-dependencies] diff --git a/lambda-runtime/Cargo.toml b/lambda-runtime/Cargo.toml index 18a3cc67..4e9a39c1 100644 --- a/lambda-runtime/Cargo.toml +++ b/lambda-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_runtime" -version = "0.1.0" +version = "0.2.0" authors = ["Stefano Buliani", "David Barsky"] edition = "2018" description = "Rust runtime for AWS Lambda"