Skip to content
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
- Enables the parsing of elements defined in another namespace in Person constructs [`#91`](https://github.com/rust-syndication/atom/pull/91)
- Update `quick-xml` to `0.38` [`#92`](https://github.com/rust-syndication/atom/pull/92)
- Bump MSRV (Minimum Supported Rust Version) from 1.57.0 to 1.83.0
- Replace `Never` type from the `never` crate with `Infallible` from std [`#93`](https://github.com/rust-syndication/atom/pull/93)
- Update `quick-xml` to `0.39` [`#94`](https://github.com/rust-syndication/atom/pull/94)

## 0.12.7 - 2025-02-16

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ rust-version = "1.83"

[dependencies]
diligent-date-parser = "0.1.3"
quick-xml = { version = "0.38", features = ["encoding"] }
quick-xml = { version = "0.39", features = ["encoding"] }
chrono = { version = "0.4", default-features = false, features = ["alloc"] }
derive_builder = { version = "0.20", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] }
Expand Down
Loading