Skip to content
Merged
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
2 changes: 1 addition & 1 deletion sdk/search/Azure.Search.Documents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 11.2.0-preview.1 (Unreleased)
## 11.2.0-beta.1 (2020-10-06)

### Fixed

Expand Down
7 changes: 3 additions & 4 deletions sdk/search/Azure.Search.Documents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Use the Azure.Search.Documents client library to:
Install the Azure Cognitive Search client library for .NET with [NuGet][nuget]:

```Powershell
dotnet add package Azure.Search.Documents
dotnet add package Azure.Search.Documents --version 11.2.0-beta.1
```

### Prerequisites
Expand Down Expand Up @@ -128,9 +128,8 @@ foreach (SearchResult<SearchDocument> result in response.GetResults())
}
```

You can paste that into a new console app,
[install the Azure.Search.Documents package](#install-the-package), add a
`using Azure.Search.Documents;` statement, and then hit F5 to run.
You can paste that into a new console app, install the Azure.Search.Documents
package, add a `using Azure.Search.Documents;` statement, and then hit F5 to run.

## Key concepts

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyTitle>Microsoft Azure.Search.Documents client library</AssemblyTitle>
<Version>11.2.0-preview.1</Version>
<Version>11.2.0-beta.1</Version>
<ApiCompatVersion>11.1.1</ApiCompatVersion>
<Description>
This is the Azure Cognitive Search client library for developing .NET
Expand Down