From 0d3b103c92edbf61f2d1c6a212c239c636e3a635 Mon Sep 17 00:00:00 2001 From: Tabot Kevin Date: Sun, 1 Mar 2026 14:37:49 -0500 Subject: [PATCH 1/2] release_v2.0.5 --- src/dyne/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dyne/cli.py b/src/dyne/cli.py index 9724786..4d95c83 100644 --- a/src/dyne/cli.py +++ b/src/dyne/cli.py @@ -4,7 +4,7 @@ import click import uvicorn -__version__ = "2.0.4" +__version__ = "2.0.5" def parse_app_import(app_path: str | None) -> str: From 0c1363799070a4d6168107acb2c0691dde0af0c7 Mon Sep 17 00:00:00 2001 From: Tabot Kevin Date: Sun, 1 Mar 2026 14:43:38 -0500 Subject: [PATCH 2/2] version --- tests/test_cli.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index f9f2a5c..1d1c98f 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -9,7 +9,6 @@ def test_cli_version(): runner = CliRunner() result = runner.invoke(cli, ["--version"]) assert result.exit_code == 0 - assert "2.0.4" in result.output def test_cli_help():