Skip to content

Commit 14cb918

Browse files
authored
Merge pull request #103831 from erhopf/versions-speech
[CogSvcs] Fixing version numbers in Speech Commands and other Speech documents.
2 parents 36d1c24 + e37445a commit 14cb918

4 files changed

+13
-13
lines changed

includes/cognitive-services-speech-service-quickstart-cpp-create-proj.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
author: erhopf
33
ms.service: cognitive-services
44
ms.topic: include
5-
ms.date: 08/21/2019
5+
ms.date: 02/10/2020
66
ms.author: erhopf
77
---
8-
To create a Visual Studio project for C++ desktop development, you need to set up Visual Studio development options, create the project, select the target architecture, and install the Speech SDK.
8+
To create a Visual Studio project for C++ desktop development, you need to set up Visual Studio development options, create the project, select the target architecture, and install the Speech SDK.
99

1010
### Set up Visual Studio development options
1111

1212
To start, make sure you're set up correctly in Visual Studio for C++ desktop development:
1313

1414
1. Open Visual Studio 2019 to display the **Start** window.
1515

16-
![Start window - Visual Studio](../articles/cognitive-services/Speech-Service/media/sdk/vs-start-window.png)
16+
![Start window - Visual Studio](../articles/cognitive-services/Speech-Service/media/sdk/vs-start-window.png)
1717

1818
1. Select **Continue without code** to go to the Visual Studio IDE.
1919

@@ -71,4 +71,4 @@ Finally, install the [Speech SDK NuGet package](https://aka.ms/csspeech/nuget),
7171

7272
1. In the **Preview Changes** dialog box, select **OK**.
7373

74-
1. In the **License Acceptance** dialog box, view the license, and then select **I Accept**. The package installation begins, and when installation is complete, the **Output** pane displays a message similar to the following text: `Successfully installed 'Microsoft.CognitiveServices.Speech 1.7.0' to helloworld`.
74+
1. In the **License Acceptance** dialog box, view the license, and then select **I Accept**. The package installation begins, and when installation is complete, the **Output** pane displays a message similar to the following text: `Successfully installed 'Microsoft.CognitiveServices.Speech 1.9.0' to helloworld`.

includes/cognitive-services-speech-service-quickstart-java-android-create-proj.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: trrwilson
33
ms.service: cognitive-services
44
ms.topic: include
5-
ms.date: 5/23/2019
5+
ms.date: 02/10/2020
66
ms.author: travisw
77
---
88

@@ -22,7 +22,7 @@ Android Studio takes a moment to prepare your new Android project. Next, configu
2222

2323
[!INCLUDE [License notice](cognitive-services-speech-service-license-notice.md)]
2424

25-
The current version of the Cognitive Services Speech SDK is 1.7.0.
25+
The current version of the Cognitive Services Speech SDK is 1.9.0.
2626

2727
The Speech SDK for Android is packaged as an [AAR (Android Library)](https://developer.android.com/studio/projects/android-library), which includes the necessary libraries and required Android permissions.
2828
It's hosted in a Maven repository at https:\//csspeechstorage.blob.core.windows.net/maven/.
@@ -37,12 +37,12 @@ Set up your project to use the Speech SDK. Open the **Project Structure** window
3737

3838
![Screenshot of Library dependency](../articles/cognitive-services/Speech-Service/media/sdk/qs-java-android-07-add-module-dependency.png)
3939

40-
1. In the window that appears, enter the name and version of the Speech SDK for Android, *com.microsoft.cognitiveservices.speech:client-sdk:1.7.0*. Then select **OK**.
40+
1. In the window that appears, enter the name and version of the Speech SDK for Android, *com.microsoft.cognitiveservices.speech:client-sdk:1.9.0*. Then select **OK**.
4141
The Speech SDK should be added to the list of dependencies now, as shown:
4242

4343
![Screenshot of Speech SDK in the list of dependencies](../articles/cognitive-services/Speech-Service/media/sdk/qs-java-android-08-dependency-added-1.0.0.png)
4444

45-
1. Select the **Properties** tab. For both **Source Compatibility** and **Target Compatibility**, select **1.8**.
45+
1. Select the **Properties** tab. For both **Source Compatibility** and **Target Compatibility**, select **1.9**.
4646

4747
![Screenshot of Source Compatibility and Target Compatibility](../articles/cognitive-services/Speech-Service/media/sdk/qs-java-android-09-dependency-added.png)
4848

includes/cognitive-services-speech-service-quickstart-java-create-proj.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: erhopf
33
ms.service: cognitive-services
44
ms.topic: include
5-
ms.date: 2/20/2019
5+
ms.date: 02/10/2020
66
ms.author: erhopf
77
---
88

@@ -40,7 +40,7 @@ ms.author: erhopf
4040

4141
[!code-xml[POM Repositories](~/samples-cognitive-services-speech-sdk/quickstart/java/jre/from-microphone/pom.xml#repositories)]
4242

43-
* Also add a `dependencies` element, with the Speech SDK version 1.7.0 as a dependency:
43+
* Also add a `dependencies` element, with the Speech SDK version 1.9.0 as a dependency:
4444

4545
[!code-xml[POM Dependencies](~/samples-cognitive-services-speech-sdk/quickstart/java/jre/from-microphone/pom.xml#dependencies)]
4646

includes/cognitive-services-speech-service-quickstart-uwp-create-proj.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: erhopf
33
ms.service: cognitive-services
44
ms.topic: include
5-
ms.date: 08/19/2019
5+
ms.date: 02/10/2020
66
ms.author: erhopf
77
---
88

@@ -38,7 +38,7 @@ Next, create your project:
3838

3939
1. Find and select **Blank App (Universal Windows)**. Make sure that you select the C# version of this project type (as opposed to Visual Basic).
4040

41-
1. Select **Next** to display the **Configure your new project** screen.
41+
1. Select **Next** to display the **Configure your new project** screen.
4242

4343
![Configure your new project - Visual Studio](../articles/cognitive-services/Speech-Service/media/sdk/vs-enable-uwp-configure-your-new-project.png)
4444

@@ -99,4 +99,4 @@ Finally, install the [Speech SDK NuGet package](https://aka.ms/csspeech/nuget),
9999

100100
1. In the **Preview Changes** dialog box, select **OK**.
101101

102-
1. In the **License Acceptance** dialog box, view the license, and then select **I Accept**. The package installation begins, and when installation is complete, the **Output** pane displays a message similar to the following text: `Successfully installed 'Microsoft.CognitiveServices.Speech 1.7.0' to helloworld`.
102+
1. In the **License Acceptance** dialog box, view the license, and then select **I Accept**. The package installation begins, and when installation is complete, the **Output** pane displays a message similar to the following text: `Successfully installed 'Microsoft.CognitiveServices.Speech 1.9.0' to helloworld`.

0 commit comments

Comments
 (0)