mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-25 15:58:08 +00:00
legacy: bump version to 1.9.0
This commit is contained in:
parent
1343583d21
commit
1ae5813cab
@ -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
|
* Disallow changing of settings via dry-run recovery
|
||||||
* Wipe code
|
* Wipe code
|
||||||
* Make LoadDevice debug only and drop its XPRV feature
|
* Make LoadDevice debug only and drop its XPRV feature
|
||||||
* Add feature to retrieve the next U2F counter
|
* Add feature to retrieve the next U2F counter
|
||||||
|
* Passphrase redesign
|
||||||
|
|
||||||
Version 1.8.3 [Sep 2019]
|
Version 1.8.3 [Sep 2019]
|
||||||
* Small code improvements
|
* Small code improvements
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#define VERSION_MAJOR 1
|
#define VERSION_MAJOR 1
|
||||||
#define VERSION_MINOR 8
|
#define VERSION_MINOR 9
|
||||||
#define VERSION_PATCH 4
|
#define VERSION_PATCH 0
|
||||||
|
|
||||||
#define FIX_VERSION_MAJOR 1
|
#define FIX_VERSION_MAJOR 1
|
||||||
#define FIX_VERSION_MINOR 8
|
#define FIX_VERSION_MINOR 9
|
||||||
#define FIX_VERSION_PATCH 0
|
#define FIX_VERSION_PATCH 0
|
||||||
|
@ -224,7 +224,7 @@ def version():
|
|||||||
@click.pass_obj
|
@click.pass_obj
|
||||||
def ping(connect, message, button_protection):
|
def ping(connect, message, button_protection):
|
||||||
"""Send ping message."""
|
"""Send ping message."""
|
||||||
return connect().ping(message, button_protection=button_protection,)
|
return connect().ping(message, button_protection=button_protection)
|
||||||
|
|
||||||
|
|
||||||
@cli.command()
|
@cli.command()
|
||||||
|
@ -247,7 +247,9 @@ class TrezorClient:
|
|||||||
self.features.patch_version,
|
self.features.patch_version,
|
||||||
)
|
)
|
||||||
self.check_firmware_version(warn_only=True)
|
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
|
self.session_id = self.features.session_id
|
||||||
|
|
||||||
def is_outdated(self):
|
def is_outdated(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user