Post release automated changes for face releases (#31593)

Post release automated changes for azure-rest-ai-vision-face
This commit is contained in:
Azure SDK Bot 2024-11-06 08:54:21 -08:00 коммит произвёл GitHub
Родитель d97e9423d4
Коммит 2ad230ff1a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
3 изменённых файлов: 12 добавлений и 2 удалений

Просмотреть файл

@ -1,5 +1,15 @@
# Release History
## 1.0.0-beta.3 (Unreleased)
### Features Added
### Breaking Changes
### Bugs Fixed
### Other Changes
## 1.0.0-beta.2 (2024-10-14)
This library now supports the Azure AI Face v1.2-preview.1 API.

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@azure-rest/ai-vision-face",
"version": "1.0.0-beta.2",
"version": "1.0.0-beta.3",
"description": "Face API REST Client",
"engines": {
"node": ">=18.0.0"

Просмотреть файл

@ -27,7 +27,7 @@ export default function createClient(
{ apiVersion = "v1.2-preview.1", ...options }: FaceClientOptions = {},
): FaceClient {
const endpointUrl = options.endpoint ?? options.baseUrl ?? `${endpointParam}/face/${apiVersion}`;
const userAgentInfo = `azsdk-js-ai-vision-face-rest/1.0.0-beta.1`;
const userAgentInfo = `azsdk-js-ai-vision-face-rest/1.0.0-beta.3`;
const userAgentPrefix =
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
? `${options.userAgentOptions.userAgentPrefix} ${userAgentInfo}`