Skip to content

Commit e0bea0c

Browse files
committed
0.19.1
1 parent 7951082 commit e0bea0c

File tree

5 files changed

+24
-20
lines changed

5 files changed

+24
-20
lines changed

CHANGELOG.md

Lines changed: 4 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.19.1] - 2024-04-26
10+
911
### Added
1012
- **Truncate**: `impl<T: Truncate> Truncate for &mut T` ([PR](https://github.com/Serial-ATA/lofty-rs/pull/384))
1113
- **Length**: `impl<T: Length> Truncate for &T` ([PR](https://github.com/Serial-ATA/lofty-rs/pull/384))
@@ -724,7 +726,8 @@ See [ogg_pager's changelog](ogg_pager/CHANGELOG.md).
724726
### Removed
725727
- `ErrorKind::BadExtension`
726728

727-
[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.19.0...HEAD
729+
[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.19.1...HEAD
730+
[0.19.1]: https://github.com/Serial-ATA/lofty-rs/compare/0.19.0...0.19.1
728731
[0.19.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.18.2...0.19.0
729732
[0.18.2]: https://github.com/Serial-ATA/lofty-rs/compare/0.18.1...0.18.2
730733
[0.18.1]: https://github.com/Serial-ATA/lofty-rs/compare/0.18.0...0.18.1

SUPPORTED_FORMATS.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

SUPPORTED_FORMATS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
./lofty/SUPPORTED_FORMATS.md

lofty/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "lofty"
3-
version = "0.19.0"
3+
version = "0.19.1"
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"]
1010
categories = ["multimedia", "multimedia::audio", "parser-implementations"]
11-
readme = "README.md"
11+
readme = "../README.md"
1212
include = ["src", "LICENSE-APACHE", "LICENSE-MIT", "SUPPORTED_FORMATS.md"]
1313

1414
[dependencies]

lofty/SUPPORTED_FORMATS.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
| File Format | Metadata Format(s) |
2+
|-------------|------------------------------|
3+
| AAC (ADTS) | `ID3v2`, `ID3v1` |
4+
| Ape | `APE`, `ID3v2`\*, `ID3v1` |
5+
| AIFF | `ID3v2`, `Text Chunks` |
6+
| FLAC | `Vorbis Comments`, `ID3v2`\* |
7+
| MP3 | `ID3v2`, `ID3v1`, `APE` |
8+
| MP4 | `iTunes-style ilst` |
9+
| MPC | `APE`, `ID3v2`\*, `ID3v1`\* |
10+
| Opus | `Vorbis Comments` |
11+
| Ogg Vorbis | `Vorbis Comments` |
12+
| Speex | `Vorbis Comments` |
13+
| WAV | `ID3v2`, `RIFF INFO` |
14+
| WavPack | `APE`, `ID3v1` |
15+
16+
\* The tag will be **read only**, due to lack of official support

lofty/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//! Parse, convert, and write metadata to audio formats.
66
//!
77
//! # Supported Formats
8-
#![doc = include_str!("../../SUPPORTED_FORMATS.md")]
8+
#![doc = include_str!("../SUPPORTED_FORMATS.md")]
99
//! # Examples
1010
//!
1111
//! ## Reading a generic file

0 commit comments

Comments
 (0)