Skip to content

Commit 1660eec

Browse files
authored
[DT] Prepare release (Azure#29133)
1 parent add4b29 commit 1660eec

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

sdk/translation/Azure.AI.Translation.Document/CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 1.0.0-beta.7 (Unreleased)
3+
## 1.0.0 (2022-06-07)
44

55
### Features Added
66
- Added optional parameter `categoryId` to the `DocumentTranslationInput.AddTarget`.
@@ -25,8 +25,6 @@
2525
### Bugs Fixed
2626
- In `DocumentTranslationOperation`, `Cancel` calls won't overwrite the response from `GetRawResponse` anymore.
2727

28-
### Other Changes
29-
3028
## 1.0.0-beta.6 (2021-11-09)
3129

3230
### Breaking Changes

sdk/translation/Azure.AI.Translation.Document/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Azure Cognitive Services Document Translation is a cloud service that translates
1414
Install the Azure Document Translation client library for .NET with [NuGet][nuget]:
1515

1616
```dotnetcli
17-
dotnet add package Azure.AI.Translation.Document --prerelease
17+
dotnet add package Azure.AI.Translation.Document
1818
```
1919

2020
> Note: This version of the client library defaults to the `v1.0` version of the service.
@@ -155,7 +155,7 @@ Note that documents written to a target container must have unique names. So you
155155

156156
### Long-Running Operations
157157

158-
Document Translation is implemented as a [**long-running operation**][dotnet_lro_guidelines]. Long-running operations consist of an initial request sent to the service to start an operation, followed by polling the service at intervals to determine whether the operation has completed successfully or failed.
158+
Document Translation is implemented as a [**long-running operation**][dotnet_lro]. Long-running operations consist of an initial request sent to the service to start an operation, followed by polling the service at intervals to determine whether the operation has completed successfully or failed.
159159

160160
For long running operations in the Azure SDK, the client exposes a `Start<operation-name>` method that returns a `PageableOperation<T>`. You can use the extension method `WaitForCompletionAsync()` to wait for the operation to complete and obtain its result. A sample code snippet is provided to illustrate using long-running operations [below](#start-translation-asynchronously).
161161

@@ -459,7 +459,7 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con
459459
[single_service]: https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account?tabs=singleservice%2Cwindows
460460
[azure_portal_create_DT_resource]: https://ms.portal.azure.com/#create/Microsoft.CognitiveServicesTextTranslation
461461
[cognitive_resource_cli]: https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account-cli
462-
[dotnet_lro_guidelines]: https://azure.github.io/azure-sdk/dotnet_introduction.html#dotnet-longrunning
462+
[dotnet_lro]: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/core/Azure.Core/README.md#consuming-long-running-operations-using-operationt
463463
[source_containers]: https://docs.microsoft.com/azure/cognitive-services/translator/document-translation/get-started-with-document-translation?tabs=csharp#create-your-azure-blob-storage-containers
464464
[custom_model]: https://docs.microsoft.com/azure/cognitive-services/translator/custom-translator/quickstart-build-deploy-custom-model
465465
[glossary]: https://docs.microsoft.com/azure/cognitive-services/translator/document-translation/overview#supported-glossary-formats

sdk/translation/Azure.AI.Translation.Document/src/Azure.AI.Translation.Document.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>Translator is a cloud-based machine translation service and is part of the Azure Cognitive Services family of cognitive APIs used to build intelligent apps. Translator is easy to integrate in your applications, websites, tools, and solutions. It allows you to add multi-language user experiences in 90 languages and dialects. And it can be used on any hardware platform with any operating system for text translation.</Description>
55
<AssemblyTitle>Microsoft Azure.AI.Translation.Document client library</AssemblyTitle>
6-
<Version>1.0.0-beta.7</Version>
6+
<Version>1.0.0</Version>
77
<PackageTags>Microsoft Azure Document Translation</PackageTags>
88
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
99
<IncludeOperationsSharedSource>true</IncludeOperationsSharedSource>

0 commit comments

Comments
 (0)