Skip to content

Commit 746f794

Browse files
committed
Merge branch 'release/0.1.3'
2 parents d4b0223 + 1e3b923 commit 746f794

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [0.1.3] - 2018-02-11
10+
11+
### Added
12+
- Additional IRI commands from 1.3.0
13+
914
## [0.1.2] - 2018-02-11
1015

1116
### Added

dist/field.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var DEFAULT_OPTIONS = {
4242
seed: null
4343
};
4444

45-
var ALLOWED_COMMANDS = ['getNodeInfo', 'getTips', 'findTransactions', 'getTrytes', 'getInclusionStates', 'getBalances', 'getTransactionsToApprove', 'broadcastTransactions', 'storeTransactions', 'attachToTangle'];
45+
var ALLOWED_COMMANDS = ['getNodeInfo', 'getTips', 'findTransactions', 'getTrytes', 'getInclusionStates', 'getBalances', 'getTransactionsToApprove', 'broadcastTransactions', 'storeTransactions', 'attachToTangle', 'wereAddressesSpentFrom', 'getMissingTransactions', 'checkConsistency'];
4646

4747
var Field = function (_Base) {
4848
_inherits(Field, _Base);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "field.cli",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "CarrIOTA Field Client",
55
"main": "dist/field.js",
66
"homepage": "https://semkodev.com",

src/field.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ const DEFAULT_OPTIONS = {
2323
const ALLOWED_COMMANDS = [
2424
'getNodeInfo', 'getTips', 'findTransactions', 'getTrytes', 'getInclusionStates',
2525
'getBalances', 'getTransactionsToApprove', 'broadcastTransactions', 'storeTransactions',
26-
'attachToTangle'
26+
'attachToTangle', 'wereAddressesSpentFrom', 'getMissingTransactions',
27+
'checkConsistency'
2728
];
2829

2930
class Field extends Base {

0 commit comments

Comments
 (0)