From f8dd685d551a28404a681cf547c842ff6be3fa8e Mon Sep 17 00:00:00 2001 From: Alexandre Paillier Date: Thu, 14 Mar 2024 14:04:52 +0100 Subject: [PATCH] 1.11.0-dev version bump --- CHANGELOG.md | 2 ++ Makefile | 6 +++--- tests/speculos/test_configuration_cmd.py | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b3afd1..fb41e35 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.11.0](https://github.com/ledgerhq/app-ethereum/compare/1.10.4...1.11.0) - 2023-XX-XX + ## [1.10.4](https://github.com/ledgerhq/app-ethereum/compare/1.10.3...1.10.4) - 2023-03-08 ### Added diff --git a/Makefile b/Makefile index b192be0..d3572f8 100644 --- a/Makefile +++ b/Makefile @@ -33,9 +33,9 @@ APP_LOAD_PARAMS += --path "1517992542'/1101353413'" ################## APPVERSION_M = 1 -APPVERSION_N = 10 -APPVERSION_P = 4 -APPVERSION = $(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P) +APPVERSION_N = 11 +APPVERSION_P = 0 +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 c279156..af56756 100644 --- a/tests/speculos/test_configuration_cmd.py +++ b/tests/speculos/test_configuration_cmd.py @@ -1,3 +1,3 @@ def test_configuration(cmd): - assert cmd.get_configuration() == (2, 1, 10, 4) + assert cmd.get_configuration() == (2, 1, 11, 0)