1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-02 19:01:04 +00:00

core, python: add changelogs

This commit is contained in:
matejcik 2020-07-24 11:33:35 +02:00 committed by matejcik
parent fd8cb0e061
commit 8f8e793155
2 changed files with 7 additions and 1 deletions

View File

@ -15,6 +15,7 @@ _Most likely to be released on August 5th._
- Support EXTERNAL transaction inputs with a SLIP-0019 proof of ownership. [#1052] - Support EXTERNAL transaction inputs with a SLIP-0019 proof of ownership. [#1052]
- Support pre-signed EXTERNAL transaction inputs. - Support pre-signed EXTERNAL transaction inputs.
- Support multiple change-outputs. [#1098] - Support multiple change-outputs. [#1098]
- New option `unsafe-prompts` allows overriding "forbidden key path" errors. [#1126]
### Changed ### Changed
- `Features.pin_cached` renamed to `unlocked`. - `Features.pin_cached` renamed to `unlocked`.
@ -22,7 +23,7 @@ _Most likely to be released on August 5th._
- Rewrite USB codec and Protobuf decoder to be more memory-efficient. [#1089] - Rewrite USB codec and Protobuf decoder to be more memory-efficient. [#1089]
### Deprecated ### Deprecated
- Deprecate `Overwintered` field in `SignTx` and `TxAck`. - Deprecate `overwintered` field in `SignTx` and `TxAck`.
### Removed ### Removed
- Generated protobuf classes now do not contain deprecated fields. - Generated protobuf classes now do not contain deprecated fields.
@ -172,3 +173,4 @@ Version 2.0.5 [Mar 2018]
[#1074]: https://github.com/trezor/trezor-firmware/issues/1074 [#1074]: https://github.com/trezor/trezor-firmware/issues/1074
[#1089]: https://github.com/trezor/trezor-firmware/issues/1089 [#1089]: https://github.com/trezor/trezor-firmware/issues/1089
[#1098]: https://github.com/trezor/trezor-firmware/issues/1098 [#1098]: https://github.com/trezor/trezor-firmware/issues/1098
[#1126]: https://github.com/trezor/trezor-firmware/issues/1126

View File

@ -9,6 +9,9 @@ _At the moment, the project does **not** adhere to [Semantic Versioning](https:/
## [0.12.1] - unreleased ## [0.12.1] - unreleased
[0.12.1]: https://github.com/trezor/trezor-firmware/compare/python/v0.12.0...master [0.12.1]: https://github.com/trezor/trezor-firmware/compare/python/v0.12.0...master
### Added
- `trezorctl set unsafe-prompts` controls the new "unsafe prompts" feature. [#1126]
### Changed ### Changed
@ -435,3 +438,4 @@ _At the moment, the project does **not** adhere to [Semantic Versioning](https:/
[#349]: https://github.com/trezor/python-trezor/issues/349 [#349]: https://github.com/trezor/python-trezor/issues/349
[#351]: https://github.com/trezor/python-trezor/issues/351 [#351]: https://github.com/trezor/python-trezor/issues/351
[#352]: https://github.com/trezor/python-trezor/issues/352 [#352]: https://github.com/trezor/python-trezor/issues/352
[#1126]: https://github.com/trezor/trezor-firmware/issues/1126