Skip to content

Commit

Permalink
Fix middleware docker image build (#159)
Browse files Browse the repository at this point in the history
* Fixed failing middleware docker image build

* 2.3.8 release

- Bumped version
- Updated CHANGELOG
  • Loading branch information
italo-sampaio authored Nov 1, 2023
1 parent 70342e4 commit 316b307
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 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 docker/mware/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get install -y \
libsecp256k1-dev=0.1~20210108-1 \
python3-pkgconfig=1.5.1-3 \
libusb-1.0-0-dev=2:1.0.24-3 \
libudev-dev=247.3-7+deb11u2 \
libudev-dev=247.3-7+deb11u4 \
libffi-dev=3.3-6 #\
libjpeg-dev=1:2.0.6-4

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 316b307

Please sign in to comment.