From 741baebdfaf79e2dc3647fbf1977332df5267a34 Mon Sep 17 00:00:00 2001 From: Alex Culea <16594531+alexculea@users.noreply.github.com> Date: Sat, 15 Jun 2024 14:40:40 +0300 Subject: [PATCH] Release version 1.4.5 --- CHANGELOG.md | 17 ++++++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fa23f6..3956890 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,4 +27,19 @@ - fix: ensure TFTP service also respects configured listen network interfaces (410cb4c) - refactor: Move TFTP service to its own module (7171fd9) - doc: Small improvements & fixes (208bd05) -- Release version 0.9.9 (1cc6139) \ No newline at end of file +- Release version 0.9.9 (1cc6139) +## Version 1.4.5 +- feat: Introduce minimal CLI (bf50949) +- feat: Ensure multiple running instances don't conflict (a95fa5c) +- fix: Ensure DHCP messages are broadcasted only on the network where the client is (6540174) +- doc: Small correction (bbec626) +- performance: Remove more uncessary .clone() from DHCP message handling logic (7a70477) +- performance: Remove more uncessary .clone() (1b8396a) +- feat: Switch exact matching to be case insensitive (02e0a0a) +- performance: Remove various memory allocations around config (02cd42e) +- feat: Validate regex at start up and improve error logging (f39f34c) +- doc: Various clarifications and fixes (f2b11ed) +- chore: enable LTO and strip debug info to result in smaller builds (4b9161e) +- doc: Fix type in quick start guide (8a5d035) +- chore: Always rebuild when packaging as .deb, incl. CPU arch in the filename and update docs (ff83824) +- chore: Correct target architecture in .deb package (503ffff) \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 3a07aa6..0ca02a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1076,7 +1076,7 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "preboot-oxide" -version = "1.0.1" +version = "1.4.5" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 8c662d7..071c0a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "preboot-oxide" -version = "1.0.1" +version = "1.4.5" edition = "2021" license = "AGPL-3.0-only"