diff --git a/Makefile b/Makefile index c818869..dddcb16 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ APP_LOAD_PARAMS += $(COMMON_LOAD_PARAMS) APPNAME = "Hive" APPVERSION_M = 1 APPVERSION_N = 1 -APPVERSION_P = 0 +APPVERSION_P = 1 APPVERSION = "$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)" ifeq ($(TARGET_NAME),TARGET_NANOS) diff --git a/test/tests/getAppVersion.test.ts b/test/tests/getAppVersion.test.ts index 062a942..a6ffc4c 100644 --- a/test/tests/getAppVersion.test.ts +++ b/test/tests/getAppVersion.test.ts @@ -9,7 +9,7 @@ describe('Get app version', async () => { try { const hive = new Hive(transport); const version = await hive.getAppVersion(); - expect(version).to.be.equal('1.1.0'); + expect(version).to.be.equal('1.1.1'); } finally { await transport.close(); }