1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-23 13:02:03 +00:00

firmware: set version to 1.6.1

This commit is contained in:
Pavol Rusnak 2018-03-19 15:18:54 +01:00
parent dbe444029a
commit 5ae04c17c5
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
3 changed files with 4 additions and 5 deletions

View File

@ -1,7 +1,6 @@
Version 1.7.0
Version 1.6.1
* Stable release, optional update
* Use fixed-width font for addresses
* Enable WebUSB
* Lots of under-the-hood improvements
Version 1.6.0

View File

@ -160,7 +160,7 @@ bool storage_from_flash(void)
// version 6: since 1.3.6
// version 7: since 1.5.1
// version 8: since 1.5.2
// version 9: since 1.7.0
// version 9: since 1.6.1
if (version > STORAGE_VERSION) {
// downgrade -> clear storage
return false;

View File

@ -23,8 +23,8 @@
#include <stdint.h>
#define VERSION_MAJOR 1
#define VERSION_MINOR 7
#define VERSION_PATCH 0
#define VERSION_MINOR 6
#define VERSION_PATCH 1
#define STR(X) #X
#define VERSTR(X) STR(X)