Skip to content

Commit 3f49ad8

Browse files
committed
update refferences to the SDK package version in our how to and sample docs.
1 parent e8f2ee0 commit 3f49ad8

11 files changed

+13
-13
lines changed

articles/cognitive-services/Speech-Service/includes/get-speech-sdk-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: trbye
88

99
:::row:::
1010
:::column span="3":::
11-
The Java SDK for Android is packaged as an <a href="https://developer.android.com/studio/projects/android-library" target="_blank">AAR (Android Library) <span class="docon docon-navigate-external x-hidden-focus"></span></a>, which includes the necessary libraries and required Android permissions. It's hosted in a Maven repository at `https://csspeechstorage.blob.core.windows.net/maven/` as package `com.microsoft.cognitiveservices.speech:client-sdk:1.11.0`.
11+
The Java SDK for Android is packaged as an <a href="https://developer.android.com/studio/projects/android-library" target="_blank">AAR (Android Library) <span class="docon docon-navigate-external x-hidden-focus"></span></a>, which includes the necessary libraries and required Android permissions. It's hosted in a Maven repository at `https://csspeechstorage.blob.core.windows.net/maven/` as package `com.microsoft.cognitiveservices.speech:client-sdk:1.12.0`.
1212
:::column-end:::
1313
:::column:::
1414
<br>
@@ -27,7 +27,7 @@ To consume the package from your Android Studio project, make the following chan
2727

2828
2. In the module-level *build.gradle* file, add the following to the `dependencies` section:
2929
```gradle
30-
implementation 'com.microsoft.cognitiveservices.speech:client-sdk:1.11.0'
30+
implementation 'com.microsoft.cognitiveservices.speech:client-sdk:1.12.0'
3131
```
3232

3333
The Java SDK is also part of the [Speech Devices SDK](../speech-devices-sdk.md).

articles/cognitive-services/Speech-Service/includes/get-speech-sdk-macos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ platform :ios, '9.3'
3838
use_frameworks!
3939
4040
target 'MyApp' do
41-
pod 'MicrosoftCognitiveServicesSpeech', '~> 1.11.0'
41+
pod 'MicrosoftCognitiveServicesSpeech', '~> 1.12.0'
4242
end
4343
```
4444

articles/cognitive-services/Speech-Service/includes/quickstarts/from-microphone/go/go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Before you get started:
2020
Update the go.mod file with the latest SDK version by adding this line
2121
```sh
2222
require (
23-
github.com/Microsoft/cognitive-services-speech-sdk-go v1.11.0-alpha1
23+
github.com/Microsoft/cognitive-services-speech-sdk-go v1.12.0-alpha1
2424
)
2525
```
2626

articles/cognitive-services/Speech-Service/includes/quickstarts/voice-assistants/go/go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Before you get started:
2424
Update the go.mod file with the latest SDK version by adding this line
2525
```sh
2626
require (
27-
github.com/Microsoft/cognitive-services-speech-sdk-go v1.11.0-alpha1
27+
github.com/Microsoft/cognitive-services-speech-sdk-go v1.12.0
2828
)
2929
```
3030

articles/cognitive-services/Speech-Service/includes/speech-devices-sdk-android-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ To validate your development kit setup, build and install the sample application
9191
Update the **build.gradle(Module:app)** by adding this line to the dependencies section.
9292

9393
```xml
94-
implementation'com.microsoft.cognitiveservices.speech:client-sdk:1.11.0'
94+
implementation'com.microsoft.cognitiveservices.speech:client-sdk:1.12.0'
9595
```
9696

9797
1. Add your speech subscription key to the source code. If you want to try intent recognition, also add your [Language Understanding service](https://azure.microsoft.com/services/cognitive-services/language-understanding-intelligent-service/) subscription key and application ID.

articles/cognitive-services/Speech-Service/includes/speech-devices-sdk-linux-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ If you plan to use the intents you'll need a [Language Understanding Service (LU
9595
<dependency>
9696
<groupId>com.microsoft.cognitiveservices.speech</groupId>
9797
<artifactId>client-sdk</artifactId>
98-
<version>1.11.0</version>
98+
<version>1.12.0</version>
9999
</dependency>
100100
</dependencies>
101101
```

articles/cognitive-services/Speech-Service/includes/speech-devices-sdk-windows-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ If you plan to use the intents you'll need a [Language Understanding Service (LU
6969
<dependency>
7070
<groupId>com.microsoft.cognitiveservices.speech</groupId>
7171
<artifactId>client-sdk</artifactId>
72-
<version>1.11.0</version>
72+
<version>1.12.0</version>
7373
</dependency>
7474
</dependencies>
7575
```

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.11.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.12.0' to helloworld`.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.11.0.
25+
The current version of the Cognitive Services Speech SDK is 1.12.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,7 +37,7 @@ 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.11.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.12.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)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.11.0 as a dependency:
43+
* Also add a `dependencies` element, with the Speech SDK version 1.12.0 as a dependency:
4444

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

0 commit comments

Comments
 (0)