From b4ef97730767292e861ced0cf368e461c2d78217 Mon Sep 17 00:00:00 2001 From: Nathan Thomas Date: Fri, 13 Aug 2021 16:22:01 -0700 Subject: [PATCH] Bump version --- pyproject.toml | 2 +- rip/config.toml | 5 +++-- streamrip/__init__.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b96ac6d1..46df234f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "streamrip" -version = "1.2" +version = "1.3" description = "A fast, all-in-one music ripper for Qobuz, Deezer, Tidal, and SoundCloud" authors = ["nathom "] license = "GPL-3.0-only" diff --git a/rip/config.toml b/rip/config.toml index 58777ab1..26ee7cf2 100644 --- a/rip/config.toml +++ b/rip/config.toml @@ -50,7 +50,8 @@ token_expiry = "" # are automatically limited to quality = 1 quality = 2 # An authentication cookie that allows streamrip to use your Deezer account -# See [ADD LINK] for instructions on how to find this +# See https://github.com/nathom/streamrip/wiki/Finding-Your-Deezer-ARL-Cookie +# for instructions on how to find this arl = "" # This allows for free 320kbps MP3 downloads from Deezer # If an arl is provided, deezloader is never used @@ -156,4 +157,4 @@ progress_bar = "dainty" [misc] # Metadata to identify this config file. Do not change. -version = "1.2" +version = "1.3" diff --git a/streamrip/__init__.py b/streamrip/__init__.py index 85f07b75..b97da750 100644 --- a/streamrip/__init__.py +++ b/streamrip/__init__.py @@ -1,5 +1,5 @@ """streamrip: the all in one music downloader.""" -__version__ = "1.2" +__version__ = "1.3" from . import clients, constants, converter, media