diff --git a/CHANGELOG.md b/CHANGELOG.md index f90d98b..a63aaf3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,22 @@ +## [0.5.0] 2023-11-22 + +- Added support for getting/setting comment - PR: #27 +- Added full date capabilities - PR: #34 +- Fixed `Id3v2Tag::{*year}` methods - PR: #21 fix #9 +- Fixed incorrect access to track fields on disc getters - PR: #26 +- Fixed album artist getting copied to artist field - PR: #29 +- Fixed incorrect option handling for conversion of `ID3v2Tag` to `AnyTag` - PR: #37 fix #36 +- Changed `Tag::read_from_path` return type to `Result>` - PR: #21 fix #8 +- Removed `unwrap` in `Tag::read_from_path` - PR: #21 fix #7 +- Removed needless borrowed reference when getting `Picture` - PR: #28 + + * Thanks to @Serial-ATA, @cdown, @microtonez, @aybruh00, and @BSteffaniak + ## [0.4.1] 2022-08-02 - Add AudioTagEdit::{set_,remove_}composer - PR: #19 fix #4 - * Thanks to @Serial-AtA and @ChousX + * Thanks to @Serial-ATA and @ChousX ## [0.4.0] 2022-08-01 diff --git a/Cargo.toml b/Cargo.toml index 640caba..4517c4e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,17 +11,17 @@ keywords = ["id3", "tag", "tags", "audio", "audiotags"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -id3 = "1.1.0" +id3 = "1.10.0" mp4ameta = "0.11.0" metaflac = "0.2.5" -thiserror = "1.0.31" -audiotags-dev-macro = {path = "./audiotags-dev-macro", version = "0.2.0"} +thiserror = "1.0.50" +audiotags-macro = { version = "0.2", path = "./audiotags-macro" } [dev-dependencies] -tempfile = "3.3.0" +tempfile = "3.8.1" [build-dependencies] -readme-rustdocifier = "0.1.0" +readme-rustdocifier = "0.1.1" [features] default = ['from'] diff --git a/audiotags-dev-macro/.gitignore b/audiotags-macro/.gitignore similarity index 100% rename from audiotags-dev-macro/.gitignore rename to audiotags-macro/.gitignore diff --git a/audiotags-dev-macro/Cargo.toml b/audiotags-macro/Cargo.toml similarity index 92% rename from audiotags-dev-macro/Cargo.toml rename to audiotags-macro/Cargo.toml index 38493c1..7948d09 100644 --- a/audiotags-dev-macro/Cargo.toml +++ b/audiotags-macro/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "audiotags-dev-macro" +name = "audiotags-macro" version = "0.2.0" authors = ["Tianyi "] edition = "2021" diff --git a/audiotags-dev-macro/src/lib.rs b/audiotags-macro/src/lib.rs similarity index 100% rename from audiotags-dev-macro/src/lib.rs rename to audiotags-macro/src/lib.rs diff --git a/src/lib.rs b/src/lib.rs index 35be576..de51aaf 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -61,7 +61,7 @@ //! tag.write_to_path("test.mp3").expect("Fail to save"); //! ``` -pub(crate) use audiotags_dev_macro::*; +pub(crate) use audiotags_macro::*; pub mod anytag; pub use anytag::*;