From f30538a7af19609a387fcf03eab7796551d82f26 Mon Sep 17 00:00:00 2001 From: Alexandre Paillier Date: Mon, 31 Jul 2023 10:49:15 +0200 Subject: [PATCH] Version bump --- CHANGELOG.md | 2 ++ Makefile | 4 ++-- tests/speculos/test_configuration_cmd.py | 6 +++--- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cd9902..144cdde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.10.4](https://github.com/ledgerhq/app-ethereum/compare/1.10.3...1.10.4) - 2023-XX-XX + ## [1.10.3](https://github.com/ledgerhq/app-ethereum/compare/1.10.2...1.10.3) - 2023-07-27 ### Added diff --git a/Makefile b/Makefile index 4715da5..f0ae3d4 100644 --- a/Makefile +++ b/Makefile @@ -34,8 +34,8 @@ APP_LOAD_PARAMS += --path "1517992542'/1101353413'" APPVERSION_M=1 APPVERSION_N=10 -APPVERSION_P=3 -APPVERSION=$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P) +APPVERSION_P=4 +APPVERSION=$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)-dev APP_LOAD_FLAGS= --appFlags 0xa40 --dep Ethereum:$(APPVERSION) ########################### diff --git a/tests/speculos/test_configuration_cmd.py b/tests/speculos/test_configuration_cmd.py index 8027b2c..36e4ced 100644 --- a/tests/speculos/test_configuration_cmd.py +++ b/tests/speculos/test_configuration_cmd.py @@ -1,10 +1,10 @@ def test_configuration(cmd): if cmd.model == "nanos": - assert cmd.get_configuration() == (14, 1, 10, 3) + assert cmd.get_configuration() == (14, 1, 10, 4) if cmd.model == "nanox": - assert cmd.get_configuration() == (14, 1, 10, 3) + assert cmd.get_configuration() == (14, 1, 10, 4) if cmd.model == "nanosp": - assert cmd.get_configuration() == (14, 1, 10, 3) + assert cmd.get_configuration() == (14, 1, 10, 4)