Skip to content

Commit

Permalink
chore: version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepdefic1t committed Jun 8, 2023
1 parent df88488 commit 281067c
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
"HAVE_USB_APDU",
"USB_SEGMENT_SIZE=64",
"UNUSED(x)=(void)x",
"APPVERSION=\"1.0.0\"",
"APPVERSION=\"1.1.0\"",
"APPNAME=\"Solar\"",
"MAJOR_VERSION=1",
"MINOR_VERSION=0",
"MINOR_VERSION=1",
"PATCH_VERSION=0",
"IO_SEPROXYHAL_BUFFER_SIZE_B=128",
"HAVE_UX_FLOW",
Expand Down
33 changes: 32 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,36 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.0] - 2023-06-08

### Added

- Expanded and improved CI workflows
- Introduced Ragger for enhanced functional testing

### Changed

- Refactored to align with LedgerHQ's SDKs
- Updated app menu copyright message
- Renamed icons to conform to LedgerHQ's naming conventions
- Revised documentation
- Updated Makefile to match LedgerHQ conventions
- Updated vote terminology
- Improved '.vscode' dev environment files
- Updated license headers in source files
- Enhanced unit-tests to cover recent changes

### Removed

- Removed HTLC transaction support
- Removed MultiSignature Registration transaction support

### Fixed

- Fixed outdated Ledger dev doc links in README
- Resolved clang static analysis failures
- Corrected typos

## [1.0.0] - 2022-07-09

### Added
Expand All @@ -20,4 +50,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated functional and unit tests
- Refreshed documentation

[1.0.0]: https://github.com/Solar-network/ledger-app-solar/compare/LedgerHQ:app-boilerplate:master...1.0.0
[1.1.0]: https://github.com/Solar-network/ledger-app-solar/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/Solar-network/ledger-app-solar/compare/LedgerHQ:app-boilerplate:d7c7ca843e43f7b4982b87f1ac1d7bd66045448c...1.0.0
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ APPNAME = "Solar"

# Application version
APPVERSION_M = 1
APPVERSION_N = 0
APPVERSION_N = 1
APPVERSION_P = 0
APPVERSION = "$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)"

Expand Down
4 changes: 2 additions & 2 deletions doc/COMMANDS.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ For the `GET_VERSION` instruction, both P1 and P2 values are not used and should

```shell
=> e0a2000000
<= 0100009000
# "1 0 0", 0x9000
<= 0101009000
# "1 1 0", 0x9000
```

## GET_PUBLIC_KEY
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/test_name_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ def test_get_app_and_version(backend, backend_name):
app_name, version = unpack_get_app_and_version_response(response.data)

assert app_name == "Solar"
assert version == "1.0.0"
assert version == "1.1.0"
2 changes: 1 addition & 1 deletion tests/functional/test_version_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

# In this test we check the behaviour of the device when asked to provide the app version
Expand Down
2 changes: 1 addition & 1 deletion tests/unit-tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ endif()

# project information
project(unit_tests
VERSION 0.1
VERSION 1.1.0
DESCRIPTION "Unit tests for Ledger Nano application"
LANGUAGES C)

Expand Down

0 comments on commit 281067c

Please sign in to comment.