Skip to content

Releases: nyurik/automotive_diag

v0.1.9

24 Jul 20:12
Compare
Choose a tag to compare

Minor CI update

Full Changelog: v0.1.8...v0.1.9

v0.1.8

01 Jul 11:21
f4ae6c7
Compare
Choose a tag to compare

What's Changed

  • Add iter and from_repr support, switch to strum crate by @nyurik in #11
    • Add from_repr(u8) -> Option<Enum> to all Enums
      • this is a better method than try_from because Option<T> is likely to be smaller than Result<T, &str>
    • Add Enum::iter() - enabled by default with the iter feature
    • Switch to strum crate
    • Do not expose internal macros
    • Fail to compile if none of the with-kwp2000, with-obd2, or with-uds features are enabled.
  • Add optional serde feature by @nyurik in #12

Full Changelog: v0.1.7...v0.1.8

v0.1.7

20 Jun 09:12
6c541bd
Compare
Choose a tag to compare

What's Changed

  • Streamlined CI by @nyurik in #9
    • perform better CI tests including MSRV using common code in the just file
    • perform semver check
    • auto-publish the crate
  • Minor doc comment changes (e.g. removed empty comments and added a few backtick quotes)