Skip to content

Commit

Permalink
2.3.7 release (#154)
Browse files Browse the repository at this point in the history
- Bumped version
- Updated CHANGELOG
  • Loading branch information
amendelzon authored Aug 4, 2023
1 parent 9064466 commit 70342e4
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.7] - 03/08/2023

### Fixes

- Fixed failing middleware docker image build

## [2.3.6] - 30/05/2023

### Features/enhancements
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 0x05
#define VERSION_PATCH 0x07

// 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 0x05
#define VERSION_PATCH 0x07

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

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

0 comments on commit 70342e4

Please sign in to comment.