Compare commits

..

No commits in common. "daad9596d04f5f109410b475f26e0f990c07fe97" and "77848d35cdc69841b0da4bf0b1dbfeffd0ec63d6" have entirely different histories.

4 changed files with 8 additions and 20 deletions

View File

@ -1,17 +1,5 @@
# Changelog
## 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
## v0.4.3 (2022-11-16)
- Updated attohttpc dependency.
## v0.4.2 (2022-05-12)
- Added the `ListenBrainz::import()` method to allow importing

View File

@ -1,6 +1,6 @@
[package]
name = "listenbrainz"
version = "0.5.0"
version = "0.4.2"
authors = ["Koen Bolhuis <koen.bolhuis@gmail.com>"]
edition = "2021"
license = "MIT"

View File

@ -21,7 +21,7 @@
//! client.authenticate("LISTENBRAINZ TOKEN")
//! .expect("Could not authenticate with ListenBrainz");
//!
//! client.playing_now("The Beatles", "Here Comes the Sun", Some("Abbey Road"))
//! client.playing_now("The Beatles", "Here Comes the Sun", "Abbey Road")
//! .expect("Could not submit 'playing now' request");
//! ```
//!
@ -34,7 +34,7 @@
//! client.authenticate("MALOJA API KEY")
//! .expect("Could not authenticate with Maloja");
//!
//! client.listen("Lymbyc Systym", "Split Stones", None)
//! client.listen("Lymbyc Systym", "Split Stones", "Split Stones")
//! .expect("Could not submit listen");
//! ```
//!

View File

@ -89,7 +89,7 @@ impl ListenBrainz {
timestamp: Option<i64>,
artist: &str,
track: &str,
release: Option<&str>,
release: &str,
) -> Result<(), Error> {
if !self.is_authenticated() {
return Err(Error::NotAuthenticated);
@ -100,7 +100,7 @@ impl ListenBrainz {
track_metadata: TrackMetadata {
artist_name: artist,
track_name: track,
release_name: release,
release_name: Some(release),
additional_info: None,
},
};
@ -125,7 +125,7 @@ impl ListenBrainz {
/// If not authenticated, returns [`Error::NotAuthenticated`].
/// Otherwise, see the Errors section of [`Client`] for more info on
/// what errors might occur.
pub fn listen(&self, artist: &str, track: &str, release: Option<&str>) -> Result<(), Error> {
pub fn listen(&self, artist: &str, track: &str, release: &str) -> Result<(), Error> {
let now = SystemTime::now()
.duration_since(UNIX_EPOCH)
.unwrap()
@ -144,7 +144,7 @@ impl ListenBrainz {
/// If not authenticated, returns [`Error::NotAuthenticated`].
/// Otherwise, see the Errors section of [`Client`] for more info on
/// what errors might occur.
pub fn import(&self, artist: &str, track: &str, release: Option<&str>, timestamp: i64) -> Result<(), Error> {
pub fn import(&self, artist: &str, track: &str, release: &str, timestamp: i64) -> Result<(), Error> {
self.submit_listen(ListenType::Import, Some(timestamp), artist, track, release)
}
@ -155,7 +155,7 @@ impl ListenBrainz {
/// If not authenticated, returns [`Error::NotAuthenticated`].
/// Otherwise, see the Errors section of [`Client`] for more info on
/// what errors might occur.
pub fn playing_now(&self, artist: &str, track: &str, release: Option<&str>) -> Result<(), Error> {
pub fn playing_now(&self, artist: &str, track: &str, release: &str) -> Result<(), Error> {
self.submit_listen(ListenType::PlayingNow, None, artist, track, release)
}
}