Skip to content

Commit eaca998

Browse files
Bump to 2.6.0
1 parent f54830e commit eaca998

File tree

9 files changed

+117
-101
lines changed

9 files changed

+117
-101
lines changed

.travis.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 111 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,111 @@
1-
- 1.0 - 04/05/2014 - Initial release
2-
- 1.1 - 05/18/2014 - Repackaged for saner imports
3-
- 1.4.1 - 06/17/2014 - Updates to match released API
4-
- 1.4.2 - 06/21/2014 - Added support for retrieving starred playlists
5-
- v1.40, June 12, 2014 -- Initial public release.
6-
- v1.42, June 19, 2014 -- Removed dependency on simplejson
7-
- v1.43, June 27, 2014 -- Fixed JSON handling issue
8-
- v1.44, July 3, 2014 -- Added show tracks.py example
9-
- v1.45, July 7, 2014 -- Support for related artists endpoint. Don't use cache auth codes when scope changes
10-
- v1.49, July 23, 2014 -- Support for "Your Music" tracks (add, delete, get), with examples
11-
- v1.50, August 14, 2014 -- Refactored util out of examples and into the main package
12-
- v1.301, August 19, 2014 -- Upgraded version number to take precedence over previously botched release (sigh)
13-
- v1.310, August 20, 2014 -- Added playlist replace and remove methods. Added auth tests. Improved API docs
14-
- v2.0 - August 22, 2014 -- Upgraded APIs and docs to make it be a real library
15-
- v2.0.2 - August 25, 2014 -- Moved to spotipy at pypi
16-
- v2.1.0 - October 25, 2014 -- Added support for new_releases and featured_playlists
17-
- v2.2.0 - November 15, 2014 -- Added support for user_playlist_tracks
18-
- v2.3.0 - January 5, 2015 -- Added session support added by akx.
19-
- v2.3.2 - March 31, 2015 -- Added auto retry logic
20-
- v2.3.3 - April 1, 2015 -- added client credential flow
21-
- v2.3.5 - April 28, 2015 -- Fixed bug in auto retry logic
22-
- v2.3.6 - June 3, 2015 -- Support for offset/limit with album_tracks API
23-
- v2.3.7 - August 10, 2015 -- Added current_user_followed_artists
24-
- v2.3.8 - March 30, 2016 -- Added recs, audio features, user top lists
25-
- v2.4.0 - December 31, 2016 -- Incorporated a number of PRs
26-
- v2.4.1 - January 2, 2017 -- Incorporated proxy support
27-
- v2.4.2 - January 2, 2017 -- support getting audio features for a single track
28-
- v2.4.3 - January 2, 2017 -- fixed proxy issue in standard auth flow
29-
- v2.4.4 - January 4, 2017 -- python 3 fix
30-
- v2.5.0 - January 11, 2020 -- Added follow and player endpoints
31-
- Unreleased
32-
- Added:
33-
- support for `playlist()`
34-
- support for `current_user_saved_albums_delete()`
35-
- support for `current_user_saved_albums_contains()`
36-
- support for `user_unfollow_artists()`
37-
- support for `user_unfollow_users()`
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [2.6.0] - 2020-01-12
10+
11+
### Added
12+
- Support for `playlist` to get a playlist without specifying a user
13+
- Support for `current_user_saved_albums_delete`
14+
- Support for `current_user_saved_albums_contains`
15+
- Support for `user_unfollow_artists`
16+
- Support for `user_unfollow_users`
17+
- Lint with flake8 using Github action
18+
19+
### Changed
20+
- Fix typos in doc
21+
- Start following [SemVer](https://semver.org) properly
22+
23+
## [2.5.0] - 2020-01-11
24+
Added follow and player endpoints
25+
26+
## [2.4.4] - 2017-01-04
27+
Python 3 fix
28+
29+
## [2.4.3] - 2017-01-02
30+
Fixed proxy issue in standard auth flow
31+
32+
## [2.4.2] - 2017-01-02
33+
Support getting audio features for a single track
34+
35+
## [2.4.1] - 2017-01-02
36+
Incorporated proxy support
37+
38+
## [2.4.0] - 2016-12-31
39+
Incorporated a number of PRs
40+
41+
## [2.3.8] - 2016-03-31
42+
Added recs, audio features, user top lists
43+
44+
## [2.3.7] - 2015-08-10
45+
Added current_user_followed_artists
46+
47+
## [2.3.6] - 2015-06-03
48+
Support for offset/limit with album_tracks API
49+
50+
## [2.3.5] - 2015-04-28
51+
Fixed bug in auto retry logic
52+
53+
## [2.3.3] - 2015-04-01
54+
Aadded client credential flow
55+
56+
## [2.3.2] - 2015-03-31
57+
Added auto retry logic
58+
59+
## [2.3.0] - 2015-01-05
60+
Added session support added by akx.
61+
62+
## [2.2.0] - 2014-11-15
63+
Added support for user_playlist_tracks
64+
65+
## [2.1.0] - 2014-10-25
66+
Added support for new_releases and featured_playlists
67+
68+
## [2.0.2] - 2014-08-25
69+
Moved to spotipy at pypi
70+
71+
## [1.2.0] - 2014-08-22
72+
Upgraded APIs and docs to make it be a real library
73+
74+
## [1.310.0] - 2014-08-20
75+
Added playlist replace and remove methods. Added auth tests. Improved API docs
76+
77+
## [1.301.0] - 2014-08-19
78+
Upgraded version number to take precedence over previously botched release (sigh)
79+
80+
## [1.50.0] - 2014-08-14
81+
Refactored util out of examples and into the main package
82+
83+
## [1.49.0] - 2014-07-23
84+
Support for "Your Music" tracks (add, delete, get), with examples
85+
86+
## [1.45.0] - 2014-07-07
87+
Support for related artists endpoint. Don't use cache auth codes when scope changes
88+
89+
## [1.44.0] - 2014-07-03
90+
Added show tracks.py example
91+
92+
## [1.43.0] - 2014-06-27
93+
Fixed JSON handling issue
94+
95+
## [1.42.0] - 2014-06-19
96+
Removed dependency on simplejson
97+
98+
## [1.40.0] - 2014-06-12
99+
Initial public release.
100+
101+
## [1.4.2] - 2014-06-21
102+
Added support for retrieving starred playlists
103+
104+
## [1.1.0] - 2014-06-17
105+
Updates to match released API
106+
107+
## [1.1.0] - 2014-05-18
108+
Repackaged for saner imports
109+
110+
## [1.0.0] - 2017-04-05
111+
Initial release
File renamed without changes.

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# Spotipy - a Python client for The Spotify Web API
1+
# Spotipy
22

3-
## Description
3+
##### A light weight Python library for the Spotify Web API
4+
5+
[![Documentation Status](https://readthedocs.org/projects/spotipy/badge/?version=latest)](https://spotipy.readthedocs.io/en/latest/?badge=latest)
46

5-
Spotipy is a thin client library for the Spotify Web API.
67

78
## Documentation
89

deploy

Lines changed: 0 additions & 18 deletions
This file was deleted.

redirect_page.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
mock==2.0.0
22
requests==2.3.0
3-
simplejson==3.13.2
43
six==1.10.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name='spotipy',
7-
version='2.5.0',
7+
version='2.6.0',
88
long_description=desc,
99
long_description_content_type='text/markdown',
1010
author="@plamere",
@@ -15,5 +15,5 @@
1515
'requests>=2.3.0',
1616
'six>=1.10.0',
1717
],
18-
license='LICENSE.txt',
18+
license='LICENSE.md',
1919
packages=['spotipy'])

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ envlist = py27,py34
33
[testenv]
44
deps=
55
requests
6-
simplejson
76
six
87
py27: mock
98
commands=python -m unittest discover -v tests

0 commit comments

Comments
 (0)