diff --git a/CHANGELOG.md b/CHANGELOG.md index a19a38e..8ef2ffc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.0] - 2026-03-02 + +### Changed + +- Bumped Rust edition to 2024 and Rust version to 1.93.1 + +- `WolPacket::into_inner` now has `must_use` attribute to prevent accidentally consuming the packet without using the inner data. + ## [0.3.0] - 2023-01-06 diff --git a/wakey-wake/Cargo.toml b/wakey-wake/Cargo.toml index 82590fe..62737fd 100644 --- a/wakey-wake/Cargo.toml +++ b/wakey-wake/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wakey-wake" -version = "0.3.0" +version = "0.4.0" authors = ["Hubert Bugaj"] edition = "2024" diff --git a/wakey/Cargo.toml b/wakey/Cargo.toml index 513b581..71f1938 100644 --- a/wakey/Cargo.toml +++ b/wakey/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wakey" -version = "0.3.0" +version = "0.4.0" authors = ["Hubert Bugaj"] edition = "2024"