From 68f5add0e25e0ad92957f1aa7f511ce140600a20 Mon Sep 17 00:00:00 2001 From: Nathan Thomas Date: Sun, 16 Jan 2022 08:37:09 -0800 Subject: [PATCH] Bump version --- pyproject.toml | 2 +- rip/cli.py | 6 ++---- rip/config.toml | 2 +- streamrip/__init__.py | 2 +- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c14b013..4a535df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "streamrip" -version = "1.9.1" +version = "1.9.2" 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/cli.py b/rip/cli.py index ce9b7ea..111b726 100644 --- a/rip/cli.py +++ b/rip/cli.py @@ -131,9 +131,9 @@ class DownloadCommand(Command): import subprocess self.line( - "A new version of streamrip v{newest_version}" + f"\nA new version of streamrip v{newest_version}" " is available! Run pip3 install streamrip --upgrade" - " to update." + " to update.\n" ) md_header = re.compile(r"#\s+(.+)") @@ -152,8 +152,6 @@ class DownloadCommand(Command): self.line(release_notes) - update_p.wait() - return 0 diff --git a/rip/config.toml b/rip/config.toml index 898fa60..8f37bf0 100644 --- a/rip/config.toml +++ b/rip/config.toml @@ -169,4 +169,4 @@ progress_bar = "dainty" [misc] # Metadata to identify this config file. Do not change. -version = "1.9" +version = "1.9.2" diff --git a/streamrip/__init__.py b/streamrip/__init__.py index 33e03de..2003327 100644 --- a/streamrip/__init__.py +++ b/streamrip/__init__.py @@ -1,5 +1,5 @@ """streamrip: the all in one music downloader.""" -__version__ = "1.9.1" +__version__ = "1.9.2" from . import clients, constants, converter, downloadtools, media