From 44f815a1942c6a2d583aad9fba6198ada7c71083 Mon Sep 17 00:00:00 2001 From: Jason Borg Date: Wed, 7 Jun 2023 17:38:09 +0000 Subject: [PATCH] chore: Release CLI 0.3.6 --- snapshot_dbg_cli/cli_version.py | 2 +- snapshot_dbg_cli_tests/test_init.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/snapshot_dbg_cli/cli_version.py b/snapshot_dbg_cli/cli_version.py index fe7db8d..13a719c 100644 --- a/snapshot_dbg_cli/cli_version.py +++ b/snapshot_dbg_cli/cli_version.py @@ -22,7 +22,7 @@ from snapshot_dbg_cli.http_service import HttpService from snapshot_dbg_cli.user_output import UserOutput -VERSION = 'SNAPSHOT_DEBUGGER_CLI_VERSION_0_3_5' +VERSION = 'SNAPSHOT_DEBUGGER_CLI_VERSION_0_3_6' VERSION_PATTERN = 'SNAPSHOT_DEBUGGER_CLI_VERSION_[0-9]+_[0-9]+_[0-9]+' diff --git a/snapshot_dbg_cli_tests/test_init.py b/snapshot_dbg_cli_tests/test_init.py index 8028d04..c2b8898 100644 --- a/snapshot_dbg_cli_tests/test_init.py +++ b/snapshot_dbg_cli_tests/test_init.py @@ -24,4 +24,4 @@ class CliInitTests(unittest.TestCase): def test_version_is_expected_value(self): # Yes, this will need to be updated for each new version. - self.assertEqual('0.3.5', snapshot_dbg_cli.__version__) + self.assertEqual('0.3.6', snapshot_dbg_cli.__version__)