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: 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():