docs(python): generate changelogs for 0.13.4

pull/2603/head
matejcik 2 years ago
parent 1cbe96c6e5
commit d4af49c585

@ -1 +0,0 @@
Add UnlockPath message.

@ -1 +0,0 @@
Added new TOI formats - little endian full-color and even-high grayscale

@ -1 +0,0 @@
Remove firmware dumping capability.

@ -1 +0,0 @@
Add device set-busy command to trezorctl.

@ -1 +0,0 @@
Support SLIP-25 accounts in get-public-node and get-address.

@ -1 +0,0 @@
Fixed issue where type declarations were not visible to consumer packages.

@ -1 +0,0 @@
Add possibility to save emulator screenshots.

@ -1 +0,0 @@
Support for Cardano CIP-36 governance registration format

@ -1 +0,0 @@
Refactored firmware parsing and validation to a more object oriented approach.

@ -1 +0,0 @@
Remove DATA parameter from trezorctl cosi commit.

@ -5,6 +5,28 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.13.4] (2022-11-04)
[0.13.4]: https://github.com/trezor/trezor-firmware/compare/python/v0.13.3...python/v0.13.4
### Added
- Add UnlockPath message. [#2289]
- Added new TOI formats - little endian full-color and even-high grayscale [#2414]
- Add device set-busy command to trezorctl. [#2445]
- Support SLIP-25 accounts in get-public-node and get-address. [#2517]
- Add possibility to save emulator screenshots. [#2547]
- Support for Cardano CIP-36 governance registration format [#2561]
### Removed
- Remove DATA parameter from trezorctl cosi commit.
- Remove firmware dumping capability. [#2433]
### Fixed
- Fixed issue where type declarations were not visible to consumer packages. [#2542]
### Incompatible changes
- Refactored firmware parsing and validation to a more object oriented approach. [#2576]
## [0.13.3] (2022-07-13) ## [0.13.3] (2022-07-13)
[0.13.3]: https://github.com/trezor/trezor-firmware/compare/python/v0.13.2...python/v0.13.3 [0.13.3]: https://github.com/trezor/trezor-firmware/compare/python/v0.13.2...python/v0.13.3
@ -669,5 +691,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#2230]: https://github.com/trezor/trezor-firmware/pull/2230 [#2230]: https://github.com/trezor/trezor-firmware/pull/2230
[#2239]: https://github.com/trezor/trezor-firmware/pull/2239 [#2239]: https://github.com/trezor/trezor-firmware/pull/2239
[#2284]: https://github.com/trezor/trezor-firmware/pull/2284 [#2284]: https://github.com/trezor/trezor-firmware/pull/2284
[#2289]: https://github.com/trezor/trezor-firmware/pull/2289
[#2354]: https://github.com/trezor/trezor-firmware/pull/2354 [#2354]: https://github.com/trezor/trezor-firmware/pull/2354
[#2364]: https://github.com/trezor/trezor-firmware/pull/2364 [#2364]: https://github.com/trezor/trezor-firmware/pull/2364
[#2414]: https://github.com/trezor/trezor-firmware/pull/2414
[#2433]: https://github.com/trezor/trezor-firmware/pull/2433
[#2445]: https://github.com/trezor/trezor-firmware/pull/2445
[#2517]: https://github.com/trezor/trezor-firmware/pull/2517
[#2542]: https://github.com/trezor/trezor-firmware/pull/2542
[#2547]: https://github.com/trezor/trezor-firmware/pull/2547
[#2561]: https://github.com/trezor/trezor-firmware/pull/2561
[#2576]: https://github.com/trezor/trezor-firmware/pull/2576

@ -32,6 +32,7 @@ on one page here.
-P, --passphrase-on-host Enter passphrase on host. -P, --passphrase-on-host Enter passphrase on host.
-S, --script Use UI for usage in scripts. -S, --script Use UI for usage in scripts.
-s, --session-id HEX Resume given session ID. -s, --session-id HEX Resume given session ID.
-r, --record TEXT Record screen changes into a specified directory.
--version Show the version and exit. --version Show the version and exit.
--help Show this message and exit. --help Show this message and exit.
@ -187,6 +188,7 @@ Miscellaneous debug features.
--help Show this message and exit. --help Show this message and exit.
Commands: Commands:
record Record screen changes into a specified directory.
send-bytes Send raw bytes to Trezor. send-bytes Send raw bytes to Trezor.
Device management commands - setup, recover seed, wipe, etc. Device management commands - setup, recover seed, wipe, etc.
@ -212,6 +214,7 @@ Device management commands - setup, recover seed, wipe, etc.
recover Start safe recovery workflow. recover Start safe recovery workflow.
sd-protect Secure the device with SD card protection. sd-protect Secure the device with SD card protection.
self-test Perform a factory self-test. self-test Perform a factory self-test.
set-busy Show a "Do not disconnect" dialog.
setup Perform device setup and generate new seed. setup Perform device setup and generate new seed.
wipe Reset device to factory defaults and remove all private data. wipe Reset device to factory defaults and remove all private data.
@ -298,7 +301,6 @@ Firmware commands.
Commands: Commands:
download Download and save the firmware image. download Download and save the firmware image.
extract Extract the firmware from the device.
get-hash Get a hash of the installed firmware combined with the optional challenge. get-hash Get a hash of the installed firmware combined with the optional challenge.
update Upload new firmware to device. update Upload new firmware to device.
verify Verify the integrity of the firmware data stored in a file. verify Verify the integrity of the firmware data stored in a file.

Loading…
Cancel
Save