Skip to content

Commit b17c8b2

Browse files
authored
Merge pull request #307 from tamland/feature/v0.8.2
Feature/v0.8.2
2 parents 9c451c7 + a174c14 commit b17c8b2

File tree

7 files changed

+96
-83
lines changed

7 files changed

+96
-83
lines changed

HISTORY.rst

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
33
History
44
=======
5+
v0.8.2
6+
------
7+
* Fixed wrong determination of file extensions for stream metadata. - exislow_
8+
* Moved LinkLogin and futures to login_oauth. - exislow_
9+
* Added/updated docstrings for auth methods. - exislow_
10+
* Methods for device authorization have been renamed considered private. - exislow_
11+
512
v0.8.1
613
------
714
* Typings: get_urls() returned value shall be `[str]`. - exislow_

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = "The tidalapi Developers"
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = "0.8.1"
26+
release = "0.8.2"
2727

2828

2929
# -- General configuration ---------------------------------------------------

examples/simple.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# Normal: Quality.low_320k (m4a 320k)
3535
# HiFi: Quality.high_lossless (FLAC)
3636
# HiFi+ Quality.hi_res_lossless (FLAC HI_RES)
37-
session.audio_quality = Quality.hi_res_lossless
37+
session.audio_quality = Quality.high_lossless
3838

3939
# album_id = "77640617" # U2 / Achtung Baby (Max quality: HI_RES MQA, 16bit/44100Hz)
4040
# album_id = "110827651" # The Black Keys / Let's Rock (Max quality: LOSSLESS FLAC, 24bit/48000Hz)

poetry.lock

+82-78
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tidalapi"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
description = "Unofficial API for TIDAL music streaming service."
55
authors = ["Thomas Amland <[email protected]>"]
66
maintainers = ["tehkillerbee <[email protected]>"]

tests/test_page.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ def test_page_iterator(session):
108108
elif isinstance(item, tidalapi.Video):
109109
videos += 1
110110

111-
assert playlists == 19
111+
# Number of playlists tend to change, resulting in failing tests.
112+
# So we will make sure at least 10 playlists are returned.
113+
assert playlists >= 10
112114
assert videos == 30
113115

114116

tidalapi/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
User,
2020
)
2121

22-
__version__ = "0.8.1"
22+
__version__ = "0.8.2"

0 commit comments

Comments
 (0)