Skip to content

Releases: daniel5151/gdbstub

0.3.0

11 Sep 19:13
Compare
Choose a tag to compare

This is a semver-compatible re-release of 0.2.2.

0.2.2 - yanked

09 Sep 17:26
Compare
Choose a tag to compare

This version contains a few minor breaking changes from 0.2.1. These are only surface-level changes, and can be fixed with minimal effort.

Version 0.3.0 is identical to the yanked version 0.2.2, except that it adheres to cargo's modified SemVer rule which states that the pre-0.x.y breaking changes should still bump the minor version.

Thanks to h33p for reporting this issue (#27)

  • Add Target::read/write_register support (to support single register accesses) #22 (thomashk0)
  • Update Target::resume API to replace raw &mut dyn Iterator with a functionally identical concrete Actions iterator.
  • Mark the StopReason enum as non-exhaustive, allowing further types to be added without being considered "breaking changes"
  • Add StopReason::Signal(u8) variant, to send arbitrary signal codes #19 (mchesser)
  • New arch implementations:

0.2.1

23 Aug 21:49
Compare
Choose a tag to compare
  • Add x86_86 support #11 (jamcleod)
  • Add Mips and Mips64 support #13 (starfleetcadet75)
  • Documentation improvements
    • Document PC adjustment requirements in Target::resume
    • Add docs on handling non-fatal invalid memory reads/writes in Target::read/write_addrs.