diff --git a/Cargo.lock b/Cargo.lock index 99eb0e67..c05e8bb1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1312,7 +1312,7 @@ dependencies = [ [[package]] name = "magic-wormhole" -version = "0.5.0" +version = "0.6.0" dependencies = [ "async-io", "async-std", @@ -2780,7 +2780,7 @@ dependencies = [ [[package]] name = "wormhole-rs" -version = "0.5.0" +version = "0.6.0" dependencies = [ "async-std", "clap", diff --git a/Cargo.toml b/Cargo.toml index 068dba71..43869809 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "magic-wormhole" -version = "0.5.0" +version = "0.6.0" authors = [ "piegames ", "Brian Warner " diff --git a/changelog.md b/changelog.md index 354904d4..14a983e6 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,18 @@ ## Unreleased +## Version 0.6.0 + +- Add shell completion support for the CLI +- Add support for [wormhole URIs](https://github.com/magic-wormhole/magic-wormhole-protocols/pull/21) + - \[cli\] The CLI will show a QR code (even if no app can probably read it currently) and a link + - \[lib\] See `magic_wormhole::uri::WormholeTransferUri` +- \[lib\]\[breaking\] File transfer functions do not take a `url::Url` for the relay server anymore, but a `Vec` + - For migration, look at `magic_wormhole::transit::RelayHint::from_urls` +- Fix broken port forwarding +- Fix directory transfer +- Smaller bugfixes + ## Version 0.5.0 - \[lib\]\[breaking\] Removed `relay-v2` ability again. diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b266445e..094f0c5a 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wormhole-rs" -version = "0.5.0" +version = "0.6.0" edition = "2021" [dependencies]