Skip to content

Commit 1e96654

Browse files
committed
0.10.0
1 parent 3120e07 commit 1e96654

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.10.0] - 2022-12-27
10+
911
### Added
1012
- **TagExt**: `TagExt::contains`
1113
- **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
2729
- **Accessor**: All methods returning string values now return `Cow<str>`. ([PR](https://github.com/Serial-ATA/lofty-rs/pull/83))
2830
- This is an unfortunate change that needed to be made in order to accommodate the handling of the different
2931
possible text separators between ID3v2 versions.
30-
- **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)))
32+
- **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))
3133
- Previously, if we were reading a file and encountered an ID3v2 tag after having already read one,
3234
we would overwrite the last one, losing all of its information. Now we preserve all of the information,
3335
overwriting frames as necessary.
@@ -358,7 +360,8 @@ This release mostly addresses issues uncovered by fuzzing, thanks to [@5225225](
358360
### Removed
359361
- `ErrorKind::BadExtension`
360362

361-
[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.9.0...HEAD
363+
[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.10.0...HEAD
364+
[0.10.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.9.0...0.10.0
362365
[0.9.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.8.1...0.9.0
363366
[0.8.1]: https://github.com/Serial-ATA/lofty-rs/compare/0.8.0...0.8.1
364367
[0.8.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.7.3...0.8.0

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "lofty"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
description = "Audio metadata library"
88
repository = "https://github.com/Serial-ATA/lofty-rs"
99
keywords = ["tags", "audio", "metadata", "id3", "vorbis"]
10-
categories = ["accessibility", "multimedia::audio"]
10+
categories = ["multimedia::audio"]
1111
readme = "README.md"
1212
include = ["src", "Cargo.toml", "LICENSE-APACHE", "LICENSE-MIT", "benches", "SUPPORTED_FORMATS.md"]
1313

0 commit comments

Comments
 (0)