mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2025-03-02 13:57:13 +00:00
0.10.0
This commit is contained in:
parent
3120e0708b
commit
1e966542e6
2 changed files with 7 additions and 4 deletions
|
@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.10.0] - 2022-12-27
|
||||
|
||||
### Added
|
||||
- **TagExt**: `TagExt::contains`
|
||||
- **Ilst**: `AtomData::Bool` for the various flag atoms such as `cpil`, `pcst`, etc.
|
||||
|
@ -27,7 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- **Accessor**: All methods returning string values now return `Cow<str>`. ([PR](https://github.com/Serial-ATA/lofty-rs/pull/83))
|
||||
- This is an unfortunate change that needed to be made in order to accommodate the handling of the different
|
||||
possible text separators between ID3v2 versions.
|
||||
- **ID3v2**: Support reading of duplicate tags ([issue](https://github.com/Serial-ATA/lofty-rs/issues/87)) ([PR]((https://github.com/Serial-ATA/lofty-rs/pull/88)))
|
||||
- **ID3v2**: Support reading of duplicate tags ([issue](https://github.com/Serial-ATA/lofty-rs/issues/87)) ([PR](https://github.com/Serial-ATA/lofty-rs/pull/88))
|
||||
- Previously, if we were reading a file and encountered an ID3v2 tag after having already read one,
|
||||
we would overwrite the last one, losing all of its information. Now we preserve all of the information,
|
||||
overwriting frames as necessary.
|
||||
|
@ -358,7 +360,8 @@ This release mostly addresses issues uncovered by fuzzing, thanks to [@5225225](
|
|||
### Removed
|
||||
- `ErrorKind::BadExtension`
|
||||
|
||||
[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.9.0...HEAD
|
||||
[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.10.0...HEAD
|
||||
[0.10.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.9.0...0.10.0
|
||||
[0.9.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.8.1...0.9.0
|
||||
[0.8.1]: https://github.com/Serial-ATA/lofty-rs/compare/0.8.0...0.8.1
|
||||
[0.8.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.7.3...0.8.0
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
[package]
|
||||
name = "lofty"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"]
|
||||
edition = "2021"
|
||||
license = "MIT OR Apache-2.0"
|
||||
description = "Audio metadata library"
|
||||
repository = "https://github.com/Serial-ATA/lofty-rs"
|
||||
keywords = ["tags", "audio", "metadata", "id3", "vorbis"]
|
||||
categories = ["accessibility", "multimedia::audio"]
|
||||
categories = ["multimedia::audio"]
|
||||
readme = "README.md"
|
||||
include = ["src", "Cargo.toml", "LICENSE-APACHE", "LICENSE-MIT", "benches", "SUPPORTED_FORMATS.md"]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue