1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-22 22:38:08 +00:00

chore(core/bootloader): generate changelog and bump bootloader version

This commit is contained in:
matejcik 2023-06-13 15:59:46 +02:00
parent d465a14850
commit ef079f35e5
4 changed files with 15 additions and 3 deletions

View File

@ -1 +0,0 @@
Fix installation of images smaller than 128kB.

View File

@ -1 +0,0 @@
Added production public keys for T2B1.

View File

@ -4,6 +4,18 @@ 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/).
## 2.1.1 [June 2023]
Internal only release for Model R prototypes.
### Added
- Added production public keys for T2B1. [#3048]
- Added UI for T2B1.
### Fixed
- Fix installation of images smaller than 128kB. [#2941]
## 2.1.0 [April 2023]
### Added
@ -63,3 +75,5 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
[#2623]: https://github.com/trezor/trezor-firmware/pull/2623
[#2879]: https://github.com/trezor/trezor-firmware/pull/2879
[#2896]: https://github.com/trezor/trezor-firmware/pull/2896
[#2941]: https://github.com/trezor/trezor-firmware/pull/2941
[#3048]: https://github.com/trezor/trezor-firmware/pull/3048

View File

@ -1,6 +1,6 @@
#define VERSION_MAJOR 2
#define VERSION_MINOR 1
#define VERSION_PATCH 1
#define VERSION_PATCH 2
#define VERSION_BUILD 0
#define VERSION_UINT32 \
(VERSION_MAJOR | (VERSION_MINOR << 8) | (VERSION_PATCH << 16) | \