CHANGELOG.md 1.4 KB

Change Log

All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.

Unreleased

[v0.1.0] - 2023-01-18

  • Add recommendation for semihosting in README.md.
  • Bug fixes
  • Moved to the riscv Cargo workspace
  • Bring in API changes from cortex-m-semihosting, including:
    • Addition of the hprint, hprintln, heprint, heprintln, and dbg macros.
      • hprint and heprintln print to host stdout without and with a newline, respectively.
      • heprint and heprintln do the same, except to host stderr.
      • dbg works exactly like std::dbg.
    • HStdout and HStderr have been combined into HostStream.
    • inline-asm feature removed, switched to stabilized inline asm and MSRV bumped to 1.59.0
  • Clean up documentation, removing unnecessary references to cortex-m-semihosting and improving clarity.
  • Added GitHub Actions CI
  • Add features to select the privilege level the semihosting operations will be started from

v0.0.1 - 2018-02-27

  • Initial release