Skip to content

Commit e41d443

Browse files
committed
Merge branch 'auxpow-0.20' into 0.20
2 parents e728d88 + 76bc97f commit e41d443

File tree

3 files changed

+46
-2
lines changed

3 files changed

+46
-2
lines changed

ci/lint/04_install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ travis_retry pip3 install flake8==3.7.8
1111
travis_retry pip3 install yq
1212

1313
SHELLCHECK_VERSION=v0.6.0
14-
curl -s "https://storage.googleapis.com/shellcheck/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | tar --xz -xf - --directory /tmp/
14+
curl -sL "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | tar --xz -xf - --directory /tmp/
1515
export PATH="/tmp/shellcheck-${SHELLCHECK_VERSION}:${PATH}"

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ define(_CLIENT_VERSION_MAJOR, 0)
33
define(_CLIENT_VERSION_MINOR, 20)
44
define(_CLIENT_VERSION_REVISION, 1)
55
define(_CLIENT_VERSION_BUILD, 0)
6-
define(_CLIENT_VERSION_RC, 1)
6+
define(_CLIENT_VERSION_RC, 0)
77
define(_CLIENT_VERSION_IS_RELEASE, true)
88
define(_COPYRIGHT_YEAR, 2020)
99
define(_COPYRIGHT_HOLDERS,[The %s developers])

doc/release-notes.md

+44
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,54 @@ broken since that release (bug
9595
0.20.1 change log
9696
=================
9797

98+
### Mining
99+
- #19019 Fix GBT: Restore "!segwit" and "csv" to "rules" key (luke-jr)
100+
101+
### P2P protocol and network code
102+
- #19219 Replace automatic bans with discouragement filter (sipa)
103+
104+
### Wallet
105+
- #19300 Handle concurrent wallet loading (promag)
106+
- #18982 Minimal fix to restore conflicted transaction notifications (ryanofsky)
107+
108+
### RPC and other APIs
109+
- #19524 Increment input value sum only once per UTXO in decodepsbt (fanquake)
110+
- #19517 psbt: Increment input value sum only once per UTXO in decodepsbt (achow101)
111+
112+
### GUI
113+
- #19097 Add missing QPainterPath include (achow101)
114+
- #19059 update Qt base translations for macOS release (fanquake)
115+
116+
### Build system
117+
- #19152 improve build OS configure output (skmcontrib)
118+
- #19536 qt, build: Fix QFileDialog for static builds (hebasto)
119+
120+
### Tests and QA
121+
- #19444 Remove cached directories and associated script blocks from appveyor config (sipsorcery)
122+
- #18640 appveyor: Remove clcache (MarcoFalke)
123+
124+
### Miscellaneous
125+
- #19194 util: Don't reference errno when pthread fails (miztake)
126+
- #18700 Fix locking on WSL using flock instead of fcntl (meshcollider)
127+
98128
Credits
99129
=======
100130

101131
Thanks to everyone who directly contributed to this release:
102132

133+
- Aaron Clauson
134+
- Andrew Chow
135+
- fanquake
136+
- Hennadii Stepanov
137+
- João Barbosa
138+
- Luke Dashjr
139+
- MarcoFalke
140+
- MIZUTA Takeshi
141+
- Pieter Wuille
142+
- Russell Yanofsky
143+
- sachinkm77
144+
- Samuel Dobson
145+
- Wladimir J. van der Laan
146+
103147
As well as to everyone that helped with translations on
104148
[Transifex](https://www.transifex.com/bitcoin/bitcoin/).

0 commit comments

Comments
 (0)