Skip to content

Commit e5790c6

Browse files
committed
Merge branch 'release/0.1.1'
2 parents 3414ef0 + ba39937 commit e5790c6

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [0.1.1] - 2018-02-10
10+
11+
### Changed
12+
- Fixed getInclusionStates command.
13+
14+
## [0.1.0] - 2018-02-10
15+
916
Initial alpha version

dist/field.js

+1-1
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', 'getInclusionStats', 'getBalances', 'getTransactionsToApprove', 'broadcastTransactions', 'storeTransactions', 'attachToTangle'];
45+
var ALLOWED_COMMANDS = ['getNodeInfo', 'getTips', 'findTransactions', 'getTrytes', 'getInclusionStates', 'getBalances', 'getTransactionsToApprove', 'broadcastTransactions', 'storeTransactions', 'attachToTangle'];
4646

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

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "field.cli",
3-
"version": "0.1.0",
4-
"description": "CarrIOTA FIeld Client",
3+
"version": "0.1.1",
4+
"description": "CarrIOTA Field Client",
55
"main": "dist/field.js",
66
"homepage": "https://semkodev.com",
77
"author": "Roman Semko <[email protected]> (http://twitter.com/RomanSemko)",

src/field.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const DEFAULT_OPTIONS = {
2121
};
2222

2323
const ALLOWED_COMMANDS = [
24-
'getNodeInfo', 'getTips', 'findTransactions', 'getTrytes', 'getInclusionStats',
24+
'getNodeInfo', 'getTips', 'findTransactions', 'getTrytes', 'getInclusionStates',
2525
'getBalances', 'getTransactionsToApprove', 'broadcastTransactions', 'storeTransactions',
2626
'attachToTangle'
2727
];

0 commit comments

Comments
 (0)