listenbrainz-rs/CHANGELOG.md

53 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

2021-01-14 02:35:12 +00:00
# Changelog
2022-12-04 23:35:33 +00:00
## v0.5.0 (2022-12-05)
- Made the `release` parameter of `ListenBrainz` methods optional ([#11], [@mgziminsky]).
- This is a breaking change.
[#11]: https://github.com/InputUsername/listenbrainz-rs/pull/11
[@mgziminsky]: https://github.com/mgziminsky
2022-11-16 01:19:10 +00:00
## v0.4.3 (2022-11-16)
- Updated attohttpc dependency.
2022-05-11 23:05:57 +01:00
## v0.4.2 (2022-05-12)
- Added the `ListenBrainz::import()` method to allow importing
listens at a specified timestamp.
2021-12-03 12:04:02 +00:00
## v0.4.1 (2021-12-03)
- Fixed a broken link in the documentation;
- Added the `api_url()` method to `raw::Client` and `ListenBrainz`;
- Implemented `Default` for `raw::Client` and `ListenBrainz`;
- Returns the same as `Client::new()`/`ListenBrainz::new()`.
2021-10-20 23:38:05 +01:00
## v0.4.0 (2021-10-21)
2021-10-19 23:07:03 +01:00
- Added CI builds support ([#1]);
- Added support for alternative ListenBrainz hosts ([#6]);
2021-10-20 23:38:05 +01:00
- Changed from [`ureq`] to [`attohttpc`] for performing HTTP requests ([#7]).
2021-10-19 23:07:03 +01:00
[#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
2021-05-12 19:31:45 +01:00
## v0.3.0 (2021-02-02)
2021-05-12 19:31:45 +01:00
- 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.
2021-01-20 00:14:33 +00:00
## v0.2.0 (2021-01-20)
2021-01-19 22:55:03 +00:00
- `Client` methods don't require `&mut self` anymore;
- Moved `Client`, `models::request` and `models::response` modules to the `raw` module;
2021-01-20 00:13:27 +00:00
- Added the `ListenBrainz` type, a more ergonomic and high-level API client;
- Improved overall documentation, especially for `Client`.
2021-01-19 22:55:03 +00:00
2021-01-14 02:35:12 +00:00
## v0.1.0 (2021-01-14)
Initial release.