Skip to content

Commit

Permalink
py/bitbox02: bump min/max supported version to only allow v8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benma committed May 19, 2020
1 parent 47383ce commit 3085477
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions py/bitbox02/bitbox02/communication/bitbox_api_protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,10 @@ class AttestationPubkeyInfo(TypedDict):
RESPONSE_SUCCESS = b"\x00"
RESPONSE_FAILURE = b"\x01"

MIN_SUPPORTED_BITBOX02_MULTI_FIRMWARE_VERSION = semver.VersionInfo(6, 1, 0)
MIN_SUPPORTED_BITBOX02_BTCONLY_FIRMWARE_VERSION = semver.VersionInfo(6, 1, 0)
MIN_UNSUPPORTED_BITBOX02_MULTI_FIRMWARE_VERSION = semver.VersionInfo(8, 0, 0)
MIN_UNSUPPORTED_BITBOX02_BTCONLY_FIRMWARE_VERSION = semver.VersionInfo(8, 0, 0)
MIN_SUPPORTED_BITBOX02_MULTI_FIRMWARE_VERSION = semver.VersionInfo(8, 0, 0)
MIN_SUPPORTED_BITBOX02_BTCONLY_FIRMWARE_VERSION = semver.VersionInfo(8, 0, 0)
MIN_UNSUPPORTED_BITBOX02_MULTI_FIRMWARE_VERSION = semver.VersionInfo(9, 0, 0)
MIN_UNSUPPORTED_BITBOX02_BTCONLY_FIRMWARE_VERSION = semver.VersionInfo(9, 0, 0)


class Platform(enum.Enum):
Expand Down

0 comments on commit 3085477

Please sign in to comment.