Skip to content

Commit

Permalink
updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
mpalazzolo committed May 9, 2021
1 parent b8d5d1d commit ab1d5b6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ for item in results['results']['albums']['data']:
- v1.0.2 - Added Windows search support - 01/21/2019
- v1.0.3 - Fixed error handling of HTTPError - 11/03/2019
- v1.0.4 - Fixed error with reading token - 01/24/2021
- v1.0.5 - Refresh token before request if token is expired - 05/09/2021

## Authors

Expand Down
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ v1.0.1 - Updated package info on PyPI - 12/16/2018
v1.0.2 - Added Windows search support - 01/21/2019
v1.0.3 - Fixed error handling of HTTPError - 11/03/2019
v1.0.4 - Fixed error with reading token - 01/24/2021
v1.0.5 - Refresh token before request if token is expired - 05/09/2021

Authors
^^^^^^^
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
setup(
name='apple-music-python',
url='https://github.com/mpalazzolo/apple-music-python',
version='1.0.4',
version='1.0.5',
packages=['applemusicpy'],
license='LICENSE.txt',
author='Matt Palazzolo',
Expand All @@ -15,8 +15,8 @@
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'requests>=2.20.1',
'pyjwt>=1.6.4',
'cryptography>=2.4.2'
'requests>=2.21',
'pyjwt>=1.7.1',
'cryptography>=3.2'
],
)

0 comments on commit ab1d5b6

Please sign in to comment.