Skip to content

v0.3.2

Compare
Choose a tag to compare
@Bogpan Bogpan released this 17 Aug 11:47
· 53 commits to main since this release

Changed

  • Changed the approach to the builders, the public API now being endpoint-oriented.

    Getting an album with the optional market parameter set:

    // before
    let album = spotify.get_album(AlbumQuery::new("id").market("GB")).await?;
    
    // after
    let album = spotify.album("id").market("RO").get().await?;