Skip to content

Commit 3bf36a6

Browse files
Brian Mouncercqfu96
authored andcommitted
public docs updates and release notes for 1.43.0
1 parent 39072c4 commit 3bf36a6

File tree

13 files changed

+74
-17
lines changed

13 files changed

+74
-17
lines changed

articles/ai-services/speech-service/embedded-speech.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Follow these steps to install the Speech SDK for Java using Apache Maven:
129129
<dependency>
130130
<groupId>com.microsoft.cognitiveservices.speech</groupId>
131131
<artifactId>client-sdk-embedded</artifactId>
132-
<version>1.42.0</version>
132+
<version>1.43.0</version>
133133
</dependency>
134134
</dependencies>
135135
</project>
@@ -150,7 +150,7 @@ Be sure to use the `@aar` suffix when the dependency is specified in `build.grad
150150

151151
```
152152
dependencies {
153-
implementation 'com.microsoft.cognitiveservices.speech:client-sdk-embedded:1.42.0@aar'
153+
implementation 'com.microsoft.cognitiveservices.speech:client-sdk-embedded:1.43.0@aar'
154154
}
155155
```
156156
::: zone-end

articles/ai-services/speech-service/includes/quickstarts/captioning/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Before you can do anything, you need to [install the Speech SDK](~/articles/ai-s
4343
<dependency>
4444
<groupId>com.microsoft.cognitiveservices.speech</groupId>
4545
<artifactId>client-sdk</artifactId>
46-
<version>1.42.0</version>
46+
<version>1.43.0</version>
4747
</dependency>
4848
</dependencies>
4949
</project>

articles/ai-services/speech-service/includes/quickstarts/platform/java-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ Add the Speech SDK as a dependency in your project.
5050

5151
:::image type="content" source="../../../media/sdk/android-studio/sdk-install-3-zoom.png" alt-text="Screenshot that shows how to add a library dependency in Android Studio." lightbox="../../../media/sdk/android-studio/sdk-install-3.png":::
5252

53-
1. In the **Add Library Dependency** window that appears, enter the name and version of the Speech SDK for Java: *com.microsoft.cognitiveservices.speech:client-sdk:1.42.0*. Then select **Search**.
53+
1. In the **Add Library Dependency** window that appears, enter the name and version of the Speech SDK for Java: *com.microsoft.cognitiveservices.speech:client-sdk:1.43.0*. Then select **Search**.
5454
1. Make sure that the selected **Group ID** is **com.microsoft.cognitiveservices.speech**, and then select **OK**.
5555
1. Select **OK** to close the **Project Structure** window and apply your changes to the project.

articles/ai-services/speech-service/includes/quickstarts/platform/java-jre.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Follow these steps to install the Speech SDK for Java using Apache Maven:
5252
<dependency>
5353
<groupId>com.microsoft.cognitiveservices.speech</groupId>
5454
<artifactId>client-sdk</artifactId>
55-
<version>1.42.0</version>
55+
<version>1.43.0</version>
5656
</dependency>
5757
</dependencies>
5858
</project>
@@ -107,7 +107,7 @@ Follow these steps to install the Speech SDK for Java using Apache Maven:
107107
<dependency>
108108
<groupId>com.microsoft.cognitiveservices.speech</groupId>
109109
<artifactId>client-sdk</artifactId>
110-
<version>1.42.0</version>
110+
<version>1.43.0</version>
111111
</dependency>
112112
</dependencies>
113113
```
@@ -124,7 +124,7 @@ Gradle configurations require an explicit reference to the *.jar* dependency ext
124124
// build.gradle
125125
126126
dependencies {
127-
implementation group: 'com.microsoft.cognitiveservices.speech', name: 'client-sdk', version: "1.42.0", ext: "jar"
127+
implementation group: 'com.microsoft.cognitiveservices.speech', name: 'client-sdk', version: "1.43.0", ext: "jar"
128128
}
129129
```
130130

articles/ai-services/speech-service/includes/quickstarts/platform/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Install a Java Development Kit such as [Azul Zulu OpenJDK](https://www.azul.com/
2929

3030
## Install the Speech SDK for Java
3131

32-
Some of the instructions use a specific SDK version such as `1.42.0`. To check the latest version, [search our GitHub repository](https://github.com/Azure-Samples/cognitive-services-speech-sdk/search?q=com.microsoft.cognitiveservices.speech%3Aclient-sdk).
32+
Some of the instructions use a specific SDK version such as `1.43.0`. To check the latest version, [search our GitHub repository](https://github.com/Azure-Samples/cognitive-services-speech-sdk/search?q=com.microsoft.cognitiveservices.speech%3Aclient-sdk).
3333

3434
Choose your target environment:
3535

articles/ai-services/speech-service/includes/quickstarts/platform/objectivec.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The macOS CocoaPod package is available for download and use with the [Xcode 9.4
3434
use_frameworks!
3535

3636
target 'AppName' do
37-
pod 'MicrosoftCognitiveServicesSpeech-macOS', '~> 1.42.0'
37+
pod 'MicrosoftCognitiveServicesSpeech-macOS', '~> 1.43.0'
3838
end
3939
```
4040

