Updates for v0.1.3 release (#185)

Signed-off-by: Andrew Seigner <siggy@buoyant.io>
This commit is contained in:
Andrew Seigner 2018-01-19 13:58:52 -08:00 committed by GitHub
parent 67255bc03a
commit 06c9894c31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 31 additions and 27 deletions

View File

@ -1,3 +1,7 @@
## v0.1.3
* This is a minor bugfix for some web dashboard UI elements that were not rendering correctly.
## v0.1.2
Conduit 0.1.2 continues down the path of increasing usability and improving debugging and

36
Cargo.lock generated
View File

@ -98,14 +98,14 @@ dependencies = [
[[package]]
name = "codegen"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"ordermap 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "conduit-proxy"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"abstract-ns 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
"bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
@ -113,7 +113,7 @@ dependencies = [
"domain 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-mpsc-lossy 0.1.2",
"futures-mpsc-lossy 0.1.3",
"h2 0.1.0 (git+https://github.com/carllerche/h2)",
"http 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"ipnet 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -132,11 +132,11 @@ dependencies = [
"tower-balance 0.1.0 (git+https://github.com/tower-rs/tower)",
"tower-buffer 0.1.0 (git+https://github.com/tower-rs/tower)",
"tower-discover 0.1.0 (git+https://github.com/tower-rs/tower)",
"tower-grpc 0.1.2",
"tower-grpc-build 0.1.2",
"tower-h2 0.1.2",
"tower-grpc 0.1.3",
"tower-grpc-build 0.1.3",
"tower-h2 0.1.3",
"tower-reconnect 0.1.0 (git+https://github.com/tower-rs/tower)",
"tower-router 0.1.2",
"tower-router 0.1.3",
"tower-util 0.1.0 (git+https://github.com/tower-rs/tower)",
"url 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -265,7 +265,7 @@ dependencies = [
[[package]]
name = "futures-mpsc-lossy"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -851,7 +851,7 @@ dependencies = [
[[package]]
name = "tower-grpc"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
@ -864,21 +864,21 @@ dependencies = [
"tokio-connect 0.1.0 (git+https://github.com/carllerche/tokio-connect)",
"tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
"tower 0.1.0 (git+https://github.com/tower-rs/tower)",
"tower-h2 0.1.2",
"tower-h2 0.1.3",
"tower-router 0.1.0 (git+https://github.com/tower-rs/tower)",
]
[[package]]
name = "tower-grpc-build"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"codegen 0.1.2",
"codegen 0.1.3",
"prost-build 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "tower-grpc-examples"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
@ -891,14 +891,14 @@ dependencies = [
"serde_json 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
"tower 0.1.0 (git+https://github.com/tower-rs/tower)",
"tower-grpc 0.1.2",
"tower-grpc-build 0.1.2",
"tower-h2 0.1.2",
"tower-grpc 0.1.3",
"tower-grpc-build 0.1.3",
"tower-h2 0.1.3",
]
[[package]]
name = "tower-h2"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
@ -934,7 +934,7 @@ dependencies = [
[[package]]
name = "tower-router"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
"ordermap 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package]
name = "codegen"
version = "0.1.2"
version = "0.1.3"
authors = ["Carl Lerche <me@carllerche.com>"]
[dependencies]

View File

@ -1,6 +1,6 @@
[package]
name = "futures-mpsc-lossy"
version = "0.1.2"
version = "0.1.3"
authors = ["Oliver Gould <ver@buoyant.io>"]
publish = false

View File

@ -1,6 +1,6 @@
[package]
name = "conduit-proxy"
version = "0.1.2"
version = "0.1.3"
authors = ["Oliver Gould <ver@buoyant.io>"]
publish = false

View File

@ -5,7 +5,7 @@
## Build the rust proxy into a binary.
#
# If the RELEASE arg is set and non-empty, a release artifact is built.
FROM gcr.io/runconduit/proxy-deps:f9e8c67f as build
FROM gcr.io/runconduit/proxy-deps:cef4a0cf as build
WORKDIR /usr/src/conduit
# Ranked roughly from least to most likely to change. Cargo.lock is the least likely
# because it is supposed to be cached in the deps base image.

View File

@ -1,6 +1,6 @@
[package]
name = "tower-grpc-build"
version = "0.1.2"
version = "0.1.3"
authors = ["Carl Lerche <me@carllerche.com>"]
[dependencies]

View File

@ -1,6 +1,6 @@
[package]
name = "tower-grpc-examples"
version = "0.1.2"
version = "0.1.3"
authors = ["Carl Lerche <me@carllerche.com>"]
[[bin]]

View File

@ -1,6 +1,6 @@
[package]
name = "tower-grpc"
version = "0.1.2"
version = "0.1.3"
authors = ["Sean McArthur <sean@seanmonstar.com>"]
[features]

View File

@ -1,6 +1,6 @@
[package]
name = "tower-h2"
version = "0.1.2"
version = "0.1.3"
authors = ["Oliver Gould <ver@buoyant.io>"]
description = "Exploring tower + h2"
publish = false

View File

@ -1,6 +1,6 @@
[package]
name = "tower-router"
version = "0.1.2"
version = "0.1.3"
authors = ["Carl Lerche <me@carllerche.com>"]
publish = false