Skip to content

Commit 83cd683

Browse files
committed
Release 2.2.1
1 parent 4e09d50 commit 83cd683

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

CHANGELOG.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
# Changelog
22

3-
## [2.2.0](https://github.com/ruimarinho/bitcoin-core/tree/2.2.0) (2019-06-28)
3+
## [2.2.1](https://github.com/ruimarinho/bitcoin-core/tree/2.2.1) (2019-09-20)
44

5-
[Full Changelog](https://github.com/ruimarinho/bitcoin-core/compare/v2.1.0...2.2.0)
5+
[Full Changelog](https://github.com/ruimarinho/bitcoin-core/compare/v2.2.0...2.2.1)
6+
7+
**Merged pull requests:**
8+
9+
- Add missing options to changelog script [\#105](https://github.com/ruimarinho/bitcoin-core/pull/105) ([pedrobranco](https://github.com/pedrobranco))
10+
- Add feature multiwallet to walletLock, walletPassphrase and walletPassphraseChange [\#104](https://github.com/ruimarinho/bitcoin-core/pull/104) ([patrix252](https://github.com/patrix252))
11+
- Fix batch example in README.md [\#96](https://github.com/ruimarinho/bitcoin-core/pull/96) ([intech](https://github.com/intech))
12+
13+
## [v2.2.0](https://github.com/ruimarinho/bitcoin-core/tree/v2.2.0) (2019-06-28)
14+
15+
[Full Changelog](https://github.com/ruimarinho/bitcoin-core/compare/v2.1.0...v2.2.0)
616

717
**Merged pull requests:**
818

dist/src/methods.js

+9
Original file line numberDiff line numberDiff line change
@@ -775,10 +775,16 @@ var _default = {
775775
},
776776
walletLock: {
777777
category: 'wallet',
778+
features: {
779+
multiwallet: '>=0.15.0'
780+
},
778781
version: '>=0.1.0'
779782
},
780783
walletPassphrase: {
781784
category: 'wallet',
785+
features: {
786+
multiwallet: '>=0.15.0'
787+
},
782788
obfuscate: {
783789
request: {
784790
default: params => (0, _lodash.set)([...params], '[0]', '******'),
@@ -789,6 +795,9 @@ var _default = {
789795
},
790796
walletPassphraseChange: {
791797
category: 'wallet',
798+
features: {
799+
multiwallet: '>=0.15.0'
800+
},
792801
obfuscate: {
793802
request: {
794803
default: params => (0, _lodash.set)((0, _lodash.set)([...params], '[0]', '******'), '[1]', '******'),

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bitcoin-core",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "A modern Bitcoin Core REST and RPC client.",
55
"keywords": [
66
"bitcoin",

0 commit comments

Comments
 (0)