docs(changelog): next bootloader/firmware version will be 1.10.0

pull/1520/head
Pavol Rusnak 3 years ago
parent cc42af28fd
commit 60a6b8211e
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

@ -4,21 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## 1.9.1 [Unreleased]
### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security
## 1.9.0 [to be released soon]
## 1.10.0 [unreleased]
### Added
- "Stay in bootloader" flag.

@ -1,7 +1,7 @@
#define VERSION_MAJOR 1
#define VERSION_MINOR 9
#define VERSION_MINOR 10
#define VERSION_PATCH 0
#define VERSION_MAJOR_CHAR "\x01"
#define VERSION_MINOR_CHAR "\x09"
#define VERSION_MINOR_CHAR "\x0A"
#define VERSION_PATCH_CHAR "\x00"

@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## 1.9.5 [unreleased]
## 1.10.0 [unreleased]
### Added
@ -18,7 +18,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Security
## 1.9.4 [to be released on 10th February 2021]
## 1.9.4 [10th February 2021]
### Added
- Replacement transaction signing for replace-by-fee. [#1367]

@ -128,10 +128,10 @@ static int known_bootloader(int r, const uint8_t *hash) {
return 1; // 1.8.0 shipped with fw 1.8.0 and 1.8.1
if (0 ==
memcmp(hash,
"\xf9\xca\xe9\x7c\xca\x0b\x5f\xbe\xc4\x0a\x3a\xe2\x27\x11\x37\x99"
"\x81\x09\x38\xe7\x27\x5d\x5e\xbf\x9e\x35\xd5\x57\xea\x57\x93\xff",
"\x64\xad\x0c\xe6\xae\x6c\xfd\x10\x19\xca\xe0\xf0\xd5\x26\x99\x05"
"\x31\x2e\x4c\x59\x93\x05\x14\x5b\xfd\xb6\x7c\x1c\xdf\xd7\x6a\xf9",
32))
return 1; // 1.9.0 shipped with fw 1.9.x
return 1; // 1.10.0 shipped with fw 1.10.0
return 0;
}
#endif

Binary file not shown.
Loading…
Cancel
Save