Skip to content

Commit 1f8177e

Browse files
committed
Update app version to 2.0
This release includes a wide range of updates and new features, including but not limited to: - Support for Albatross and Staking transactions. - Support Ledger Stax and Flex. - Flow based UX on Ledger Nano S - HTLC and Vesting Contract creation support. (These have not been updated for NBGL and Albatross yet.) - Sending from contracts as sender. - Message signing. - Display binary transaction data as hex. - General security hardening.
1 parent 910867a commit 1f8177e

File tree

7 files changed

+4
-4
lines changed

7 files changed

+4
-4
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ include $(BOLOS_SDK)/Makefile.defines
3030
APPNAME = Nimiq
3131

3232
# Application version
33-
APPVERSION_M = 1
34-
APPVERSION_N = 4
35-
APPVERSION_P = 6
33+
APPVERSION_M = 2
34+
APPVERSION_N = 0
35+
APPVERSION_P = 0
3636
APPVERSION = "$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)"
3737

3838
# Setting to allow building variant applications. For now, there are no variants, only the main Nimiq app.
-76 Bytes
Loading
-22 Bytes
Loading
-16 Bytes
Loading
-16 Bytes
Loading
-101 Bytes
Loading

tests/test_get_name_and_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ def test_get_app_and_version(backend):
2626
app_name, version = app_name_raw.decode("ascii"), version_raw.decode("ascii")
2727

2828
assert app_name == "Nimiq"
29-
assert version == "1.4.6"
29+
assert version == "2.0.0"

0 commit comments

Comments
 (0)