From 40c8633da0547a03d5dfc6446ce3b67ac8149ea3 Mon Sep 17 00:00:00 2001 From: zanjonke Date: Wed, 15 Jul 2026 13:51:53 +0200 Subject: [PATCH] v0.3.7 --- _version.py | 2 +- tests/test_cli_output.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_version.py b/_version.py index d7b30e12..8879c6c7 100644 --- a/_version.py +++ b/_version.py @@ -1 +1 @@ -__version__ = "0.3.6" +__version__ = "0.3.7" diff --git a/tests/test_cli_output.py b/tests/test_cli_output.py index ab0abbb2..57972ec7 100644 --- a/tests/test_cli_output.py +++ b/tests/test_cli_output.py @@ -79,14 +79,14 @@ def test_display_active_pro_plan(self, mock_console): "type": "pro", "total": 1000, "remaining": 200, - "period_end": "2026-07-15T00:00:00+00:00", + "period_end": "2028-07-15T00:00:00+00:00", } _display_credit_line(plan_credits) call_args = mock_console.print.call_args[0][0] assert "PRO plan" in call_args assert "200 of 1000 remaining" in call_args - assert "expires Jul 15, 2026" in call_args + assert "expires Jul 15, 2028" in call_args @patch("cli_output.status.console") def test_display_expired_credits(self, mock_console):