Release v0.2.2

Add a project changelog
This commit is contained in:
Tangent Wantwight 2019-11-20 00:24:57 -05:00
parent 0c48d59e3a
commit 3ed514c99c
3 changed files with 12 additions and 2 deletions

10
CHANGELOG.md Normal file
View File

@ -0,0 +1,10 @@
## v0.2.2
- support listening on multiple addresses if given a DNS name instead of an IP address. All bindings reference the same namespace for channels, but this allows, e.g., binding to both IPv4 and IPv6 `localhost`.
- released November 20, 2019
## v0.2.1
- update most internals to use `std::future`
## v0.2.0
- support proxying an arbitrary number of streams at `/live/$NAME`
- released October 27, 2018

2
Cargo.lock generated
View File

@ -1768,7 +1768,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "webmetro"
version = "0.2.2-dev"
version = "0.2.2"
dependencies = [
"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package]
name = "webmetro"
version = "0.2.2-dev"
version = "0.2.2"
authors = ["Tangent 128 <Tangent128@gmail.com>"]
edition = "2018"