From 5ae04c17c53602fb1793b98b06563997954be6e4 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 19 Mar 2018 15:18:54 +0100 Subject: [PATCH] firmware: set version to 1.6.1 --- firmware/ChangeLog | 3 +-- firmware/storage.c | 2 +- firmware/trezor.h | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/firmware/ChangeLog b/firmware/ChangeLog index 30acfd98b8..5ca85f1a7d 100644 --- a/firmware/ChangeLog +++ b/firmware/ChangeLog @@ -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 diff --git a/firmware/storage.c b/firmware/storage.c index 9c5faefbdb..1fe9e9b846 100644 --- a/firmware/storage.c +++ b/firmware/storage.c @@ -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; diff --git a/firmware/trezor.h b/firmware/trezor.h index 20fcfc481e..d40a10e29c 100644 --- a/firmware/trezor.h +++ b/firmware/trezor.h @@ -23,8 +23,8 @@ #include #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)