mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-09 06:50:58 +00:00
chore(core/bootloader): generate changelog and bump bootloader version
This commit is contained in:
parent
d465a14850
commit
ef079f35e5
@ -1 +0,0 @@
|
|||||||
Fix installation of images smaller than 128kB.
|
|
@ -1 +0,0 @@
|
|||||||
Added production public keys for T2B1.
|
|
@ -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/).
|
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]
|
## 2.1.0 [April 2023]
|
||||||
|
|
||||||
### Added
|
### 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
|
[#2623]: https://github.com/trezor/trezor-firmware/pull/2623
|
||||||
[#2879]: https://github.com/trezor/trezor-firmware/pull/2879
|
[#2879]: https://github.com/trezor/trezor-firmware/pull/2879
|
||||||
[#2896]: https://github.com/trezor/trezor-firmware/pull/2896
|
[#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
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#define VERSION_MAJOR 2
|
#define VERSION_MAJOR 2
|
||||||
#define VERSION_MINOR 1
|
#define VERSION_MINOR 1
|
||||||
#define VERSION_PATCH 1
|
#define VERSION_PATCH 2
|
||||||
#define VERSION_BUILD 0
|
#define VERSION_BUILD 0
|
||||||
#define VERSION_UINT32 \
|
#define VERSION_UINT32 \
|
||||||
(VERSION_MAJOR | (VERSION_MINOR << 8) | (VERSION_PATCH << 16) | \
|
(VERSION_MAJOR | (VERSION_MINOR << 8) | (VERSION_PATCH << 16) | \
|
||||||
|
Loading…
Reference in New Issue
Block a user