Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
cedelavergne-ledger committed Nov 20, 2023
1 parent 4eec1b1 commit 41ac2c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion test/tests/getAppVersion.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 41ac2c1

Please sign in to comment.