mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-18 05:28:40 +00:00
core+legacy: bump versions (also in changelogs)
This commit is contained in:
parent
4eb5b927c0
commit
89d701ed08
@ -4,6 +4,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/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
|
## 2.3.3 [to be released on 2nd September 2020]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
### Security
|
||||||
|
|
||||||
## 2.3.2 [to be released on 5th August 2020]
|
## 2.3.2 [to be released on 5th August 2020]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@ -14,6 +28,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
- Support pre-signed EXTERNAL transaction inputs.
|
- Support pre-signed EXTERNAL transaction inputs.
|
||||||
- Support multiple change-outputs. [#1098]
|
- Support multiple change-outputs. [#1098]
|
||||||
- New option `safety-checks` allows overriding "forbidden key path" errors. [#1126]
|
- New option `safety-checks` allows overriding "forbidden key path" errors. [#1126]
|
||||||
|
- Support for Cardano Shelley. [#948]
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- `Features.pin_cached` renamed to `unlocked`.
|
- `Features.pin_cached` renamed to `unlocked`.
|
||||||
@ -32,8 +47,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
- Fix QR code overlapping in Monero address. monero-gui#2960, [#1074]
|
- Fix QR code overlapping in Monero address. monero-gui#2960, [#1074]
|
||||||
- Re-introduce ability to spend pre-Overwinter UTXO on Zcash-like coins. [#1030]
|
- Re-introduce ability to spend pre-Overwinter UTXO on Zcash-like coins. [#1030]
|
||||||
|
|
||||||
### Security
|
|
||||||
|
|
||||||
## 2.3.1 [Jun 2020]
|
## 2.3.1 [Jun 2020]
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
@ -227,6 +240,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
### Added
|
### Added
|
||||||
- First public release.
|
- First public release.
|
||||||
|
|
||||||
|
[#948]: https://github.com/trezor/trezor-firmware/issues/948
|
||||||
[#958]: https://github.com/trezor/trezor-firmware/issues/958
|
[#958]: https://github.com/trezor/trezor-firmware/issues/958
|
||||||
[#1027]: https://github.com/trezor/trezor-firmware/issues/1027
|
[#1027]: https://github.com/trezor/trezor-firmware/issues/1027
|
||||||
[#1030]: https://github.com/trezor/trezor-firmware/issues/1030
|
[#1030]: https://github.com/trezor/trezor-firmware/issues/1030
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#define VERSION_MAJOR 2
|
#define VERSION_MAJOR 2
|
||||||
#define VERSION_MINOR 3
|
#define VERSION_MINOR 3
|
||||||
#define VERSION_PATCH 2
|
#define VERSION_PATCH 3
|
||||||
#define VERSION_BUILD 0
|
#define VERSION_BUILD 0
|
||||||
|
|
||||||
#define FIX_VERSION_MAJOR 2
|
#define FIX_VERSION_MAJOR 2
|
||||||
|
@ -4,6 +4,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/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
|
## 1.9.3 [to be released on 2nd September 2020]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
### Security
|
||||||
|
|
||||||
## 1.9.2 [to be released on 5th August 2020]
|
## 1.9.2 [to be released on 5th August 2020]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@ -13,15 +27,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
### Changed
|
### Changed
|
||||||
- `Features.pin_cached` renamed to `unlocked`, and it is now `true` even if PIN is not set.
|
- `Features.pin_cached` renamed to `unlocked`, and it is now `true` even if PIN is not set.
|
||||||
|
|
||||||
### Deprecated
|
|
||||||
|
|
||||||
### Removed
|
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Re-introduce ability to spend pre-Overwinter UTXO on Zcash-like coins. [#1030]
|
- Re-introduce ability to spend pre-Overwinter UTXO on Zcash-like coins. [#1030]
|
||||||
|
|
||||||
### Security
|
|
||||||
|
|
||||||
## 1.9.1 [Jun 2020]
|
## 1.9.1 [Jun 2020]
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#define VERSION_MAJOR 1
|
#define VERSION_MAJOR 1
|
||||||
#define VERSION_MINOR 9
|
#define VERSION_MINOR 9
|
||||||
#define VERSION_PATCH 2
|
#define VERSION_PATCH 3
|
||||||
|
|
||||||
#define FIX_VERSION_MAJOR 1
|
#define FIX_VERSION_MAJOR 1
|
||||||
#define FIX_VERSION_MINOR 9
|
#define FIX_VERSION_MINOR 9
|
||||||
|
Loading…
Reference in New Issue
Block a user