From ccb0cd82b60594c74096ef3d8e37a83c06c06821 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 12 Jul 2017 14:19:05 +0200 Subject: [PATCH] firmware: add changelog, bump version to 1.5.1 --- firmware/ChangeLog | 9 +++++++++ firmware/storage.c | 1 - firmware/trezor.h | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/firmware/ChangeLog b/firmware/ChangeLog index 293345a0d7..c4fbf764aa 100644 --- a/firmware/ChangeLog +++ b/firmware/ChangeLog @@ -1,3 +1,12 @@ +Version 1.5.1 +* Stable release, optional update +* Allow "dry run" recovery procedure +* Allow separated backup procedure +* Add more ERC-20 tokens +* Handle unrecognized ERC-20 tokens +* Make address dialog nicer +* Use checksum for Ethereum addresses + Version 1.5.0 * Stable release, optional update * Enable Segwit for Testnet and Litecoin diff --git a/firmware/storage.c b/firmware/storage.c index ad3aea4d26..6b535c07b6 100644 --- a/firmware/storage.c +++ b/firmware/storage.c @@ -585,7 +585,6 @@ bool storage_needsBackup(void) return storage.has_needs_backup && storage.needs_backup; } - uint32_t storage_nextU2FCounter(void) { uint32_t *ptr = ((uint32_t *) FLASH_STORAGE_U2FAREA) + (storage_u2f_offset / 32); diff --git a/firmware/trezor.h b/firmware/trezor.h index 8005e8ac65..df6200b355 100644 --- a/firmware/trezor.h +++ b/firmware/trezor.h @@ -22,7 +22,7 @@ #define VERSION_MAJOR 1 #define VERSION_MINOR 5 -#define VERSION_PATCH 0 +#define VERSION_PATCH 1 #define STR(X) #X #define VERSTR(X) STR(X)