Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [8.0.0](https://github.com/oxibus/can-dbc/compare/v7.0.0...v8.0.0) - 2025-10-23

### Added

- skip serializing empty vectors in various structs ([#55](https://github.com/oxibus/can-dbc/pull/55))

### Fixed

- [**breaking**] trim whitespace from attribute definitions ([#58](https://github.com/oxibus/can-dbc/pull/58))
- correctly feature gate default features ([#53](https://github.com/oxibus/can-dbc/pull/53))

### Other

- rework testing framework ([#57](https://github.com/oxibus/can-dbc/pull/57))
- [**breaking**] remove deprecated `from_str` method from `Dbc` implementation ([#50](https://github.com/oxibus/can-dbc/pull/50))
- [**breaking**] change Node to hold a single string, i.e. `nodes: Vec<Node>` ([#54](https://github.com/oxibus/can-dbc/pull/54))
- move tests to separate files ([#52](https://github.com/oxibus/can-dbc/pull/52))
- reorganize tests ([#49](https://github.com/oxibus/can-dbc/pull/49))

## [7.0.0](https://github.com/oxibus/can-dbc/compare/v6.0.0...v7.0.0) - 2025-10-19

**NOTE**: `can-dbc` has moved to the [OxiBUS](https://github.com/oxibus) GitHub org - a community developing Rust code with focus on communication in automotive and related spaces. If you are maintaining an open source Rust project in this area, consider joining us - it is always easier to maintain projects together!
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "can-dbc"
version = "7.0.0"
version = "8.0.0"
license = "MIT OR Apache-2.0"
description = "A parser for the DBC format. The DBC format is used to exchange CAN network data."
repository = "https://github.com/oxibus/can-dbc"
Expand Down