Skip to content

Commit 182ca0e

Browse files
authored
Merge pull request #141 from watson-developer-cloud/master
Rebasing
2 parents 23824ac + 24ce5a0 commit 182ca0e

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ Node-RED Watson Nodes for IBM Cloud
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.6.7
11+
- Enable Opt-out option for Conversation Node.
12+
- Implement time out option for response from Conversation Node.
13+
- Bump to v 3.2.1 of watson-developer-cloud dependency.
14+
- Fix to how API version is specified in Natural Language Understanding Node.
15+
- Add Korean to list of languages in Natural Language Classifier Node.
1016

1117
### New in version 0.6.6
1218
- Added Mute option for STT Node warning status when running in Streaming mode

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-node-watson",
3-
"version": "0.6.6",
3+
"version": "0.6.7",
44
"description": "A collection of Node-RED nodes for IBM Watson services",
55
"dependencies": {
66
"async": "^1.5.2",
@@ -10,7 +10,7 @@
1010
"temp": "^0.8.3",
1111
"qs": "6.x",
1212
"image-type": "^2.0.2",
13-
"watson-developer-cloud": "^3.0.6",
13+
"watson-developer-cloud": "^3.2.1",
1414
"kuromoji": "^0.1.1",
1515
"word-count": "^0.2.2",
1616
"is-docx": "^0.0.3",

services/natural_language_classifier/v1.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
<option value="fr">French</option>
6666
<option value="it">Italian</option>
6767
<option value="ja">Japanese</option>
68+
<option value="ko">Korean</option>
6869
<option value="pt">Portuguese</option>
6970
<option value="es">Spanish</option>
7071
</select>

services/natural_language_understanding/v1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ module.exports = function (RED) {
183183
serviceSettings = {
184184
username: username,
185185
password: password,
186-
version_date: NaturalLanguageUnderstandingV1.VERSION_DATE_2017_02_27,
186+
version: '2018-03-16',
187187
headers: {
188188
'User-Agent': pkg.name + '-' + pkg.version
189189
}

0 commit comments

Comments
 (0)