Skip to content

Commit

Permalink
Prepare for release 0.5.0 (#40)
Browse files Browse the repository at this point in the history
* Update dependencies

* Update changelog for 0.5.0

* Change version of `audiotags-dev-macro`

* Rename audiotags-dev-macro to audiotags-macro

---------

Co-authored-by: pinkforest <36498018+pinkforest@users.noreply.github.com>
  • Loading branch information
Serial-ATA and pinkforest authored Feb 1, 2024
1 parent e4ee5c9 commit cdf43b5
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 8 deletions.
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 <ShiTianyi2001@outlook.com>"]
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

0 comments on commit cdf43b5

Please sign in to comment.