listenbrainz-rs/CHANGELOG.md

29 lines
997 B
Markdown

# Changelog
## v0.4.0 (2021-10-21)
- Added CI builds support ([#1]);
- Added support for alternative ListenBrainz hosts ([#6]);
- Changed from [`ureq`] to [`attohttpc`] for performing HTTP requests ([#7]).
[#1]: https://github.com/InputUsername/listenbrainz-rs/pull/1
[#6]: https://github.com/InputUsername/listenbrainz-rs/pull/6
[#7]: https://github.com/InputUsername/listenbrainz-rs/pull/7
## v0.3.0 (2021-02-02)
- Added rate limiting information to response types in the `rate_limit` field;
- See the [ListenBrainz API docs](https://listenbrainz.readthedocs.io/en/production/dev/api/#rate-limiting)
for more information on rate limiting.
## v0.2.0 (2021-01-20)
- `Client` methods don't require `&mut self` anymore;
- Moved `Client`, `models::request` and `models::response` modules to the `raw` module;
- Added the `ListenBrainz` type, a more ergonomic and high-level API client;
- Improved overall documentation, especially for `Client`.
## v0.1.0 (2021-01-14)
Initial release.