From f5c8e9658032d79be61ea1c0a5a782fe310d8546 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Dudzi=C5=84ski?= Date: Tue, 7 Jul 2026 15:45:07 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Bump=20version=20to=203.4.4?= 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 d03cbb6..d4bc4aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "tiddl" -version = "3.4.4a1" +version = "3.4.4" 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 337505d..5909d05 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.4a1" +VERSION = "v3.4.4" @app.callback()