Skip to content
This repository has been archived by the owner on Jul 18, 2024. It is now read-only.

Commit

Permalink
chore: Release 0.3.4 (#129)
Browse files Browse the repository at this point in the history
- Removes the use of str.removeprefix, allowing the CLI to run on
  Python versions prior to 3.9
  • Loading branch information
jasonborg authored Mar 30, 2023
1 parent 6f8c242 commit eb66288
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion snapshot_dbg_cli/cli_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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_3'
VERSION = 'SNAPSHOT_DEBUGGER_CLI_VERSION_0_3_4'

VERSION_PATTERN = 'SNAPSHOT_DEBUGGER_CLI_VERSION_[0-9]+_[0-9]+_[0-9]+'

Expand Down
2 changes: 1 addition & 1 deletion snapshot_dbg_cli_tests/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.3', snapshot_dbg_cli.__version__)
self.assertEqual('0.3.4', snapshot_dbg_cli.__version__)

0 comments on commit eb66288

Please sign in to comment.