Skip to content

Releases: LesnyRumcajs/wakey

v0.4.1

Choose a tag to compare

@LesnyRumcajs LesnyRumcajs released this 02 Mar 10:42
f1ff0ba
chore: release v0.4.1

v0.4.0

Choose a tag to compare

@LesnyRumcajs LesnyRumcajs released this 02 Mar 10:38
73f6331

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.

v0.3.0

Choose a tag to compare

@LesnyRumcajs LesnyRumcajs released this 06 Jan 21:07
3a4440c

Changed

  • refactored the interface and internals a bit. In short, the library should no longer panic on any errors and should return a sane Result so it can be handled by the crate user. #10
  • made methods WolPacket::from_string and WolPacket::mac_to_byte more flexible by making the data an AsRef<str>. #8
  • wakey-wake no longer needs an -m or --mac flag. The adress is now a positional argument so just call the binary with the appropriate address.

Full Changelog: v0.2.2...v0.3.0

0.2.2

Choose a tag to compare

@LesnyRumcajs LesnyRumcajs released this 26 Jun 10:27
25ca3f4
  • simplified dependencies for the library #7
  • added into_inner #5

v0.2.1

Choose a tag to compare

@LesnyRumcajs LesnyRumcajs released this 24 Jun 11:15
f3dc6b1
  • changed underlying collection from Vec to ArrayVec
  • added debug assertions

v0.2.0

Choose a tag to compare

@LesnyRumcajs LesnyRumcajs released this 24 Jun 09:47
5162dbe
  • added CLI tool,
  • bumped Rust edition