From 546114b6490f21c7b96f996c56304caa5ab153ec Mon Sep 17 00:00:00 2001 From: James McTavish Date: Wed, 6 Sep 2023 14:52:21 -0400 Subject: [PATCH] chore: Release CLI 0.3.7 (#157) --- 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 13a719c..942ac96 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_6' +VERSION = 'SNAPSHOT_DEBUGGER_CLI_VERSION_0_3_7' 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 c2b8898..27aebac 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.6', snapshot_dbg_cli.__version__) + self.assertEqual('0.3.7', snapshot_dbg_cli.__version__)