1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-03-25 04:25:42 +00:00

firmware: add changelog, bump version to 1.5.1

This commit is contained in:
Pavol Rusnak 2017-07-12 14:19:05 +02:00
parent 86bcede12d
commit ccb0cd82b6
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
3 changed files with 10 additions and 2 deletions

View File

@ -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

View File

@ -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);

View File

@ -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)