update docs for 0.6.0 release

This commit is contained in:
Brian Warner 2015-11-23 17:13:13 -08:00
parent 1d6c3d1f96
commit 3457360751
2 changed files with 16 additions and 4 deletions

18
NEWS.md
View File

@ -1,13 +1,25 @@
User-visible changes in "magic-wormhole":
## Release ?? (??)
## Release 0.6.0 (23-Nov-2015)
* Add key-confirmation message so "wormhole send" doesn't hang when the
receiver mistypes the code.
* Fix `wormhole send --text -` to read the text message from stdin. `wormhole
receive >outfile` works, but currently appends an extra newline, which may
be removed in a future release.
* Arrange for 0.4.0 senders to print an error message when connecting to a
current (0.5.0) server, instead of an ugly stack trace. Unfortunately 0.4.0
receivers still display the traceback, since they don't check the welcome
message before using a missing API.
* Fix `wormhole send --text -` to read the text message from stdin.
message before using a missing API. 0.5.0 and 0.6.0 will do better.
* Improve channel deallocation upon error.
* Inform the server of our "mood" when the connection closes, so it can track
the rate of successful/unsuccessful transfers. The server DB now stores a
summary of each transfer (waiting time and reported outcome).
* Rename (and deprecate) one server API (the non-EventSource form of "get"),
leaving it in place until after the next release. 0.5.0 clients should
interoperate with both the 0.6.0 server and 0.6.0 clients, but eventually
they'll stop working.
## Release 0.5.0 (07-Oct-2015)

View File

@ -112,7 +112,7 @@ Both commands accept:
* `--relay-url URL` : override the rendezvous server URL
* `--transit-helper tcp:HOST:PORT`: override the Transit Relay
* `--code-length WORDS`: use more or fewer than 2 words for the code
* `--verify` : add extra verification
* `--verify` : print (and ask user to compare) extra verification string
## Library