Skip to content

Version 3.2

Compare
Choose a tag to compare
@rudrankriyam rudrankriyam released this 02 Aug 05:49
· 102 commits to main since this release

New in this release

Add a few methods to take advantage of MusicLibrarySectionedRequest. Example:

do {
    let songsForArtists = try await MLibrary.songsForArtists()


    for songsForArtist in songsForArtists {
        print("Artist: \(songsForArtist.name)")
        for song in songsForArtist.songs {
            print("Song: \(song.title)")
        }
    }
} catch {
    print("Error fetching songs for artists: \(error)")
}

Enjoy! 🤗