Skip to content

Commit

Permalink
Version 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielT committed Oct 24, 2024
1 parent c9af34d commit 7d52efc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## Version 0.15

Released 2024-10-24

### Api

- Allow specifying a max depth for elements_dfs - Thanks @shahn
- Add additional info the the errors `ElementInsertionConflict` and `ElementNotFound`

### Fixes

- when loading two or more files, the model merging code could hang in an endless loop
- XML allows attributes in single quotes, but the parser did not accept this

## Version 0.14

Released 2024-08-16
Expand Down
2 changes: 1 addition & 1 deletion autosar-data-specification/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autosar-data-specification"
version = "0.14.0"
version = "0.15.0"
authors = ["Daniel Thaler <[email protected]>"]
edition = "2021"
description = "specification of the Autosar arxml file format as rust data structures"
Expand Down
4 changes: 2 additions & 2 deletions autosar-data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autosar-data"
version = "0.14.0"
version = "0.15.0"
authors = ["Daniel Thaler <[email protected]>"]
edition = "2021"
description = "read, write and modify Autosar arxml data"
Expand All @@ -10,7 +10,7 @@ categories = ["parser-implementations"]
repository = "https://github.com/DanielT/autosar-data"

[dependencies]
autosar-data-specification = "0.14"
autosar-data-specification = "0.15"
thiserror = "~1.0"
smallvec = { version = "~1.13.0", features = ["union", "const_generics"]}
parking_lot = "0.12"
Expand Down

0 comments on commit 7d52efc

Please sign in to comment.