Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepdefic1t committed Aug 17, 2023
1 parent 074c1d5 commit 1ff7f87
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 8 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,11 +24,11 @@
"HAVE_USB_APDU",
"USB_SEGMENT_SIZE=64",
"UNUSED(x)=(void)x",
"APPVERSION=\"1.1.2\"",
"APPVERSION=\"1.1.3\"",
"APPNAME=\"Solar\"",
"MAJOR_VERSION=1",
"MINOR_VERSION=1",
"PATCH_VERSION=2",
"PATCH_VERSION=3",
"IO_SEPROXYHAL_BUFFER_SIZE_B=128",
"HAVE_UX_FLOW",
"DEBUG=1",
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.3] - 2023-08-17

### Changed

- Refactored deprecated throwable functions and patterns
- Updated Ragger testing library and functional tests

## [1.1.2] - 2023-08-16

Expand Down Expand Up @@ -72,6 +78,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated functional and unit tests
- Refreshed documentation

[1.1.3]: https://github.com/Solar-network/ledger-app-solar/compare/1.1.2...1.1.3
[1.1.2]: https://github.com/Solar-network/ledger-app-solar/compare/1.1.1...1.1.2
[1.1.1]: https://github.com/Solar-network/ledger-app-solar/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/Solar-network/ledger-app-solar/compare/1.0.0...1.1.0
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ APPNAME = "Solar"
# Application version
APPVERSION_M = 1
APPVERSION_N = 1
APPVERSION_P = 2
APPVERSION_P = 3
APPVERSION = "$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)"

# Application source files
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
<= 0101029000
# "1 1 2", 0x9000
<= 0101039000
# "1 1 3", 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.1.2"
assert version == "1.1.3"
2 changes: 1 addition & 1 deletion tests/functional/test_version_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Taken from the Makefile, to update every time the Makefile version is bumped
MAJOR = 1
MINOR = 1
PATCH = 2
PATCH = 3

# In this test we check the behaviour of the device when asked to provide the app version
def test_version(backend):
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 1.1.2
VERSION 1.1.3
DESCRIPTION "Unit tests for Ledger Nano application"
LANGUAGES C)

Expand Down

0 comments on commit 1ff7f87

Please sign in to comment.