From ee95e2a224f5db90a1274cf0e74b45c91ddcecf3 Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Fri, 20 Mar 2026 01:42:21 -0400 Subject: [PATCH] chore: release v8.1.1 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3b8b87..a223c00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [9.0.0](https://github.com/oxibus/can-dbc/compare/v8.1.0...v9.0.0) - 2026-03-20 + +### Fixed + +- parse signal min/max as `NumericValue` ([#76](https://github.com/oxibus/can-dbc/pull/76)) +- ast/message_id: use 0x1FFF_FFFF (1<<29 - 1) instead of 2^29 in test ([#77](https://github.com/oxibus/can-dbc/pull/77)) + ## [8.1.0](https://github.com/oxibus/can-dbc/compare/v8.0.1...v8.1.0) - 2026-01-23 ### Added diff --git a/Cargo.toml b/Cargo.toml index 9b85e20..ed90643 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "can-dbc" -version = "8.1.0" +version = "9.0.0" description = "A parser for the DBC format. The DBC format is used to exchange CAN network data." authors = ["marcelbuesing "] categories = ["embedded", "no-std", "encoding", "parsing"]