This commit is contained in:
Serial 2023-01-29 12:38:51 -05:00
parent b435484f88
commit be3c0b9ae3
No known key found for this signature in database
GPG key ID: DA95198DC17C4568
2 changed files with 8 additions and 4 deletions

View file

@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.11.0] - 2022-1-29
### Added
- **MP4**:
- The `InitialKey`, `ReplayGain*`, and "precise BPM" identifiers now have `ItemKey` mappings ([PR](https://github.com/Serial-ATA/lofty-rs/pull/93))
@ -42,6 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **Tag**: Handling of the `Year` tag has been improved.
- Previously, setting a year with `Tag::set_year` required a `RecordingDate`. Now it will check if the format
supports the `Year` tag, and if not, then it will set a `RecordingDate`.
- **OGG**: Writing of large packets would corrupt the stream ([issue](https://github.com/Serial-ATA/lofty-rs/issues/130)) ([PR](https://github.com/Serial-ATA/lofty-rs/issues/131))
### ogg_pager
See [ogg_pager's changelog](ogg_pager/CHANGELOG.md).
@ -393,7 +396,8 @@ See [ogg_pager's changelog](ogg_pager/CHANGELOG.md).
### Removed
- `ErrorKind::BadExtension`
[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.10.0...HEAD
[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.11.0...HEAD
[0.11.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.10.0...0.11.0
[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

View file

@ -1,6 +1,6 @@
[package]
name = "lofty"
version = "0.10.0"
version = "0.11.0"
authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
@ -20,11 +20,11 @@ cfg-if = "1.0.0"
# ID3 compressed frames
flate2 = { version = "1.0.25", optional = true }
# Proc macros
lofty_attr = { path = "lofty_attr" }
lofty_attr = "0.6.0"
# Debug logging
log = "0.4.17"
# OGG Vorbis/Opus
ogg_pager = { path = "ogg_pager" }
ogg_pager = "0.5.0"
# Key maps
once_cell = "1.16.0"
paste = "1.0.11"