Skip to content

Commit e6b45ad

Browse files
authored
Merge pull request #255 from LedgerHQ/release-2.2.2
Prepare release 2.2.2
2 parents 5fd382d + 69187bf commit e6b45ad

File tree

28 files changed

+37
-26
lines changed

28 files changed

+37
-26
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
Dates are in `dd-mm-yyyy` format.
99

10+
## [2.2.2] - 08-04-2024
11+
12+
### Added
13+
14+
- During wallet policy registration, the app will recognize and explicitly label as `dummy` any extended public key whose compressed pubkey is `0250929b74c1a04954b78b4b6035e97a5e078a5a0f28ec96d547bfee9ace803ac0`. This is useful especially for taproot miniscript policies which do not intend to use keypath spending.
15+
16+
### Changed
17+
18+
- Message signing: will now show the full text of the message, instead of its hash. If the message is too long (over 640 characters) or it contains non-printable characters (not in the range `0x20..0x70`, inclusive), then the SHA256 hash will be shown, as in previous versions of the app.
19+
- Transaction signing: changed the wording to make the ux slightly simpler and clearer.
20+
1021
## [2.2.1] - 18-03-2024
1122

1223
### Fixed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ****************************************************************************
22
# Ledger App for Bitcoin
3-
# (c) 2023 Ledger SAS.
3+
# (c) 2024 Ledger SAS.
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -47,7 +47,7 @@ PATH_SLIP21_APP_LOAD_PARAMS = "LEDGER-Wallet policy"
4747
# Application version
4848
APPVERSION_M = 2
4949
APPVERSION_N = 2
50-
APPVERSION_P = 1
50+
APPVERSION_P = 2
5151
APPVERSION_SUFFIX = # if not empty, appended at the end. Do not add a dash.
5252

5353
ifeq ($(APPVERSION_SUFFIX),)

src/boilerplate/apdu_parser.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*****************************************************************************
22
* Ledger App Bitcoin.
3-
* (c) 2021 Ledger SAS.
3+
* (c) 2024 Ledger SAS.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

src/boilerplate/dispatcher.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*****************************************************************************
22
* Ledger App Bitcoin.
3-
* (c) 2021 Ledger SAS.
3+
* (c) 2024 Ledger SAS.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

src/boilerplate/io.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*****************************************************************************
22
* Ledger App Bitcoin.
3-
* (c) 2021 Ledger SAS.
3+
* (c) 2024 Ledger SAS.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

src/common/base58.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*****************************************************************************
2-
* (c) 2021 Ledger SAS.
2+
* (c) 2024 Ledger SAS.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/common/bip32.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*****************************************************************************
2-
* (c) 2020 Ledger SAS.
2+
* (c) 2024 Ledger SAS.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/common/buffer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*****************************************************************************
2-
* (c) 2021 Ledger SAS.
2+
* (c) 2024 Ledger SAS.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/common/format.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*****************************************************************************
2-
* (c) 2021 Ledger SAS.
2+
* (c) 2024 Ledger SAS.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/common/merkle.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*****************************************************************************
22
* Ledger App Bitcoin.
3-
* (c) 2021 Ledger SAS.
3+
* (c) 2024 Ledger SAS.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)