diff --git a/CHANGELOG.md b/CHANGELOG.md index 934daa5..2775650 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# v0.6.1 2024-12-11 + +## Features + +- ✨ Re-exported the [`Client`](https://docs.rs/tetr_ch/0.6.1/tetr_ch/client/struct.Client.html) struct to the [crate root](https://docs.rs/tetr_ch/0.6.1/tetr_ch/index.html#reexports). [#106] + +## Bug Fixes + +- 🐛 Fixed deserialization errors when using the [`Client::get_user_league`](https://docs.rs/tetr_ch/0.6.1/tetr_ch/client/struct.Client.html#method.get_user_league) method. [#102 #107] + - 🛠️ The [`LeagueData`](https://docs.rs/tetr_ch/0.6.1/tetr_ch/model/summary/league/struct.LeagueData.html) struct is now wrapped in new enum [`LeagueDataWrap`](https://docs.rs/tetr_ch/0.6.1/tetr_ch/model/summary/league/enum.LeagueDataWrap.html). [f2e0f232c239f85b1bbe5162f41a938c3057dbfc] +- ⚰️ Removed an unnecessary `dbg` macro call in the [`Client::get_user`](https://docs.rs/tetr_ch/0.6.1/tetr_ch/client/struct.Client.html#method.get_user) method implementation. [#104] + +## Other Changes + +- 📚 Fixed an incorrect link in the `CHANGELOG.md`. [#103] +- 🛠️ Adjusted the examples. [c63f5137e0596fcb05ba2dc9897a3d6521f75599] + +--- + # v0.6.0 2024-12-07 ## Breaking Changes diff --git a/Cargo.toml b/Cargo.toml index 1aace20..e41064f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tetr_ch" description = "A Rust wrapper for the TETRA CHANNEL API. " -version = "0.6.0" +version = "0.6.1" authors = ["Rinrin.rs "] license-file = "LICENSE" repository = "https://github.com/Rinrin0413/tetr-ch-rs.git"