diff --git a/CHANGELOG.md b/CHANGELOG.md index 24c5fd7..8c9b833 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ 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-01-03 + +### Changed + +- Changed `TranscieverMode` to `TransceiverMode` to fix a typo by [@courupteddata] in [#33]. +- Changed the USB backend from [rusb] (libusb) to [nusb] by [@courupteddata] in [#33]. + +[rusb]: https://crates.io/crates/rusb +[nusb]: https://crates.io/crates/nusb +[@courupteddata]: https://github.com/courupteddata +[#33]: https://github.com/newAM/hackrfone/pull/33 + ## [0.3.0] - 2025-07-01 ### Changed @@ -54,7 +66,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release -[Unreleased]: https://github.com/newAM/hackrfone/compare/v0.3.0...HEAD +[Unreleased]: https://github.com/newAM/hackrfone/compare/v0.4.0...HEAD +[0.4.0]: https://github.com/newAM/hackrfone/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/newAM/hackrfone/compare/v0.2.3...v0.3.0 [0.2.3]: https://github.com/newAM/hackrfone/compare/v0.2.2...v0.2.3 [0.2.2]: https://github.com/newAM/hackrfone/compare/v0.2.1...v0.2.2 diff --git a/Cargo.toml b/Cargo.toml index 8c947c5..66fac52 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hackrfone" -version = "0.3.0" +version = "0.4.0" authors = ["Alex Martens "] edition = "2024" repository = "https://github.com/newAM/hackrfone"