Skip to content

Releases: gregorygaines/bitfields-rs

v0.12.4

19 Jan 06:39
Compare
Choose a tag to compare

Changelog

  • Add #![no_std] to api export

v0.12.3

25 Dec 17:49
Compare
Choose a tag to compare

Changelog

  • Display proper bits in generated getter/setter documentation
  • Fix multiple bool fields failing to compile
  • Bump dependencies to latest version
  • Update doc examples that would fail to compile

v0.12.0

22 Dec 06:57
Compare
Choose a tag to compare

Changelog

  • Bitfields can now be converting back into builders using the to_builder function.

v0.11.0

22 Dec 05:54
Compare
Choose a tag to compare

Changelog

  • Read only fields can now be set during construction using the builder rather than just from_bits.

v0.10.0

20 Dec 18:04
Compare
Choose a tag to compare

Change log

  • A bitfield can be set or cleared with set_bits, set_bits_with_defaults, clear_bits, clear_bits_with_defaults.

v0.9.0

20 Dec 00:00
Compare
Choose a tag to compare

Change log

  • Users can now access ignored fields like normal struct fields.
  • Updated documentation.

v0.8.0

19 Dec 21:41
Compare
Choose a tag to compare

Change log

  • Ability to ignore fields.
  • Updated documentation.

v0.7.1

18 Dec 17:09
Compare
Choose a tag to compare

Change log

  • Improve lib documentation

v0.7.0

18 Dec 16:32
Compare
Choose a tag to compare

Changelog

  • Added bit operations for getting and setting bits.

v0.6.0

16 Dec 14:25
Compare
Choose a tag to compare

Changelog

  • Allow padding fields to have duplicate names.