Increment package version after release of azure-search-documents (#9908)
This commit is contained in:
Родитель
b04bd77d49
Коммит
65cb85edce
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче