legacy: bump version to 1.9.0

pull/803/head
Tomas Susanka 4 years ago committed by Pavol Rusnak
parent 1343583d21
commit 1ae5813cab
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

@ -1,8 +1,9 @@
Version 1.x.x [not yet released]
Version 1.9.0? [not yet released]
* Disallow changing of settings via dry-run recovery
* Wipe code
* Make LoadDevice debug only and drop its XPRV feature
* Add feature to retrieve the next U2F counter
* Passphrase redesign
Version 1.8.3 [Sep 2019]
* Small code improvements

@ -1,7 +1,7 @@
#define VERSION_MAJOR 1
#define VERSION_MINOR 8
#define VERSION_PATCH 4
#define VERSION_MINOR 9
#define VERSION_PATCH 0
#define FIX_VERSION_MAJOR 1
#define FIX_VERSION_MINOR 8
#define FIX_VERSION_MINOR 9
#define FIX_VERSION_PATCH 0

@ -224,7 +224,7 @@ def version():
@click.pass_obj
def ping(connect, message, button_protection):
"""Send ping message."""
return connect().ping(message, button_protection=button_protection,)
return connect().ping(message, button_protection=button_protection)
@cli.command()

@ -247,7 +247,9 @@ class TrezorClient:
self.features.patch_version,
)
self.check_firmware_version(warn_only=True)
if self.version >= (2, 1, 9):
if (self.version[0] == 1 and self.version >= (1, 9, 0)) or (
self.version[0] == 2 and self.version >= (2, 3, 0)
):
self.session_id = self.features.session_id
def is_outdated(self):

Loading…
Cancel
Save