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
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

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

### Other

- relicense as `MIT OR Apache-2.0` ([#38](https://github.com/oxibus/can-dbc/pull/38))
- auto-release and `cargo deny` ([#39](https://github.com/oxibus/can-dbc/pull/39))
- move test files to submodule, default with serde feature ([#40](https://github.com/oxibus/can-dbc/pull/40))
- upload coverage reports
- update README to oxibus org ([#37](https://github.com/oxibus/can-dbc/pull/37))
- allow space after message ID ([#25](https://github.com/oxibus/can-dbc/pull/25))
- upgrade to nom 8 ([#36](https://github.com/oxibus/can-dbc/pull/36))
- add automatic validation with precommit on CI side ([#30](https://github.com/oxibus/can-dbc/pull/30))
- *(ci)* modernize CI ([#33](https://github.com/oxibus/can-dbc/pull/33))
- cleanup a few clippy lints
- consolidate docs with readme
- use `insta` to test all parsing results
- use `clap-derive` in example
- run `cargo fmt`
- bump dependencies and minor cleanup
- Simplify tests, test for other escaped characters
- Remove obsolete is_quote function
- Add support for escaped strings within comments
- Also derive the Deserialize trait when serde is enabled
# Change Log
Copy link

Copilot AI Oct 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are now two different changelog headers: 'Changelog' (line 1) and 'Change Log' (line 33). Consider consolidating to use consistent formatting throughout the file.

Suggested change
# Change Log
# Changelog

Copilot uses AI. Check for mistakes.


## [6.0.0](https://github.com/oxibus/can-dbc/tree/6.0.0) (2024-02-08)
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 = "6.0.0"
version = "7.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