diff --git a/CHANGELOG.md b/CHANGELOG.md index 648869ffc..50af51e76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - **Vorbis**: Fix panic when reading properties of zero-length files ([issue](https://github.com/Serial-ATA/lofty-rs/issues/342)) ([PR](https://github.com/Serial-ATA/lofty-rs/pull/365)) - **ID3v2**: Fix panic when reading an RVA2 frame with a peak larger than 248 bits ([issue](https://github.com/Serial-ATA/lofty-rs/issues/295)) ([PR](https://github.com/Serial-ATA/lofty-rs/pull/364)) - **WAV**: Length and bitrate values are properly rounded ([PR](https://github.com/Serial-ATA/lofty-rs/pull/367)) +- **ParseOptions**: No longer derives `{PartialOrd, Ord}` ([PR](https://github.com/Serial-ATA/lofty-rs/pull/369)) ## [0.18.2] - 2024-01-23 diff --git a/src/probe.rs b/src/probe.rs index 175e73310..6e691dfd7 100644 --- a/src/probe.rs +++ b/src/probe.rs @@ -22,7 +22,7 @@ use std::io::{BufReader, Cursor, Read, Seek, SeekFrom}; use std::path::Path; /// Options to control how Lofty parses a file -#[derive(Copy, Clone, Debug, Ord, PartialOrd, Eq, PartialEq)] +#[derive(Copy, Clone, Debug, Eq, PartialEq)] #[non_exhaustive] pub struct ParseOptions { pub(crate) read_properties: bool,