From 535f32daaefc807ee776b08248f39805f01f9a58 Mon Sep 17 00:00:00 2001 From: Ross Younger Date: Sat, 2 Nov 2024 21:21:06 +1300 Subject: [PATCH] chore: release v0.1.1 --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 37 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc00e68..a2b3e42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,41 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/crazyscot/qcp/compare/v0.1.0...v0.1.1) + +### ⛰️ Features + +- Suppress RTT warning unless it's at least 10% worse than configuration - ([47be5a5](https://github.com/crazyscot/qcp/commit/47be5a5fe9b1b1938d147ead06332b870a39cce4)) + +### 🐛 Bug Fixes + +- Autogenerate version string correctly in CI - ([64dfcea](https://github.com/crazyscot/qcp/commit/64dfcead3f3e24652e278f0c4d4c260b96b6e549)) + +### 🚜 Refactor + +- Combine the capnp invocations - ([2bea195](https://github.com/crazyscot/qcp/commit/2bea19568e332138c08f105192166ffcb16f37c9)) + +### 📚 Documentation + +- Add initial man page - ([61cf453](https://github.com/crazyscot/qcp/commit/61cf4535103ba5fadebc63af7e1e826ebf1532ec)) + +### ⚡ Performance + +- Use jemallocator on musl 64-bit builds - ([83e1e58](https://github.com/crazyscot/qcp/commit/83e1e58c1159b8bf1659673b9cc736713740ee70)) + +### 🎨 Styling + +- Move instant speed readout to the right, remove %age - ([dc68383](https://github.com/crazyscot/qcp/commit/dc683838bd22655c73d5d16e86a527252dd0550c)) + +### ⚙️ Miscellaneous Tasks + +- *(ci)* Align ci and release workflows - ([d16d38a](https://github.com/crazyscot/qcp/commit/d16d38a7aeb7629a76151ae4eb69d1d1b28cd671)) +- Remove spurious cache key - ([7e64feb](https://github.com/crazyscot/qcp/commit/7e64feb030ef65d979e59b891ac68ee43414e89d)) +- Build debian package - ([435b6b5](https://github.com/crazyscot/qcp/commit/435b6b587adb0581cec36caccbcf5a8048b0403c)) +- Add aarch64 build ([#7](https://github.com/crazyscot/qcp/pull/7)) - ([863eb71](https://github.com/crazyscot/qcp/commit/863eb71a24a7f08f35c342e554b3b87fb0bbf751)) +- Tidy up CI, add release workflow ([#6](https://github.com/crazyscot/qcp/pull/6)) - ([dedfe22](https://github.com/crazyscot/qcp/commit/dedfe225f1c3c626380f6c28001ac641d1ca0ffe)) + + ## [0.1.0] ### ⛰️ Features diff --git a/Cargo.lock b/Cargo.lock index d854e65..60e13c9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -650,7 +650,7 @@ dependencies = [ [[package]] name = "qcp" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anstyle", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 14596ae..1a9fdd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "qcp" description = "Secure remote file copy utility which uses the QUIC protocol over UDP" rust-version = "1.81.0" resolver = "2" -version = "0.1.0" +version = "0.1.1" edition = "2021" authors = ["Ross Younger "] license = "AGPL-3.0-or-later"