Skip to content

Commit

Permalink
Version bump to 0.7.0. Update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
vldmkr committed Apr 23, 2024
1 parent 44ba783 commit 281b8a7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Blind signing: Implement the ability to sign transactions that cannot be decoded

## [0.6.9] - 2024-01-23

### Added
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ APPNAME = "Aptos"

# Application version
APPVERSION_M = 0
APPVERSION_N = 6
APPVERSION_P = 9
APPVERSION_N = 7
APPVERSION_P = 0
APPVERSION = "$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)"

# Application source files
Expand Down
Binary file modified tests/snapshots/stax/test_app_mainmenu/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion tests/test_name_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ def test_get_app_and_version(backend, backend_name):
app_name, version = unpack_get_app_and_version_response(response.data)

assert app_name == "Aptos"
assert version == "0.6.9"
assert version == "0.7.0"
4 changes: 2 additions & 2 deletions tests/test_version_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

# Taken from the Makefile, to update every time the Makefile version is bumped
MAJOR = 0
MINOR = 6
PATCH = 9
MINOR = 7
PATCH = 0

# In this test we check the behavior of the device when asked to provide the app version
def test_version(backend):
Expand Down

0 comments on commit 281b8a7

Please sign in to comment.