From 95f7fef49e038b4fcd25f3ff85ddeba02bd0ff7e Mon Sep 17 00:00:00 2001 From: Logan Patino Date: Tue, 29 Jan 2019 11:08:40 -0500 Subject: [PATCH 1/3] fix(Compare and Comply): Fix BodyCells definition and remove unnecessary nested models --- .../compare_comply/v1/model/BodyCells.java | 38 +++++++++++++------ .../v1/model/ColumnHeaderIds.java | 34 ----------------- .../v1/model/ColumnHeaderTexts.java | 34 ----------------- .../v1/model/ColumnHeaderTextsNormalized.java | 37 ------------------ .../compare_comply/v1/model/RowHeaderIds.java | 34 ----------------- .../v1/model/RowHeaderTexts.java | 34 ----------------- .../v1/model/RowHeaderTextsNormalized.java | 37 ------------------ 7 files changed, 26 insertions(+), 222 deletions(-) delete mode 100644 compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/ColumnHeaderIds.java delete mode 100644 compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/ColumnHeaderTexts.java delete mode 100644 compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/ColumnHeaderTextsNormalized.java delete mode 100644 compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/RowHeaderIds.java delete mode 100644 compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/RowHeaderTexts.java delete mode 100644 compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/RowHeaderTextsNormalized.java diff --git a/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/BodyCells.java b/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/BodyCells.java index b9c72d38c09..59623db8859 100644 --- a/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/BodyCells.java +++ b/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/BodyCells.java @@ -35,17 +35,17 @@ public class BodyCells extends GenericModel { @SerializedName("column_index_end") private Long columnIndexEnd; @SerializedName("row_header_ids") - private List rowHeaderIds; + private List rowHeaderIds; @SerializedName("row_header_texts") - private List rowHeaderTexts; + private List rowHeaderTexts; @SerializedName("row_header_texts_normalized") - private List rowHeaderTextsNormalized; + private List rowHeaderTextsNormalized; @SerializedName("column_header_ids") - private List columnHeaderIds; + private List columnHeaderIds; @SerializedName("column_header_texts") - private List columnHeaderTexts; + private List columnHeaderTexts; @SerializedName("column_header_texts_normalized") - private List columnHeaderTextsNormalized; + private List columnHeaderTextsNormalized; /** * Gets the cellId. @@ -129,54 +129,68 @@ public Long getColumnIndexEnd() { /** * Gets the rowHeaderIds. * + * An array of values, each being the `id` value of a row header that is applicable to this body cell. + * * @return the rowHeaderIds */ - public List getRowHeaderIds() { + public List getRowHeaderIds() { return rowHeaderIds; } /** * Gets the rowHeaderTexts. * + * An array of values, each being the `text` value of a row header that is applicable to this body cell. + * * @return the rowHeaderTexts */ - public List getRowHeaderTexts() { + public List getRowHeaderTexts() { return rowHeaderTexts; } /** * Gets the rowHeaderTextsNormalized. * + * If you provide customization input, the normalized version of the row header texts according to the customization; + * otherwise, the same value as `row_header_texts`. + * * @return the rowHeaderTextsNormalized */ - public List getRowHeaderTextsNormalized() { + public List getRowHeaderTextsNormalized() { return rowHeaderTextsNormalized; } /** * Gets the columnHeaderIds. * + * An array of values, each being the `id` value of a column header that is applicable to the current cell. + * * @return the columnHeaderIds */ - public List getColumnHeaderIds() { + public List getColumnHeaderIds() { return columnHeaderIds; } /** * Gets the columnHeaderTexts. * + * An array of values, each being the `text` value of a column header that is applicable to the current cell. + * * @return the columnHeaderTexts */ - public List getColumnHeaderTexts() { + public List getColumnHeaderTexts() { return columnHeaderTexts; } /** * Gets the columnHeaderTextsNormalized. * + * If you provide customization input, the normalized version of the column header texts according to the + * customization; otherwise, the same value as `column_header_texts`. + * * @return the columnHeaderTextsNormalized */ - public List getColumnHeaderTextsNormalized() { + public List getColumnHeaderTextsNormalized() { return columnHeaderTextsNormalized; } } diff --git a/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/ColumnHeaderIds.java b/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/ColumnHeaderIds.java deleted file mode 100644 index 495dc562177..00000000000 --- a/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/ColumnHeaderIds.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright 2018 IBM Corp. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on - * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - */ -package com.ibm.watson.developer_cloud.compare_comply.v1.model; - -import com.ibm.watson.developer_cloud.service.model.GenericModel; - -/** - * An array of values, each being the `id` value of a column header that is applicable to the current cell. - */ -public class ColumnHeaderIds extends GenericModel { - - private String id; - - /** - * Gets the id. - * - * The `id` value of a column header. - * - * @return the id - */ - public String getId() { - return id; - } -} diff --git a/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/ColumnHeaderTexts.java b/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/ColumnHeaderTexts.java deleted file mode 100644 index 7e827af0a40..00000000000 --- a/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/ColumnHeaderTexts.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright 2018 IBM Corp. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on - * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - */ -package com.ibm.watson.developer_cloud.compare_comply.v1.model; - -import com.ibm.watson.developer_cloud.service.model.GenericModel; - -/** - * An array of values, each being the `text` value of a column header that is applicable to the current cell. - */ -public class ColumnHeaderTexts extends GenericModel { - - private String text; - - /** - * Gets the text. - * - * The `text` value of a column header. - * - * @return the text - */ - public String getText() { - return text; - } -} diff --git a/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/ColumnHeaderTextsNormalized.java b/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/ColumnHeaderTextsNormalized.java deleted file mode 100644 index 29e91535969..00000000000 --- a/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/ColumnHeaderTextsNormalized.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright 2018 IBM Corp. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on - * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - */ -package com.ibm.watson.developer_cloud.compare_comply.v1.model; - -import com.google.gson.annotations.SerializedName; -import com.ibm.watson.developer_cloud.service.model.GenericModel; - -/** - * If you provide customization input, the normalized version of the column header texts according to the customization; - * otherwise, the same value as `column_header_texts`. - */ -public class ColumnHeaderTextsNormalized extends GenericModel { - - @SerializedName("text_normalized") - private String textNormalized; - - /** - * Gets the textNormalized. - * - * The normalized version of a column header text. - * - * @return the textNormalized - */ - public String getTextNormalized() { - return textNormalized; - } -} diff --git a/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/RowHeaderIds.java b/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/RowHeaderIds.java deleted file mode 100644 index dc7ec8b2585..00000000000 --- a/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/RowHeaderIds.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright 2018 IBM Corp. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on - * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - */ -package com.ibm.watson.developer_cloud.compare_comply.v1.model; - -import com.ibm.watson.developer_cloud.service.model.GenericModel; - -/** - * An array of values, each being the `id` value of a row header that is applicable to this body cell. - */ -public class RowHeaderIds extends GenericModel { - - private String id; - - /** - * Gets the id. - * - * The `id` values of a row header. - * - * @return the id - */ - public String getId() { - return id; - } -} diff --git a/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/RowHeaderTexts.java b/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/RowHeaderTexts.java deleted file mode 100644 index f313a644f70..00000000000 --- a/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/RowHeaderTexts.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright 2018 IBM Corp. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on - * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - */ -package com.ibm.watson.developer_cloud.compare_comply.v1.model; - -import com.ibm.watson.developer_cloud.service.model.GenericModel; - -/** - * An array of values, each being the `text` value of a row header that is applicable to this body cell. - */ -public class RowHeaderTexts extends GenericModel { - - private String text; - - /** - * Gets the text. - * - * The `text` value of a row header. - * - * @return the text - */ - public String getText() { - return text; - } -} diff --git a/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/RowHeaderTextsNormalized.java b/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/RowHeaderTextsNormalized.java deleted file mode 100644 index 8d59433ba6e..00000000000 --- a/compare-comply/src/main/java/com/ibm/watson/developer_cloud/compare_comply/v1/model/RowHeaderTextsNormalized.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright 2018 IBM Corp. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on - * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - */ -package com.ibm.watson.developer_cloud.compare_comply.v1.model; - -import com.google.gson.annotations.SerializedName; -import com.ibm.watson.developer_cloud.service.model.GenericModel; - -/** - * If you provide customization input, the normalized version of the row header texts according to the customization; - * otherwise, the same value as `row_header_texts`. - */ -public class RowHeaderTextsNormalized extends GenericModel { - - @SerializedName("text_normalized") - private String textNormalized; - - /** - * Gets the textNormalized. - * - * The normalized version of a row header text. - * - * @return the textNormalized - */ - public String getTextNormalized() { - return textNormalized; - } -} From cb4b58f55b8b4004b9e506e123e6e802d9f8507a Mon Sep 17 00:00:00 2001 From: Logan Patino Date: Tue, 29 Jan 2019 11:09:14 -0500 Subject: [PATCH 2/3] test(Compare and Comply): Update tests to match new model definitions --- .../compare_comply/v1/CompareComplyTest.java | 24 +++++++++---------- .../compare_comply/classify-return.json | 24 +++++-------------- .../compare_comply/table-return.json | 24 +++++-------------- 3 files changed, 24 insertions(+), 48 deletions(-) diff --git a/compare-comply/src/test/java/com/ibm/watson/developer_cloud/compare_comply/v1/CompareComplyTest.java b/compare-comply/src/test/java/com/ibm/watson/developer_cloud/compare_comply/v1/CompareComplyTest.java index f2a5a2910a8..b5e9856e29b 100644 --- a/compare-comply/src/test/java/com/ibm/watson/developer_cloud/compare_comply/v1/CompareComplyTest.java +++ b/compare-comply/src/test/java/com/ibm/watson/developer_cloud/compare_comply/v1/CompareComplyTest.java @@ -625,14 +625,14 @@ public void testClassifyElements() throws FileNotFoundException, InterruptedExce assertEquals(ROW_INDEX_END, response.getTables().get(0).getBodyCells().get(0).getRowIndexEnd()); assertEquals(COLUMN_INDEX_BEGIN, response.getTables().get(0).getBodyCells().get(0).getColumnIndexBegin()); assertEquals(COLUMN_INDEX_END, response.getTables().get(0).getBodyCells().get(0).getColumnIndexEnd()); - assertEquals(ID, response.getTables().get(0).getBodyCells().get(0).getRowHeaderIds().get(0).getId()); - assertEquals(TEXT, response.getTables().get(0).getBodyCells().get(0).getRowHeaderTexts().get(0).getText()); + assertEquals(ID, response.getTables().get(0).getBodyCells().get(0).getRowHeaderIds().get(0)); + assertEquals(TEXT, response.getTables().get(0).getBodyCells().get(0).getRowHeaderTexts().get(0)); assertEquals(TEXT_NORMALIZED, - response.getTables().get(0).getBodyCells().get(0).getRowHeaderTextsNormalized().get(0).getTextNormalized()); - assertEquals(ID, response.getTables().get(0).getBodyCells().get(0).getColumnHeaderIds().get(0).getId()); - assertEquals(TEXT, response.getTables().get(0).getBodyCells().get(0).getColumnHeaderTexts().get(0).getText()); + response.getTables().get(0).getBodyCells().get(0).getRowHeaderTextsNormalized().get(0)); + assertEquals(ID, response.getTables().get(0).getBodyCells().get(0).getColumnHeaderIds().get(0)); + assertEquals(TEXT, response.getTables().get(0).getBodyCells().get(0).getColumnHeaderTexts().get(0)); assertEquals(TEXT_NORMALIZED, - response.getTables().get(0).getBodyCells().get(0).getColumnHeaderTextsNormalized().get(0).getTextNormalized()); + response.getTables().get(0).getBodyCells().get(0).getColumnHeaderTextsNormalized().get(0)); assertEquals(TEXT, response.getDocumentStructure().getSectionTitles().get(0).getText()); assertEquals(BEGIN, response.getDocumentStructure().getSectionTitles().get(0).getLocation().getBegin()); assertEquals(END, response.getDocumentStructure().getSectionTitles().get(0).getLocation().getEnd()); @@ -721,14 +721,14 @@ public void testExtractTables() throws FileNotFoundException, InterruptedExcepti assertEquals(ROW_INDEX_END, response.getTables().get(0).getBodyCells().get(0).getRowIndexEnd()); assertEquals(COLUMN_INDEX_BEGIN, response.getTables().get(0).getBodyCells().get(0).getColumnIndexBegin()); assertEquals(COLUMN_INDEX_END, response.getTables().get(0).getBodyCells().get(0).getColumnIndexEnd()); - assertEquals(ID, response.getTables().get(0).getBodyCells().get(0).getRowHeaderIds().get(0).getId()); - assertEquals(TEXT, response.getTables().get(0).getBodyCells().get(0).getRowHeaderTexts().get(0).getText()); + assertEquals(ID, response.getTables().get(0).getBodyCells().get(0).getRowHeaderIds().get(0)); + assertEquals(TEXT, response.getTables().get(0).getBodyCells().get(0).getRowHeaderTexts().get(0)); assertEquals(TEXT_NORMALIZED, - response.getTables().get(0).getBodyCells().get(0).getRowHeaderTextsNormalized().get(0).getTextNormalized()); - assertEquals(ID, response.getTables().get(0).getBodyCells().get(0).getColumnHeaderIds().get(0).getId()); - assertEquals(TEXT, response.getTables().get(0).getBodyCells().get(0).getColumnHeaderTexts().get(0).getText()); + response.getTables().get(0).getBodyCells().get(0).getRowHeaderTextsNormalized().get(0)); + assertEquals(ID, response.getTables().get(0).getBodyCells().get(0).getColumnHeaderIds().get(0)); + assertEquals(TEXT, response.getTables().get(0).getBodyCells().get(0).getColumnHeaderTexts().get(0)); assertEquals(TEXT_NORMALIZED, - response.getTables().get(0).getBodyCells().get(0).getColumnHeaderTextsNormalized().get(0).getTextNormalized()); + response.getTables().get(0).getBodyCells().get(0).getColumnHeaderTextsNormalized().get(0)); } @Test diff --git a/compare-comply/src/test/resources/compare_comply/classify-return.json b/compare-comply/src/test/resources/compare_comply/classify-return.json index 44b7ff9f444..1e4986e02f2 100644 --- a/compare-comply/src/test/resources/compare_comply/classify-return.json +++ b/compare-comply/src/test/resources/compare_comply/classify-return.json @@ -115,34 +115,22 @@ "column_index_begin": 4000, "column_index_end": 5000, "row_header_ids": [ - { - "id": "id" - } + "id" ], "row_header_texts": [ - { - "text": "text" - } + "text" ], "row_header_texts_normalized": [ - { - "text_normalized": "text_normalized" - } + "text_normalized" ], "column_header_ids": [ - { - "id": "id" - } + "id" ], "column_header_texts": [ - { - "text": "text" - } + "text" ], "column_header_texts_normalized": [ - { - "text_normalized": "text_normalized" - } + "text_normalized" ] } ] diff --git a/compare-comply/src/test/resources/compare_comply/table-return.json b/compare-comply/src/test/resources/compare_comply/table-return.json index 4c541d8cd63..cd00d7e1b03 100644 --- a/compare-comply/src/test/resources/compare_comply/table-return.json +++ b/compare-comply/src/test/resources/compare_comply/table-return.json @@ -76,34 +76,22 @@ "column_index_begin": 4000, "column_index_end": 5000, "row_header_ids": [ - { - "id": "id" - } + "id" ], "row_header_texts": [ - { - "text": "text" - } + "text" ], "row_header_texts_normalized": [ - { - "text_normalized": "text_normalized" - } + "text_normalized" ], "column_header_ids": [ - { - "id": "id" - } + "id" ], "column_header_texts": [ - { - "text": "text" - } + "text" ], "column_header_texts_normalized": [ - { - "text_normalized": "text_normalized" - } + "text_normalized" ] } ] From 64a0187f9d256cece64d565faaa46f5ac72951da Mon Sep 17 00:00:00 2001 From: Logan Patino Date: Tue, 29 Jan 2019 11:11:53 -0500 Subject: [PATCH 3/3] [skip ci] docs: Update version numbers from 6.13.1 -> 6.13.2 --- .bumpversion.cfg | 2 +- README.md | 14 +++++++------- assistant/README.md | 4 ++-- conversation/README.md | 4 ++-- discovery/README.md | 4 ++-- language-translator/README.md | 4 ++-- natural-language-classifier/README.md | 4 ++-- natural-language-understanding/README.md | 4 ++-- personality-insights/README.md | 4 ++-- speech-to-text/README.md | 4 ++-- text-to-speech/README.md | 4 ++-- tone-analyzer/README.md | 4 ++-- visual-recognition/README.md | 4 ++-- 13 files changed, 30 insertions(+), 30 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 744886484c7..b37e1a1cbfe 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 6.13.1 +current_version = 6.13.2 commit = True message = [skip ci] docs: Update version numbers from {current_version} -> {new_version} diff --git a/README.md b/README.md index 72d7e8446ca..fb441cb54d7 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ All the services: com.ibm.watson.developer_cloud java-sdk - 6.13.1 + 6.13.2 ``` @@ -71,7 +71,7 @@ Only Discovery: com.ibm.watson.developer_cloud discovery - 6.13.1 + 6.13.2 ``` @@ -80,13 +80,13 @@ Only Discovery: All the services: ```gradle -'com.ibm.watson.developer_cloud:java-sdk:6.13.1' +'com.ibm.watson.developer_cloud:java-sdk:6.13.2' ``` Only Assistant: ```gradle -'com.ibm.watson.developer_cloud:assistant:6.13.1' +'com.ibm.watson.developer_cloud:assistant:6.13.2' ``` ##### Development snapshots @@ -109,7 +109,7 @@ And then reference the snapshot version on your app module gradle Only Speech to Text: ```gradle -'com.ibm.watson.developer_cloud:speech-to-text:6.13.2-SNAPSHOT' +'com.ibm.watson.developer_cloud:speech-to-text:6.13.3-SNAPSHOT' ``` ##### JAR @@ -388,7 +388,7 @@ Gradle: ```sh cd java-sdk -gradle jar # build jar file (build/libs/watson-developer-cloud-6.13.1.jar) +gradle jar # build jar file (build/libs/watson-developer-cloud-6.13.2.jar) gradle test # run tests gradle check # performs quality checks on source files and generates reports gradle testReport # run tests and generate the aggregated test report (build/reports/allTests) @@ -441,4 +441,4 @@ or [Stack Overflow](http://stackoverflow.com/questions/ask?tags=ibm-watson). [ibm-cloud-onboarding]: http://cloud.ibm.com/registration?target=/developer/watson&cm_sp=WatsonPlatform-WatsonServices-_-OnPageNavLink-IBMWatson_SDKs-_-Java -[jar]: https://github.com/watson-developer-cloud/java-sdk/releases/download/java-sdk-6.13.1/java-sdk-6.13.1-jar-with-dependencies.jar +[jar]: https://github.com/watson-developer-cloud/java-sdk/releases/download/java-sdk-6.13.2/java-sdk-6.13.2-jar-with-dependencies.jar diff --git a/assistant/README.md b/assistant/README.md index 876c6912500..2c27119fdef 100644 --- a/assistant/README.md +++ b/assistant/README.md @@ -7,13 +7,13 @@ com.ibm.watson.developer_cloud assistant - 6.13.1 + 6.13.2 ``` ##### Gradle ```gradle -'com.ibm.watson.developer_cloud:assistant:6.13.1' +'com.ibm.watson.developer_cloud:assistant:6.13.2' ``` ## Usage diff --git a/conversation/README.md b/conversation/README.md index 2fa7f8cef74..9055f4e4182 100644 --- a/conversation/README.md +++ b/conversation/README.md @@ -10,13 +10,13 @@ Conversation will be removed in the next major release. Please migrate to Assist com.ibm.watson.developer_cloud conversation - 6.13.1 + 6.13.2 ``` ##### Gradle ```gradle -'com.ibm.watson.developer_cloud:conversation:6.13.1' +'com.ibm.watson.developer_cloud:conversation:6.13.2' ``` ## Usage diff --git a/discovery/README.md b/discovery/README.md index ed221d47682..5b3c3658953 100644 --- a/discovery/README.md +++ b/discovery/README.md @@ -7,13 +7,13 @@ com.ibm.watson.developer_cloud discovery - 6.13.1 + 6.13.2 ``` ##### Gradle ```gradle -'com.ibm.watson.developer_cloud:discovery:6.13.1' +'com.ibm.watson.developer_cloud:discovery:6.13.2' ``` ## Usage diff --git a/language-translator/README.md b/language-translator/README.md index bd590b2314c..d1b744b1309 100644 --- a/language-translator/README.md +++ b/language-translator/README.md @@ -7,13 +7,13 @@ com.ibm.watson.developer_cloud language-translator - 6.13.1 + 6.13.2 ``` ##### Gradle ```gradle -'com.ibm.watson.developer_cloud:language-translator:6.13.1' +'com.ibm.watson.developer_cloud:language-translator:6.13.2' ``` ## Usage diff --git a/natural-language-classifier/README.md b/natural-language-classifier/README.md index e11d5cf5bd5..4fbb4091556 100644 --- a/natural-language-classifier/README.md +++ b/natural-language-classifier/README.md @@ -7,13 +7,13 @@ com.ibm.watson.developer_cloud natural-language-classifier - 6.13.1 + 6.13.2 ``` ##### Gradle ```gradle -'com.ibm.watson.developer_cloud:natural-language-classifier:6.13.1' +'com.ibm.watson.developer_cloud:natural-language-classifier:6.13.2' ``` ## Usage diff --git a/natural-language-understanding/README.md b/natural-language-understanding/README.md index 9802b751231..ab872a39e1f 100644 --- a/natural-language-understanding/README.md +++ b/natural-language-understanding/README.md @@ -7,13 +7,13 @@ com.ibm.watson.developer_cloud natural-language-understanding - 6.13.1 + 6.13.2 ``` ##### Gradle ```gradle -'com.ibm.watson.developer_cloud:natural-language-understanding:6.13.1' +'com.ibm.watson.developer_cloud:natural-language-understanding:6.13.2' ``` ## Usage diff --git a/personality-insights/README.md b/personality-insights/README.md index 681c6881716..4aa0d85cc7f 100755 --- a/personality-insights/README.md +++ b/personality-insights/README.md @@ -7,13 +7,13 @@ com.ibm.watson.developer_cloud personality-insights - 6.13.1 + 6.13.2 ``` ##### Gradle ```gradle -'com.ibm.watson.developer_cloud:personality-insights:6.13.1' +'com.ibm.watson.developer_cloud:personality-insights:6.13.2' ``` ## Usage diff --git a/speech-to-text/README.md b/speech-to-text/README.md index d51a1c9b8be..2514498c134 100755 --- a/speech-to-text/README.md +++ b/speech-to-text/README.md @@ -7,13 +7,13 @@ com.ibm.watson.developer_cloud speech-to-text - 6.13.1 + 6.13.2 ``` ##### Gradle ```gradle -'com.ibm.watson.developer_cloud:speech-to-text:6.13.1' +'com.ibm.watson.developer_cloud:speech-to-text:6.13.2' ``` ## Usage diff --git a/text-to-speech/README.md b/text-to-speech/README.md index d2458ca15b9..514cbdad6ee 100755 --- a/text-to-speech/README.md +++ b/text-to-speech/README.md @@ -7,13 +7,13 @@ com.ibm.watson.developer_cloud text-to-speech - 6.13.1 + 6.13.2 ``` ##### Gradle ```gradle -'com.ibm.watson.developer_cloud:text-to-speech:6.13.1' +'com.ibm.watson.developer_cloud:text-to-speech:6.13.2' ``` ## Usage diff --git a/tone-analyzer/README.md b/tone-analyzer/README.md index c3c3766396b..60a7e8cfcec 100755 --- a/tone-analyzer/README.md +++ b/tone-analyzer/README.md @@ -7,13 +7,13 @@ com.ibm.watson.developer_cloud tone-analyzer - 6.13.1 + 6.13.2 ``` ##### Gradle ```gradle -'com.ibm.watson.developer_cloud:tone-analyzer:6.13.1' +'com.ibm.watson.developer_cloud:tone-analyzer:6.13.2' ``` ## Usage diff --git a/visual-recognition/README.md b/visual-recognition/README.md index 2487e2b3805..732a88f60f9 100644 --- a/visual-recognition/README.md +++ b/visual-recognition/README.md @@ -7,13 +7,13 @@ com.ibm.watson.developer_cloud visual-recognition - 6.13.1 + 6.13.2 ``` ##### Gradle ```gradle -'com.ibm.watson.developer_cloud:visual-recognition:6.13.1' +'com.ibm.watson.developer_cloud:visual-recognition:6.13.2' ``` ## Usage