mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 07:28:10 +00:00
docs(core/boardloader): generate first changelog, bump version to 2.1.0
This commit is contained in:
parent
fba79f07a3
commit
88f5f79315
@ -1 +0,0 @@
|
||||
Avoid accidental build with broken stack protector
|
@ -1 +0,0 @@
|
||||
Add basic Trezor Model R hardware support
|
@ -1 +0,0 @@
|
||||
Boardloader capabilities structure
|
@ -1 +0,0 @@
|
||||
Using hardware acceleration (dma2d) for rendering
|
@ -1 +0,0 @@
|
||||
CPU Frequency increased to 180 MHz
|
@ -1 +0,0 @@
|
||||
Fixed display blinking by increasing backlight PWM frequency
|
@ -1 +0,0 @@
|
||||
Check image model when replacing bootloader
|
@ -1 +0,0 @@
|
||||
Added production public keys for T2B1.
|
@ -4,3 +4,30 @@ 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.0 [June 2023]
|
||||
|
||||
Internal only release for Model R prototypes.
|
||||
|
||||
### Added
|
||||
- Add basic Trezor Model R hardware support [#2243]
|
||||
- Boardloader capabilities structure [#2324]
|
||||
- Using hardware acceleration (dma2d) for rendering [#2414]
|
||||
- Check image model when replacing bootloader [#2623]
|
||||
- Added production public keys for T2B1. [#3048]
|
||||
|
||||
### Changed
|
||||
- CPU Frequency increased to 180 MHz [#2587]
|
||||
- Fixed display blinking by increasing backlight PWM frequency [#2595]
|
||||
|
||||
### Security
|
||||
- Avoid accidental build with broken stack protector [#1642]
|
||||
|
||||
|
||||
[#1642]: https://github.com/trezor/trezor-firmware/pull/1642
|
||||
[#2243]: https://github.com/trezor/trezor-firmware/pull/2243
|
||||
[#2324]: https://github.com/trezor/trezor-firmware/pull/2324
|
||||
[#2414]: https://github.com/trezor/trezor-firmware/pull/2414
|
||||
[#2587]: https://github.com/trezor/trezor-firmware/pull/2587
|
||||
[#2595]: https://github.com/trezor/trezor-firmware/pull/2595
|
||||
[#2623]: https://github.com/trezor/trezor-firmware/pull/2623
|
||||
[#3048]: https://github.com/trezor/trezor-firmware/pull/3048
|
||||
|
@ -1,4 +1,4 @@
|
||||
#define VERSION_MAJOR 2
|
||||
#define VERSION_MINOR 0
|
||||
#define VERSION_PATCH 2
|
||||
#define VERSION_MINOR 1
|
||||
#define VERSION_PATCH 0
|
||||
#define VERSION_BUILD 0
|
||||
|
@ -80,7 +80,8 @@ def current_date(project):
|
||||
today = datetime.datetime.now()
|
||||
|
||||
if (
|
||||
parts[-3:] == ("core", "embed", "bootloader")
|
||||
parts[-3:] == ("core", "embed", "boardloader")
|
||||
or parts[-3:] == ("core", "embed", "bootloader")
|
||||
or parts[-3:] == ("core", "embed", "bootloader_ci")
|
||||
or parts[-2:] == ("legacy", "bootloader")
|
||||
or parts[-2:] == ("legacy", "intermediate_fw")
|
||||
|
Loading…
Reference in New Issue
Block a user