Increment package version after release of azure-search-documents (#9908)

This commit is contained in:
Azure SDK Bot 2020-07-07 13:12:20 -07:00 коммит произвёл GitHub
Родитель b04bd77d49
Коммит 65cb85edce
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 7 добавлений и 4 удалений

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

@ -1,5 +1,8 @@
# Release History
## 11.0.1 (Unreleased)
## 11.0.0 (2020-07-06)
- Set `ConnectionString` value to `<unchanged>` in `SearchIndexerDataSourceConnection`, if the value is not set by the user.
- [Breaking] In Suggest API & Search API return values, a new property called `document` is introduced. All user-defined fields are moved inside this `document` property.

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

@ -1,6 +1,6 @@
{
"name": "@azure/search-documents",
"version": "11.0.0",
"version": "11.0.1",
"description": "Azure client library to use Cognitive Search for node.js and browser.",
"sdk-type": "client",
"main": "dist/index.js",

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

@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
export const SDK_VERSION: string = "11.0.0";
export const SDK_VERSION: string = "11.0.1";

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

@ -11,7 +11,7 @@
import * as coreHttp from "@azure/core-http";
const packageName = "@azure/search-documents";
const packageVersion = "11.0.0";
const packageVersion = "11.0.1";
export class SearchClientContext extends coreHttp.ServiceClient {
apiVersion: string;

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

@ -11,7 +11,7 @@
import * as coreHttp from "@azure/core-http";
const packageName = "@azure/search-documents";
const packageVersion = "11.0.0";
const packageVersion = "11.0.1";
export class SearchServiceClientContext extends coreHttp.ServiceClient {
apiVersion: string;