From 8a8cba4ba70df6be258497d7deb784d00a098c43 Mon Sep 17 00:00:00 2001 From: Fina Wilke Date: Sun, 3 Dec 2023 18:45:16 +0100 Subject: [PATCH] Update changelog, add library version to manifest --- Cargo.lock | 2 +- changelog.md | 7 +++++++ cli/Cargo.toml | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2fc79847..a3db8fdf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3084,7 +3084,7 @@ dependencies = [ [[package]] name = "wormhole-rs" -version = "0.6.0" +version = "0.6.1" dependencies = [ "async-std", "clap", diff --git a/changelog.md b/changelog.md index 14a983e6..a7e540d2 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,13 @@ ## Unreleased +## 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 094f0c5a..917577a1 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] @@ -13,7 +13,7 @@ futures = "0.3.12" async-std = { version = "1.12.0", features = ["attributes", "unstable"] } # CLI specific dependencies -magic-wormhole = { path = "..", features = ["all"] } +magic-wormhole = { path = "..", features = ["all"], version = "0.6.1" } clap = { version = "3.1.5", features = ["cargo", "derive", "wrap_help"] } clap_complete = "3.1.4" env_logger = "0.10.0"