From 6b11a4caea0e89248ae49fbd93fd6aa94a057cf8 Mon Sep 17 00:00:00 2001 From: Fina Wilke Date: Sun, 3 Dec 2023 19:14:09 +0100 Subject: [PATCH] Update changelog for 0.6.1 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- changelog.md | 7 +++++++ cli/Cargo.toml | 6 ++++-- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d109b023..2022e067 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1569,7 +1569,7 @@ dependencies = [ [[package]] name = "magic-wormhole" -version = "0.6.0" +version = "0.6.1" dependencies = [ "async-io 2.2.0", "async-std", @@ -3396,7 +3396,7 @@ dependencies = [ [[package]] name = "wormhole-rs" -version = "0.6.0" +version = "0.6.1" dependencies = [ "arboard", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 35d5b439..b29766cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "magic-wormhole" -version = "0.6.0" +version = "0.6.1" authors = ["piegames ", "Brian Warner "] description = "Get things from one computer to another, safely" keywords = ["magic-wormhole", "wormhole", "file-transfer", "transfer"] diff --git a/changelog.md b/changelog.md index c5978341..b6ab222d 100644 --- a/changelog.md +++ b/changelog.md @@ -5,6 +5,13 @@ - Added compilation support for WASM targets. - \[lib\]\[breaking\] replaced `transit::TransitInfo` with a struct containing the address, the old enum has been renamed to `transit::ConnectionType`. +## Version 0.6.1 + +- RUSTSEC-2023-0065: Update tungstenite +- RUSTSEC-2023-0037: Replace xsalsa20poly1305 with crypto_secretbox +- RUSTSEC-2023-0052: Update webpki +- Update crate dependencies + ## Version 0.6.0 - Add shell completion support for the CLI diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 1cedecae..44ffacb1 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wormhole-rs" -version = "0.6.0" +version = "0.6.1" edition = "2021" [dependencies] @@ -25,4 +25,6 @@ color-eyre = "0.6.0" number_prefix = "0.4.0" ctrlc = "3.2.1" qr2term = "0.3.0" -arboard = {version = "3.2.0", features = ["wayland-data-control"]} # Wayland by default, fallback to X11. +arboard = { version = "3.2.0", features = [ + "wayland-data-control", +] } # Wayland by default, fallback to X11.