Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions sdk/translation/ai-translation-text-rest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 2.0.0-beta.2 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 2.0.0-beta.1 (2026-01-08)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/translation/ai-translation-text-rest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@azure-rest/ai-translation-text",
"sdk-type": "client",
"author": "Microsoft Corporation",
"version": "2.0.0-beta.1",
"version": "2.0.0-beta.2",
"description": "An isomorphic client library for the Azure Cognitive Translator Service",
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/translation/ai-translation-text-rest/README.md",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ npm install
node getLanguages.js
```

Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform):
Alternatively, run a single sample with the required environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform):

```bash
cross-env TEXT_TRANSLATION_ENDPOINT="<text translation endpoint>" node getLanguages.js
npx cross-env TEXT_TRANSLATION_ENDPOINT="<text translation endpoint>" node getLanguages.js
```

## Next Steps
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ npm run build
node dist/getLanguages.js
```

Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform):
Alternatively, run a single sample with the required environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform):

```bash
cross-env TEXT_TRANSLATION_ENDPOINT="<text translation endpoint>" node dist/getLanguages.js
npx cross-env TEXT_TRANSLATION_ENDPOINT="<text translation endpoint>" node dist/getLanguages.js
```

## Next Steps
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export default function createClient(

const baseUrl = options.baseUrl ?? `${serviceEndpoint}`;

const userAgentInfo = `azsdk-js-ai-translation-text-rest/2.0.0-beta.1`;
const userAgentInfo = `azsdk-js-ai-translation-text-rest/2.0.0-beta.2`;
const userAgentPrefix =
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
? `${options.userAgentOptions.userAgentPrefix} ${userAgentInfo}`
Expand Down
Loading