Bump version

This commit is contained in:
Nathan Thomas 2022-01-16 08:37:09 -08:00
parent b710f9a164
commit 68f5add0e2
4 changed files with 5 additions and 7 deletions

View file

@ -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 <nathanthomas707@gmail.com>"]
license = "GPL-3.0-only"

View file

@ -131,9 +131,9 @@ class DownloadCommand(Command):
import subprocess
self.line(
"<info>A new version of streamrip <title>v{newest_version}</title>"
f"\n<info>A new version of streamrip <title>v{newest_version}</title>"
" is available! Run <cmd>pip3 install streamrip --upgrade</cmd>"
" to update.</info>"
" to update.</info>\n"
)
md_header = re.compile(r"#\s+(.+)")
@ -152,8 +152,6 @@ class DownloadCommand(Command):
self.line(release_notes)
update_p.wait()
return 0

View file

@ -169,4 +169,4 @@ progress_bar = "dainty"
[misc]
# Metadata to identify this config file. Do not change.
version = "1.9"
version = "1.9.2"

View file

@ -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