From 8ccb893cbc7206656783a208b9c34bc87ba2f2e3 Mon Sep 17 00:00:00 2001 From: Lucas PASCAL Date: Thu, 29 Dec 2022 11:16:08 +0100 Subject: [PATCH] [bump] V4.0.1 --- Makefile | 2 +- tests_zemu/tests/main.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f18c056f..96a82f33 100755 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ include $(BOLOS_SDK)/Makefile.defines APPNAME = Stellar APPVERSION_M=4 APPVERSION_N=0 -APPVERSION_P=0 +APPVERSION_P=1 APPVERSION=$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P) ifeq ($(TARGET_NAME), TARGET_NANOS) diff --git a/tests_zemu/tests/main.test.ts b/tests_zemu/tests/main.test.ts index 5c55f513..59e15a2a 100644 --- a/tests_zemu/tests/main.test.ts +++ b/tests_zemu/tests/main.test.ts @@ -35,7 +35,7 @@ test.each(models)("app version ($name)", async (m) => { const transport = await sim.getTransport(); const str = new Str(transport); const result = await str.getAppConfiguration(); - expect(result.version).toBe('4.0.0'); + expect(result.version).toBe('4.0.1'); } finally { await sim.close(); }