@@ -62,7 +62,7 @@ The macOS CocoaPod package is available for download and use with the [Xcode 9.4
6262
use_frameworks!
6363

6464
target 'AppName' do
65-
pod 'MicrosoftCognitiveServicesSpeech-iOS', '~> 1.42.0'
65+
pod 'MicrosoftCognitiveServicesSpeech-iOS', '~> 1.43.0'
6666
end
6767
```
6868

articles/ai-services/speech-service/includes/quickstarts/platform/swift.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The macOS CocoaPod package is available for download and use with the [Xcode 9.4
3434
use_frameworks!
3535

3636
target 'AppName' do
37-
pod 'MicrosoftCognitiveServicesSpeech-macOS', '~> 1.42.0'
37+
pod 'MicrosoftCognitiveServicesSpeech-macOS', '~> 1.43.0'
3838
end
3939
```
4040

@@ -62,7 +62,7 @@ The macOS CocoaPod package is available for download and use with the [Xcode 9.4
6262
use_frameworks!
6363

6464
target 'AppName' do
65-
pod 'MicrosoftCognitiveServicesSpeech-iOS', '~> 1.42.0'
65+
pod 'MicrosoftCognitiveServicesSpeech-iOS', '~> 1.43.0'
6666
end
6767
```
6868

articles/ai-services/speech-service/includes/quickstarts/speech-to-text-basics/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ To set up your environment, [install the Speech SDK](~/articles/ai-services/spee
4444
<dependency>
4545
<groupId>com.microsoft.cognitiveservices.speech</groupId>
4646
<artifactId>client-sdk</artifactId>
47-
<version>1.42.0</version>
47+
<version>1.43.0</version>
4848
</dependency>
4949
</dependencies>
5050
</project>

articles/ai-services/speech-service/includes/quickstarts/speech-translation-basics/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Before you can do anything, you need to install the Speech SDK. The sample in th
4343
<dependency>
4444
<groupId>com.microsoft.cognitiveservices.speech</groupId>
4545
<artifactId>client-sdk</artifactId>
46-
<version>1.42.0</version>
46+
<version>1.43.0</version>
4747
</dependency>
4848
</dependencies>
4949
</project>

articles/ai-services/speech-service/includes/quickstarts/stt-diarization/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To set up your environment, [install the Speech SDK](~/articles/ai-services/spee
4545
<dependency>
4646
<groupId>com.microsoft.cognitiveservices.speech</groupId>
4747
<artifactId>client-sdk</artifactId>
48-
<version>1.42.0</version>
48+
<version>1.43.0</version>
4949
</dependency>
5050
</dependencies>
5151
</project>

0 commit comments

Comments
 (0)