Skip to content

Commit

Permalink
2.3.8 release
Browse files Browse the repository at this point in the history
- Bumped version
- Updated CHANGELOG
  • Loading branch information
italo-sampaio committed Nov 1, 2023
1 parent db0cff9 commit fed3486
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [2.3.8] - 01/11/2023

### Fixes

- Fixed failing middleware docker image build

## [2.3.7] - 03/08/2023

### Fixes
Expand Down
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 0x02
#define VERSION_MINOR 0x03
#define VERSION_PATCH 0x07
#define VERSION_PATCH 0x08

// 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 0x02
#define VERSION_MINOR 0x03
#define VERSION_PATCH 0x07
#define VERSION_PATCH 0x08

// 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(2, 3, 7)
APP_VERSION = HSM2FirmwareVersion(2, 3, 7)
UI_VERSION = HSM2FirmwareVersion(2, 3, 8)
APP_VERSION = HSM2FirmwareVersion(2, 3, 8)

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

0 comments on commit fed3486

Please sign in to comment.