Skip to content

Commit be3c0b9

Browse files
committed
0.11.0
1 parent b435484 commit be3c0b9

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
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.11.0] - 2022-1-29
10+
911
### Added
1012
- **MP4**:
1113
- 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
4244
- **Tag**: Handling of the `Year` tag has been improved.
4345
- Previously, setting a year with `Tag::set_year` required a `RecordingDate`. Now it will check if the format
4446
supports the `Year` tag, and if not, then it will set a `RecordingDate`.
47+
- **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))
4548

4649
### ogg_pager
4750
See [ogg_pager's changelog](ogg_pager/CHANGELOG.md).
@@ -393,7 +396,8 @@ See [ogg_pager's changelog](ogg_pager/CHANGELOG.md).
393396
### Removed
394397
- `ErrorKind::BadExtension`
395398

396-
[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.10.0...HEAD
399+
[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.11.0...HEAD
400+
[0.11.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.10.0...0.11.0
397401
[0.10.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.9.0...0.10.0
398402
[0.9.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.8.1...0.9.0
399403
[0.8.1]: https://github.com/Serial-ATA/lofty-rs/compare/0.8.0...0.8.1

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lofty"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["Serial <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -20,11 +20,11 @@ cfg-if = "1.0.0"
2020
# ID3 compressed frames
2121
flate2 = { version = "1.0.25", optional = true }
2222
# Proc macros
23-
lofty_attr = { path = "lofty_attr" }
23+
lofty_attr = "0.6.0"
2424
# Debug logging
2525
log = "0.4.17"
2626
# OGG Vorbis/Opus
27-
ogg_pager = { path = "ogg_pager" }
27+
ogg_pager = "0.5.0"
2828
# Key maps
2929
once_cell = "1.16.0"
3030
paste = "1.0.11"

0 commit comments

Comments
 (0)