bootloader: add changelog, bump version to 1.3.2

This commit is contained in:
Pavol Rusnak 2017-07-11 23:45:08 +02:00
parent 069f118585
commit 86bcede12d
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,11 @@
Version 1.3.2
* Don't show recovery seed warning if firmware is flashed for the first time
* Don't show fingerprint if firmware is flashed for the first time
* Compute firmware hash before checking signatures
* Add self-test
* Fix usage of RNG before setup
* Fix stack protector fault
Version 1.3.1
* Fix button testing so it does not break USB communication

View File

@ -22,14 +22,14 @@
#define VERSION_MAJOR 1
#define VERSION_MINOR 3
#define VERSION_PATCH 1
#define VERSION_PATCH 2
#define STR(X) #X
#define VERSTR(X) STR(X)
#define VERSION_MAJOR_CHAR "\x01"
#define VERSION_MINOR_CHAR "\x03"
#define VERSION_PATCH_CHAR "\x01"
#define VERSION_PATCH_CHAR "\x02"
#include <stdbool.h>
#include "memory.h"