Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for release 0.5.0 #40

Merged
merged 4 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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<Box<dyn AudioTag + Send + Sync>>` - 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

Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "audiotags-dev-macro"
name = "audiotags-macro"
version = "0.2.0"
authors = ["Tianyi <[email protected]>"]
edition = "2021"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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::*;
Expand Down
Loading