From e0bea0c21a18188a00c209ad439e72909683feda Mon Sep 17 00:00:00 2001 From: Serial <69764315+Serial-ATA@users.noreply.github.com> Date: Fri, 26 Apr 2024 09:43:34 -0400 Subject: [PATCH] 0.19.1 --- CHANGELOG.md | 5 ++++- SUPPORTED_FORMATS.md | 17 +---------------- lofty/Cargo.toml | 4 ++-- lofty/SUPPORTED_FORMATS.md | 16 ++++++++++++++++ lofty/src/lib.rs | 2 +- 5 files changed, 24 insertions(+), 20 deletions(-) mode change 100644 => 120000 SUPPORTED_FORMATS.md create mode 100644 lofty/SUPPORTED_FORMATS.md diff --git a/CHANGELOG.md b/CHANGELOG.md index fd483667..251a4072 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.19.1] - 2024-04-26 + ### Added - **Truncate**: `impl Truncate for &mut T` ([PR](https://github.com/Serial-ATA/lofty-rs/pull/384)) - **Length**: `impl 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). ### Removed - `ErrorKind::BadExtension` -[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.19.0...HEAD +[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.19.1...HEAD +[0.19.1]: https://github.com/Serial-ATA/lofty-rs/compare/0.19.0...0.19.1 [0.19.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.18.2...0.19.0 [0.18.2]: https://github.com/Serial-ATA/lofty-rs/compare/0.18.1...0.18.2 [0.18.1]: https://github.com/Serial-ATA/lofty-rs/compare/0.18.0...0.18.1 diff --git a/SUPPORTED_FORMATS.md b/SUPPORTED_FORMATS.md deleted file mode 100644 index 659e3592..00000000 --- a/SUPPORTED_FORMATS.md +++ /dev/null @@ -1,16 +0,0 @@ -| File Format | Metadata Format(s) | -|-------------|------------------------------| -| AAC (ADTS) | `ID3v2`, `ID3v1` | -| Ape | `APE`, `ID3v2`\*, `ID3v1` | -| AIFF | `ID3v2`, `Text Chunks` | -| FLAC | `Vorbis Comments`, `ID3v2`\* | -| MP3 | `ID3v2`, `ID3v1`, `APE` | -| MP4 | `iTunes-style ilst` | -| MPC | `APE`, `ID3v2`\*, `ID3v1`\* | -| Opus | `Vorbis Comments` | -| Ogg Vorbis | `Vorbis Comments` | -| Speex | `Vorbis Comments` | -| WAV | `ID3v2`, `RIFF INFO` | -| WavPack | `APE`, `ID3v1` | - -\* The tag will be **read only**, due to lack of official support diff --git a/SUPPORTED_FORMATS.md b/SUPPORTED_FORMATS.md new file mode 120000 index 00000000..b38765a3 --- /dev/null +++ b/SUPPORTED_FORMATS.md @@ -0,0 +1 @@ +./lofty/SUPPORTED_FORMATS.md \ No newline at end of file diff --git a/lofty/Cargo.toml b/lofty/Cargo.toml index 04540aef..a8c5c2a3 100644 --- a/lofty/Cargo.toml +++ b/lofty/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lofty" -version = "0.19.0" +version = "0.19.1" authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"] edition = "2021" license = "MIT OR Apache-2.0" @@ -8,7 +8,7 @@ description = "Audio metadata library" repository = "https://github.com/Serial-ATA/lofty-rs" keywords = ["tags", "audio", "metadata", "id3", "vorbis"] categories = ["multimedia", "multimedia::audio", "parser-implementations"] -readme = "README.md" +readme = "../README.md" include = ["src", "LICENSE-APACHE", "LICENSE-MIT", "SUPPORTED_FORMATS.md"] [dependencies] diff --git a/lofty/SUPPORTED_FORMATS.md b/lofty/SUPPORTED_FORMATS.md new file mode 100644 index 00000000..659e3592 --- /dev/null +++ b/lofty/SUPPORTED_FORMATS.md @@ -0,0 +1,16 @@ +| File Format | Metadata Format(s) | +|-------------|------------------------------| +| AAC (ADTS) | `ID3v2`, `ID3v1` | +| Ape | `APE`, `ID3v2`\*, `ID3v1` | +| AIFF | `ID3v2`, `Text Chunks` | +| FLAC | `Vorbis Comments`, `ID3v2`\* | +| MP3 | `ID3v2`, `ID3v1`, `APE` | +| MP4 | `iTunes-style ilst` | +| MPC | `APE`, `ID3v2`\*, `ID3v1`\* | +| Opus | `Vorbis Comments` | +| Ogg Vorbis | `Vorbis Comments` | +| Speex | `Vorbis Comments` | +| WAV | `ID3v2`, `RIFF INFO` | +| WavPack | `APE`, `ID3v1` | + +\* The tag will be **read only**, due to lack of official support diff --git a/lofty/src/lib.rs b/lofty/src/lib.rs index 65269145..22ef81ca 100644 --- a/lofty/src/lib.rs +++ b/lofty/src/lib.rs @@ -5,7 +5,7 @@ //! Parse, convert, and write metadata to audio formats. //! //! # Supported Formats -#![doc = include_str!("../../SUPPORTED_FORMATS.md")] +#![doc = include_str!("../SUPPORTED_FORMATS.md")] //! # Examples //! //! ## Reading a generic file