Skip to content

Commit 2762471

Browse files
authored
Merge branch 'bitcoin-core:master' into 488-recent-post-date
2 parents 179e2ad + 928e8cc commit 2762471

File tree

7 files changed

+192
-40
lines changed

7 files changed

+192
-40
lines changed

.cirrus.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
container:
2+
image: ruby:2.5.5
3+
4+
task:
5+
name: website
6+
env:
7+
JEKYLL_ENV: production
8+
NOKOGIRI_USE_SYSTEM_LIBRARIES: true # speeds up installation of html-proofer
9+
RUBYOPT: "-KU -E utf-8:utf-8"
10+
11+
bootstrap_script: gem install bundler
12+
bundler_cache:
13+
folder: /usr/local/bundle
14+
fingerprint_script:
15+
- echo $RUBY_VERSION
16+
- cat Gemfile.lock
17+
populate_script: bundle install
18+
19+
build_and_test_script: make all

.travis.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

_includes/dev-keys.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@
1717
| Wladimir van der Laan | <code>{% include fingerprint-split.html hex="71A3B16735405025D447E8F274810B012346C9A6" %}</code> |
1818
| Jonas Schnelli | <code>{% include fingerprint-split.html hex="32EE5C4C3FA15CCADB46ABE529D4BCB6416F53EC" %}</code> |
1919
| Pieter Wuille | <code>{% include fingerprint-split.html hex="133EAC179436F14A5CF1B794860FEB804E669320" %}</code> |
20+
| Michael Ford | <code>{% include fingerprint-split.html hex="E777299FC265DD04793070EB944D35F9AC3DB76A" %}</code> |
2021

2122
{{_includes_dev_keys-import}}

_includes/templates/download.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ <h2 style="text-align: center">{{ page.verify_title }}</h2>
116116

