diff options
author | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2024-06-22 01:55:00 +0200 |
---|---|---|
committer | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2024-06-22 20:30:50 +0200 |
commit | 496e4295e76579b75dbafbd8a6c6e49948cc0d8d (patch) | |
tree | 9e02b13d1066e694baa3ddb09f1fef8da38cf60e /bip-0352.mediawiki | |
parent | 59cc43d727000794f18dac0a502cd87c0daec22a (diff) |
BIP-352: add change log (SemVer format)
The first paragraph is taken from BIP-327, with the sentence
about MAJOR version zero removed, as it's not relevant here
(we don't track the pre-merge history).
Diffstat (limited to 'bip-0352.mediawiki')
-rw-r--r-- | bip-0352.mediawiki | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bip-0352.mediawiki b/bip-0352.mediawiki index 0cf63a9..c9f1854 100644 --- a/bip-0352.mediawiki +++ b/bip-0352.mediawiki @@ -483,6 +483,17 @@ A malicious notification could potentially cause the following issues: Wallet designers can choose which tradeoffs they find appropriate. For example, a wallet could check the block filter to at least probabilistically confirm the likely existence of the UTXO, thus efficiently cutting down on spam. The payment could then be marked as unconfirmed until a scan is performed and the existence of the UTXO in accordance to the silent payment specification is verified. +== Change Log == + +To help implementers understand updates to this document, we attach a version number that resembles ''semantic versioning'' (<code>MAJOR.MINOR.PATCH</code>). +The <code>MAJOR</code> version is incremented if changes to the BIP are introduced that are incompatible with prior versions. +The <code>MINOR</code> version is incremented whenever the inputs or the output of an algorithm changes in a backward-compatible way or new backward-compatible functionality is added. +The <code>PATCH</code> version is incremented for other changes that are noteworthy (bug fixes, test vectors, important clarifications, etc.). + +* '''1.0.1''' (2024-06-22): +** Add steps to fail if private key sum is zero (for sender) or public key sum is point at infinity (for receiver), add corresponding test vectors. +* '''1.0.0''' (2024-05-08): +** Initial version, merged as BIP-352. == Acknowledgements == |