Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 1.11 #202

Merged
merged 2 commits into from
May 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,3 +272,19 @@ USE_LOCAL_WOLFSSL=/usr/local pip3 install .
* UEFI support: wolfBoot as EFI application on x86_64
* Fixed self-update in Cortex-R5
* Fixed HW support regressions in PSOC-6 build

### V1.11 (2022-04-05)
* Mitigation against fault-injections and glitching attacks
(https://www.wolfssl.com/secure-boot-glitching-attacks/)
* Support AES128 and AES256 for update encryption
* Support ECC384 signature verification
* Support SHA2-384 for image hash
* Fixed alignment of delta update fields in manifest
* Image size propagated to sign tools
* Added test automation based on renode.io and github actions
* Hardware support
* New HAL: STM32U5
* New HAL: NXP i.MX-RT1050
* Fix risc-V 32bit port (missing include)
* Fix STM32L4 (VTOR alignments; clock setting clash in libwolfboot)
* STM32H7: improve HAL and documentation
4 changes: 2 additions & 2 deletions include/wolfboot/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ extern "C" {
#endif


#define LIBWOLFBOOT_VERSION_STRING "1.10.0"
#define LIBWOLFBOOT_VERSION_HEX 0x010a0000
#define LIBWOLFBOOT_VERSION_STRING "1.11.0"
#define LIBWOLFBOOT_VERSION_HEX 0x010b0000

#ifndef WOLFBOOT_VERSION
#define WOLFBOOT_VERSION LIBWOLFBOOT_VERSION_HEX
Expand Down