diff --git a/CHANGELOG.md b/CHANGELOG.md index 606344fa..0bad66bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,15 +24,11 @@ Add your changes below. - Audiobook integration tests - Edited docstrings for certain functions in client.py for functions that are no longer in use and have been replaced. - `current_user_unfollow_playlist()` now supports playlist IDs, URLs, and URIs rather than previously where it only supported playlist IDs. +- replaced %s strings with f-strings ### Removed - `mock` no longer listed as a test dependency. Only built-in `unittest.mock` is actually used. -## [2.24.1] - 2024-11-11 - -### Changed -- replaced %s strings with f-strings - ## [2.24.0] - 2024-05-30 ### Added diff --git a/setup.py b/setup.py index 6cc2f251..be5a982c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name='spotipy', - version='2.24.1', + version='2.24.0', description='A light weight Python library for the Spotify Web API', long_description=long_description, long_description_content_type="text/markdown",