From f78570ef87d8dd4864ddfe67439315bd6f374edd Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Mon, 30 Aug 2021 13:45:22 -0400 Subject: doc: mention bech32m/BIP350 in doc/descriptors.md Github-Pull: #22837 Rebased-From: d2a09c83554cec864a27e704cf2a0d513691a567 --- doc/descriptors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/descriptors.md b/doc/descriptors.md index 181ff77e50..26937fa59f 100644 --- a/doc/descriptors.md +++ b/doc/descriptors.md @@ -91,7 +91,7 @@ Descriptors consist of several types of expressions. The top level expression is `ADDR` expressions are any type of supported address: - P2PKH addresses (base58, of the form `1...` for mainnet or `[nm]...` for testnet). Note that P2PKH addresses in descriptors cannot be used for P2PK outputs (use the `pk` function instead). - P2SH addresses (base58, of the form `3...` for mainnet or `2...` for testnet, defined in [BIP 13](https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki)). -- Segwit addresses (bech32, of the form `bc1...` for mainnet or `tb1...` for testnet, defined in [BIP 173](https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki)). +- Segwit addresses (bech32 and bech32m, of the form `bc1...` for mainnet or `tb1...` for testnet, defined in [BIP 173](https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki) and [BIP 350](https://github.com/bitcoin/bips/blob/master/bip-0350.mediawiki)). ## Explanation -- cgit v1.2.3 From 6c102a696e1f6e3316b2a90c33c5d7875298c875 Mon Sep 17 00:00:00 2001 From: fanquake Date: Thu, 23 Sep 2021 15:04:06 +0800 Subject: release: bump RC to 0 (-final) --- configure.ac | 2 +- doc/release-notes.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 0b2de09062..6df4c1ce09 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ define(_CLIENT_VERSION_MAJOR, 0) define(_CLIENT_VERSION_MINOR, 21) define(_CLIENT_VERSION_REVISION, 2) define(_CLIENT_VERSION_BUILD, 0) -define(_CLIENT_VERSION_RC, 2) +define(_CLIENT_VERSION_RC, 0) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2020) define(_COPYRIGHT_HOLDERS,[The %s developers]) diff --git a/doc/release-notes.md b/doc/release-notes.md index f99bc59ccf..3b33c48a26 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,9 +1,9 @@ -0.21.2rc2 Release Notes +0.21.2 Release Notes ==================== -Bitcoin Core version 0.21.2rc2 is now available from: +Bitcoin Core version 0.21.2 is now available from: - + This minor release includes various bug fixes and performance improvements, as well as updated translations. @@ -42,7 +42,7 @@ longer supported. Additionally, Bitcoin Core does not yet change appearance when macOS "dark mode" is activated. -0.21.2rc2 change log +0.21.2 change log ================= ### P2P protocol and network code -- cgit v1.2.3