117117
{% if page.version > 4 %}
118118
<h2 style="text-align: center" id="{{page.verify_download | slugify}}">{{page.verify_download}}</h2>
119-
<p>{{page.verification_recommended}}</p>
119+
{{page.verification_recommended}}
120120
<details>
121121
{% assign GPG = "C:\Program Files\Gnu\GnuPg\gpg.exe" %}
122122
<summary><strong>{{page.windows_instructions}}</strong></summary>
@@ -147,7 +147,7 @@ <h2 style="text-align: center" id="{{page.verify_download | slugify}}">{{page.ve
147147
{{page.gpg_download_other}}
148148
<a href="{{GPG_DOWNLOAD_URL}}">{{page.gpg_download_options}}</a></p></li>
149149

150-
<li><p>{{OBTAIN_RELEASE_KEY}}</p>
150+
<li>{{OBTAIN_RELEASE_KEY}}
151151

152152
<pre class="highlight"><code>{{GPG}}{{site.strings.gpg_keyserver}} --recv-keys {{example_builder_key}}</code></pre>
153153

@@ -195,7 +195,7 @@ <h2 style="text-align: center" id="{{page.verify_download | slugify}}">{{page.ve
195195
{{page.gpg_download_other}}
196196
<a href="{{GPG_DOWNLOAD_URL}}">{{page.gpg_download_options}}</a></p></li>
197197

198-
<li><p>{{OBTAIN_RELEASE_KEY}}</p>
198+
<li>{{OBTAIN_RELEASE_KEY}}
199199

200200
<pre class="highlight"><code>gpg{{site.strings.gpg_keyserver}} --recv-keys {{example_builder_key}}</code></pre>
201201

@@ -237,7 +237,7 @@ <h2 style="text-align: center" id="{{page.verify_download | slugify}}">{{page.ve
237237

238238
<p>{{page.checksum_warning_and_ok | replace, "$(SHASUMS_OK)", page.localized_checksum_ok}} <code>{{FILE_PREFIX}}-{{site.data.binaries.lin64}}: {{page.localized_checksum_ok}}</code></p></li>
239239

240-
<li><p>{{OBTAIN_RELEASE_KEY}}</p>
240+
<li>{{OBTAIN_RELEASE_KEY}}
241241

242242
<pre class="highlight"><code>gpg{{site.strings.gpg_keyserver}} --recv-keys {{example_builder_key}}</code></pre>
243243

_posts/en/pages/2017-01-01-download.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ obtain_release_key: >
9191
9292
<p>For example, given the <a href='$(BUILDER_KEYS_TXT_URL)'><code>
9393
builders-key/keys.txt</code></a> line
94-
<pre class='highlight'><code>$(EXAMPLE_BUILDERS_LINE)</code></pre>you could load that
94+
<code>$(EXAMPLE_BUILDERS_LINE)</code>you could load that
9595
key using this command:</p>
9696
9797
choosing_builders: >
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: Bitcoin Core 0.21.2 released
3+
name: blog-release-0.21.2
4+
id: en-blog-release-0.21.2
5+
lang: en
6+
type: posts
7+
layout: post
8+
9+
## If this is a new post, reset this counter to 1.
10+
version: 1
11+
12+
## Only true if release announcement or security annoucement. English posts only
13+
announcement: 1
14+
15+
excerpt: >
16+
Bitcoin Core 0.21.2 is now available.
17+
---
18+
Bitcoin Core version 0.21.2 is now available for [download][download
19+
page]. See the [release notes][] for more information about the many
20+
new features and bug fixes in this release.
21+
22+
If have any questions, please stop by the #bitcoin IRC chatroom
23+
([IRC][irc], [web][web irc]) and we’ll do our best to help you.
24+
25+
[release notes]: /en/releases/0.21.2/
26+
[IRC]: irc://irc.libera.chat/bitcoin
27+
[web irc]: https://web.libera.chat/#bitcoin
28+
[download page]: /en/download
29+
30+
{% include references.md %}

_releases/0.21.2.md

Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
---
2+
title: Bitcoin Core 0.21.2
3+
id: en-release-0.21.2
4+
name: release-0.21.2
5+
permalink: /en/releases/0.21.2/
6+
excerpt: Bitcoin Core version 0.21.2 is now available
7+
date: 2021-09-29
8+
9+
## Use a YAML array for the version number to allow other parts of the
10+
## site to correctly sort in "natural sort of version numbers".
11+
## Use the same number of elements as decimal places, e.g. "0.1.2 => [0,
12+
## 1, 2]" versus "1.2 => [1, 2]"
13+
release: [0, 21, 2]
14+
15+
## Optional magnet link. To get it, open the torrent in a good BitTorrent client
16+
## and View Details, or install the transmission-cli Debian/Ubuntu package
17+
## and run: transmission-show -m <torrent file>
18+
#
19+
## Link should be enclosed in quotes and start with: "magnet:?
20+
optional_magnetlink: "magnet:?xt=urn:btih:c1a634e9efb58d783ccda4e710d8105d7ddd31ab&dn=bitcoin-core-0.21.2&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fexplodie.org%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.bitcoin.sprovoost.nl%3A6969"
21+
22+
# Note: it is recommended to check all links to ensure they use
23+
# absolute urls (https://github.com/bitcoin/bitcoin/doc/foo)
24+
# rather than relative urls (/bitcoin/bitcoin/doc/foo).
25+
---
26+
{% include download.html %}
27+
{% githubify https://github.com/bitcoin/bitcoin %}
28+
0.21.2 Release Notes
29+
====================
30+
31+
Bitcoin Core version 0.21.2 is now available from:
32+
33+
<https://bitcoincore.org/bin/bitcoin-core-0.21.2/>
34+
35+
This minor release includes various bug fixes and performance
36+
improvements, as well as updated translations.
37+
38+
Please report bugs using the issue tracker at GitHub:
39+
40+
<https://github.com/bitcoin/bitcoin/issues>
41+
42+
To receive security and update notifications, please subscribe to:
43+
44+
<https://bitcoincore.org/en/list/announcements/join/>
45+
46+
How to Upgrade
47+
==============
48+
49+
If you are running an older version, shut it down. Wait until it has completely
50+
shut down (which might take a few minutes in some cases), then run the
51+
installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac)
52+
or `bitcoind`/`bitcoin-qt` (on Linux).
53+
54+
Upgrading directly from a version of Bitcoin Core that has reached its EOL is
55+
possible, but it might take some time if the data directory needs to be migrated. Old
56+
wallet versions of Bitcoin Core are generally supported.
57+
58+
Compatibility
59+
==============
60+
61+
Bitcoin Core is supported and extensively tested on operating systems
62+
using the Linux kernel, macOS 10.12+, and Windows 7 and newer. Bitcoin
63+
Core should also work on most other Unix-like systems but is not as
64+
frequently tested on them. It is not recommended to use Bitcoin Core on
65+
unsupported systems.
66+
67+
From Bitcoin Core 0.20.0 onwards, macOS versions earlier than 10.12 are no
68+
longer supported. Additionally, Bitcoin Core does not yet change appearance
69+
when macOS "dark mode" is activated.
70+
71+
72+
0.21.2 change log
73+
=================
74+
75+
### P2P protocol and network code
76+
77+
- #21644 use NetPermissions::HasFlag() in CConnman::Bind() (jonatack)
78+
- #22569 Rate limit the processing of rumoured addresses (sipa)
79+
80+
### Wallet
81+
82+
- #21907 Do not iterate a directory if having an error while accessing it (hebasto)
83+
84+
### RPC
85+
86+
- #19361 Reset scantxoutset progress before inferring descriptors (prusnak)
87+
88+
### Build System
89+
90+
- #21932 depends: update Qt 5.9 source url (kittywhiskers)
91+
- #22017 Update Windows code signing certificate (achow101)
92+
- #22191 Use custom MacOS code signing tool (achow101)
93+
- #22713 Fix build with Boost 1.77.0 (sizeofvoid)
94+
95+
### Tests and QA
96+
97+
- #20182 Build with --enable-werror by default, and document exceptions (hebasto)
98+
- #20535 Fix intermittent feature_taproot issue (MarcoFalke)
99+
- #21663 Fix macOS brew install command (hebasto)
100+
- #22279 add missing ECCVerifyHandle to base_encode_decode (apoelstra)
101+
- #22730 Run fuzzer task for the master branch only (hebasto)
102+
103+
### GUI
104+
105+
- gui#277 Do not use QClipboard::Selection on Windows and macOS. (hebasto)
106+
- gui#280 Remove user input from URI error message (prayank23)
107+
- gui#365 Draw "eye" sign at the beginning of watch-only addresses (hebasto)
108+
109+
### Miscellaneous
110+
111+
- #22002 Fix crash when parsing command line with -noincludeconf=0 (MarcoFalke)
112+
- #22137 util: Properly handle -noincludeconf on command line (take 2) (MarcoFalke)
113+
114+
115+
Credits
116+
=======
117+
118+
Thanks to everyone who directly contributed to this release:
119+
120+
- Andrew Chow
121+
- Andrew Poelstra
122+
- fanquake
123+
- Hennadii Stepanov
124+
- Jon Atack
125+
- Kittywhiskers Van Gogh
126+
- Luke Dashjr
127+
- MarcoFalke
128+
- Pavol Rusnak
129+
- Pieter Wuille
130+
- prayank23
131+
- Rafael Sadowski
132+
- W. J. van der Laan
133+
134+
135+
As well as to everyone that helped with translations on
136+
[Transifex](https://www.transifex.com/bitcoin/bitcoin/).
137+
{% endgithubify %}

0 commit comments

Comments
 (0)