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__)