Release v0.2.2
Add a project changelog
This commit is contained in:
parent
0c48d59e3a
commit
3ed514c99c
3 changed files with 12 additions and 2 deletions
10
CHANGELOG.md
Normal file
10
CHANGELOG.md
Normal 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
2
Cargo.lock
generated
|
@ -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)",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "webmetro"
|
||||
version = "0.2.2-dev"
|
||||
version = "0.2.2"
|
||||
authors = ["Tangent 128 <Tangent128@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
|
|
Loading…
Reference in a new issue