Skip to content

Commit b44a7ad

Browse files
committed
Version 0.19.0
1 parent cea0365 commit b44a7ad

3 files changed

Lines changed: 12 additions & 5 deletions

File tree

Changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## Version 0.19.0
4+
5+
Released 2025-03-15
6+
7+
- Update to edition 2024
8+
- Stop locking dependency versions - Thanks @shahn
9+
310
## Version 0.18.0
411

512
Released 2025-02-04

autosar-data-specification/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "autosar-data-specification"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
authors = ["Daniel Thaler <daniel@dthaler.de>"]
55
edition = "2024"
66
description = "specification of the Autosar arxml file format as rust data structures"

autosar-data/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "autosar-data"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
authors = ["Daniel Thaler <daniel@dthaler.de>"]
55
edition = "2024"
66
description = "read, write and modify Autosar arxml data"
@@ -10,16 +10,16 @@ categories = ["parser-implementations"]
1010
repository = "https://github.com/DanielT/autosar-data"
1111

1212
[dependencies]
13-
autosar-data-specification = "0.18"
13+
autosar-data-specification = "0.19"
1414
thiserror = "2.0"
15-
smallvec = { version = "1.13.0", features = ["union", "const_generics"]}
15+
smallvec = { version = "1.14.0", features = ["union", "const_generics"]}
1616
parking_lot = "0.12"
1717
indexmap = "2.2.0"
1818
fxhash = "0.2.1"
1919
num-traits = "0.2.18"
2020

2121
[dev-dependencies]
22-
tempfile = "3.8"
22+
tempfile = "3.19"
2323
criterion = { version = "0.5", features = ["html_reports"]}
2424

2525
[[example]]

0 commit comments

Comments
 (0)