From d0d146b87fdad3b8977d0e7d88af87942bcc632b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Dudzi=C5=84ski?= Date: Sun, 10 May 2026 13:18:00 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Bump=20version=20to=203.4.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- tiddl/cli/app.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 85dd6d7..d05db1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "tiddl" -version = "3.4.1" +version = "3.4.2" description = "Download Tidal tracks with CLI downloader." readme = "README.md" requires-python = ">=3.13" diff --git a/tiddl/cli/app.py b/tiddl/cli/app.py index 4da5771..da90906 100644 --- a/tiddl/cli/app.py +++ b/tiddl/cli/app.py @@ -13,7 +13,7 @@ log = logging.getLogger("tiddl") app = typer.Typer(name="tiddl", no_args_is_help=True, rich_markup_mode="rich") register_commands(app) -VERSION = "v3.4.1" +VERSION = "v3.4.2" @app.callback()