Skip to content

Commit

Permalink
3.0.2 release (#95)
Browse files Browse the repository at this point in the history
- Bumping UI, Signer and Middleware versions
- Updating CHANGELOG
- Fixed order of previous CHANGELOG entries
  • Loading branch information
amendelzon authored Sep 29, 2022
1 parent 4b12822 commit 137ff21
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 18 deletions.
35 changes: 21 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,11 @@
# Changelog

## [3.0.0] - 04/06/2022
## [3.0.2] - 29/09/2022

### Features/enhancements

- Considering uncles difficulty in "advanceBlockchain" operation
- Implemented N of M signer upgrade authorization scheme
- Authorized signing operation parsers rewritten from scratch
- Added new "blockchainParameters" command
- Added unit tests to middleware admin tooling
- Fuzzing improvements
- General best practices related improvements and fixes
- Removed old/unused code

### Fixes

- Fixed failing middleware docker image build
- TCPSigner: added command-line customisation of block difficulty cap and network upgrade activation block numbers
- Added support for building and running the TCPSigner bundle on arm64

## [3.0.1] - 11/08/2022

Expand Down Expand Up @@ -48,4 +38,21 @@
- Removed compilation warnings both in UI and Signer
- Persistence issue with blockchain state initialization flag
- Fixed attestation documentation broken links
- Fixed CHANGELOG 3.0.0 version and release date
- Fixed CHANGELOG 3.0.0 version and release date

## [3.0.0] - 04/06/2022

### Features/enhancements

- Considering uncles difficulty in "advanceBlockchain" operation
- Implemented N of M signer upgrade authorization scheme
- Authorized signing operation parsers rewritten from scratch
- Added new "blockchainParameters" command
- Added unit tests to middleware admin tooling
- Fuzzing improvements
- General best practices related improvements and fixes
- Removed old/unused code

### Fixes

- Fixed failing middleware docker image build
2 changes: 1 addition & 1 deletion ledger/src/signer/src/defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
// Version and patchlevel
#define VERSION_MAJOR 0x03
#define VERSION_MINOR 0x00
#define VERSION_PATCH 0x01
#define VERSION_PATCH 0x02

// Instructions
#define INS_SIGN 0x02
Expand Down
2 changes: 1 addition & 1 deletion ledger/src/ui/src/defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
// Version and patchlevel
#define VERSION_MAJOR 0x03
#define VERSION_MINOR 0x00
#define VERSION_PATCH 0x01
#define VERSION_PATCH 0x02

// Instructions
#define RSK_PIN_CMD 0x41
Expand Down
4 changes: 2 additions & 2 deletions middleware/ledger/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@

class HSM2ProtocolLedger(HSM2Protocol):
# Current manager supported versions for HSM UI and HSM SIGNER (<=)
UI_VERSION = HSM2FirmwareVersion(3, 0, 1)
APP_VERSION = HSM2FirmwareVersion(3, 0, 1)
UI_VERSION = HSM2FirmwareVersion(3, 0, 2)
APP_VERSION = HSM2FirmwareVersion(3, 0, 2)

# Amount of time to wait to make sure the app is opened
OPEN_APP_WAIT = 1 # second
Expand Down

0 comments on commit 137ff21

Please sign in to comment.