From 132d3549f955d1fa1d2bb8eb98dc6c2a421779c2 Mon Sep 17 00:00:00 2001 From: Andy Date: Wed, 11 Feb 2026 16:01:33 -0700 Subject: [PATCH] fix(main): update copyright year dynamically in version display --- unshackle/core/__main__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unshackle/core/__main__.py b/unshackle/core/__main__.py index 6cf2fac..a475233 100644 --- a/unshackle/core/__main__.py +++ b/unshackle/core/__main__.py @@ -1,5 +1,6 @@ import atexit import logging +from datetime import datetime import click import urllib3 @@ -58,7 +59,7 @@ def main(version: bool, debug: bool) -> None: r" ▀▀▀ ▀▀ █▪ ▀▀▀▀ ▀▀▀ · ▀ ▀ ·▀▀▀ ·▀ ▀.▀▀▀ ▀▀▀ ", style="ascii.art", ), - f"v [repr.number]{__version__}[/] - © 2025 - github.com/unshackle-dl/unshackle", + f"v [repr.number]{__version__}[/] - © 2025-{datetime.now().year} - github.com/unshackle-dl/unshackle", ), (1, 11, 1, 10), expand=True,