Skip to content

Commit

Permalink
Version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielT committed Sep 2, 2024
1 parent 81faca7 commit d8d2f72
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 45 deletions.
98 changes: 57 additions & 41 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Version 2.2.0

- allow the parser to read hex encoded integers where a float is expected (Louis Caron)
- generate Rust enums with values for A2ML enums with values in the a2ml_specification macro
- fix some cases where users of items that were renamed during a merge were not updated to use the new name

## Version 2.1.0

- add handling of /include inside A2ML blocks (Louis Caron)
Expand Down
4 changes: 2 additions & 2 deletions a2lfile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "a2lfile"
version = "2.1.0"
version = "2.2.0"
authors = ["Daniel Thaler <[email protected]>"]
edition = "2021"
description = "read, modify and write a2l files"
Expand All @@ -11,7 +11,7 @@ categories = ["parser-implementations"]
repository = "https://github.com/DanielT/a2lfile"

[dependencies.a2lmacros]
version = "2.1.0"
version = "2.2.0"

[dependencies]
thiserror = "1.0.50"
Expand Down
2 changes: 1 addition & 1 deletion a2lfile/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
a2lfile = "2.1"
a2lfile = "2.2"
```

A simple program based on the `a2lfile` library might look like this:
Expand Down
2 changes: 1 addition & 1 deletion a2lmacros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "a2lmacros"
version = "2.1.0"
version = "2.2.0"
authors = ["Daniel Thaler <[email protected]>"]
edition = "2021"
description = "provides macros in support of the a2lfile crate"
Expand Down

0 comments on commit d8d2f72

Please sign in to comment.