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

Release 2.1.0: Updated ChangeLog and version.h #436

Merged
merged 1 commit into from
Apr 16, 2024
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
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -563,3 +563,28 @@ Use `make keysclean` to delete keys and regenerate.
* Fixed bug in sign tool when using ECC keys
* Improved documentation
* Added customizable DCD for NXP targets

### V 2.1.0 - (2024-04-16)
* New features
* Custom TLVs in manifest header for custom authenticated options
* Bug fixes and improvements:
* DUALBANK: fork bootloader only once
* Improved `NO_BACKUP` mode, DISABLE BACKUP mode is now powerfail-safe
* Fault-injection mitigation: added clobbers to assembly code
* Post-quantum algorithms: fixed build issue with conflicting wolfCrypt version
* New signature verification algorithm:
* Added support for ECC521
* New hardware targets:
* Microchip ATSAM-E51, including DUALBANK support
* Renesas RZN2L
* NXP i.MX-RT1040
* NXP MCXA-153
* Improved support to existing targets:
* Build fixes for TI-Hercules
* Improved support for Integrity OS on NXP T1024
* wolfTPM integration
* Fixes in sealing/unsealing mechanism
* Updated modules
* wolfSSL v5.7.0
* wolfPKCS11 v1.3.0
* wolfTPM v3.2.0
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 "2.0.2"
#define LIBWOLFBOOT_VERSION_HEX 0x02000002
#define LIBWOLFBOOT_VERSION_STRING "2.1.0"
#define LIBWOLFBOOT_VERSION_HEX 0x02010000

#ifndef WOLFBOOT_VERSION
#define WOLFBOOT_VERSION LIBWOLFBOOT_VERSION_HEX
Expand Down
Loading