Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/v0.8.2 #307

Merged
merged 3 commits into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

History
=======
v0.8.2
------
* Fixed wrong determination of file extensions for stream metadata. - exislow_
* Moved LinkLogin and futures to login_oauth. - exislow_
* Added/updated docstrings for auth methods. - exislow_
* Methods for device authorization have been renamed considered private. - exislow_

v0.8.1
------
* Typings: get_urls() returned value shall be `[str]`. - exislow_
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "The tidalapi Developers"

# The full version, including alpha/beta/rc tags
release = "0.8.1"
release = "0.8.2"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion examples/simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# Normal: Quality.low_320k (m4a 320k)
# HiFi: Quality.high_lossless (FLAC)
# HiFi+ Quality.hi_res_lossless (FLAC HI_RES)
session.audio_quality = Quality.hi_res_lossless
session.audio_quality = Quality.high_lossless

# album_id = "77640617" # U2 / Achtung Baby (Max quality: HI_RES MQA, 16bit/44100Hz)
# album_id = "110827651" # The Black Keys / Let's Rock (Max quality: LOSSLESS FLAC, 24bit/48000Hz)
Expand Down
160 changes: 82 additions & 78 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tidalapi"
version = "0.8.1"
version = "0.8.2"
description = "Unofficial API for TIDAL music streaming service."
authors = ["Thomas Amland <[email protected]>"]
maintainers = ["tehkillerbee <[email protected]>"]
Expand Down
4 changes: 3 additions & 1 deletion tests/test_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ def test_page_iterator(session):
elif isinstance(item, tidalapi.Video):
videos += 1

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


Expand Down
2 changes: 1 addition & 1 deletion tidalapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
User,
)

__version__ = "0.8.1"
__version__ = "0.8.2"