From e545f8c4510137a82d54f5b242c4fd886a67e9be Mon Sep 17 00:00:00 2001 From: matejcik Date: Wed, 28 Dec 2022 16:21:23 +0100 Subject: [PATCH] docs(python): changelog for 0.13.5 release --- python/.changelog.d/2701.added | 1 - python/.changelog.d/2701.added.1 | 1 - python/.changelog.d/2701.changed | 1 - python/.changelog.d/2701.incompatible | 1 - python/CHANGELOG.md | 15 +++++++++++++++ 5 files changed, 15 insertions(+), 4 deletions(-) delete mode 100644 python/.changelog.d/2701.added delete mode 100644 python/.changelog.d/2701.added.1 delete mode 100644 python/.changelog.d/2701.changed delete mode 100644 python/.changelog.d/2701.incompatible diff --git a/python/.changelog.d/2701.added b/python/.changelog.d/2701.added deleted file mode 100644 index dcead0943..000000000 --- a/python/.changelog.d/2701.added +++ /dev/null @@ -1 +0,0 @@ -Add support for v3-style Trezor One signatures. diff --git a/python/.changelog.d/2701.added.1 b/python/.changelog.d/2701.added.1 deleted file mode 100644 index ef30bc87b..000000000 --- a/python/.changelog.d/2701.added.1 +++ /dev/null @@ -1 +0,0 @@ -Add support for model field in firmware image. diff --git a/python/.changelog.d/2701.changed b/python/.changelog.d/2701.changed deleted file mode 100644 index 3e2726d7d..000000000 --- a/python/.changelog.d/2701.changed +++ /dev/null @@ -1 +0,0 @@ -More structured information about signing keys for different models. diff --git a/python/.changelog.d/2701.incompatible b/python/.changelog.d/2701.incompatible deleted file mode 100644 index 136848ec1..000000000 --- a/python/.changelog.d/2701.incompatible +++ /dev/null @@ -1 +0,0 @@ -Instead of accepting a list of public keys, `FirmwareType.verify()` accepts a parameter configuring whether to use production or development keys. diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index c349114e0..e5e2e8f72 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -5,6 +5,20 @@ 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). +## [0.13.5] (2022-12-28) +[0.13.5]: https://github.com/trezor/trezor-firmware/compare/python/v0.13.4...python/v0.13.5 + +### Added +- Add support for model field in firmware image. [#2701] +- Add support for v3-style Trezor One signatures. [#2701] + +### Changed +- More structured information about signing keys for different models. [#2701] + +### Incompatible changes +- Instead of accepting a list of public keys, `FirmwareType.verify()` accepts a parameter configuring whether to use production or development keys. [#2701] + + ## [0.13.4] (2022-11-04) [0.13.4]: https://github.com/trezor/trezor-firmware/compare/python/v0.13.3...python/v0.13.4 @@ -702,3 +716,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#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 +[#2701]: https://github.com/trezor/trezor-firmware/pull/2701