Skip to content

Commit 2c4a206

Browse files
authored
Merge pull request #183 from chughts/0412
0412
2 parents 4686a4e + c9467df commit 2c4a206

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ Node-RED Watson Nodes for IBM Bluemix
77

88
<a href="https://cla-assistant.io/watson-developer-cloud/node-red-node-watson"><img src="https://cla-assistant.io/readme/badge/watson-developer-cloud/node-red-node-watson" alt="CLA assistant" /></a>
99

10+
### New in version 0.4.12
11+
- Emergency fix for node.js version compatibility problem, in payload-utils
12+
1013
### New in version 0.4.11
1114
- Corrected word count for Japanese text in Personality Insights nodes.
1215
- Move Dialog to deprecated list.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-node-watson",
3-
"version": "0.4.11",
3+
"version": "0.4.12",
44
"description": "A collection of Node-RED nodes for IBM Watson services",
55
"dependencies": {
66
"alchemy-api": "^1.3.0",

utilities/payload-utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ PayloadUtils.prototype = {
6969

7070
// Function that is returns a function to count
7171
// the characters in each language.
72-
word_count(ct) {
72+
word_count: function(ct) {
7373
var kuromoji = require('kuromoji'),
7474
fn = function(txt, cb) {
7575
// default

0 commit comments

Comments
 (0)