Skip to content

Commit a17c258

Browse files
Updates documentation for PR43.
1 parent c49934c commit a17c258

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
# 1.1.1 (2019-06-02)
1+
# 1.1.2 (2019-06-08)
2+
3+
## Bug Fixes
4+
* **Client:** Prevent deadlocks when run against .NET Framework. ([#PR43](https://github.com/matteobortolazzo/couchdb-net/pull/43))
5+
6+
# 1.1.1 (2019-06-02)
27

38
## Features
49
* **Single/SingleOrDefault:** Methods implementated as composite supported methods (Where and Take(2)).

LATEST_CHANGE.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
1-
## Features
2-
* **Single/SingleOrDefault:** Methods implementated as composite supported methods (Where and Take(2)).
3-
4-
## Bug Fixes
5-
* **Queries:** Implicit bools in nested methods. ([#PR41](https://github.com/matteobortolazzo/couchdb-net/pull/41))
6-
* **FxCopAnalyzers:** Removed from NuGet dependencies.
1+
## Bug Fixes
2+
* **Client:** Prevent deadlocks when run against .NET Framework. ([#PR43](https://github.com/matteobortolazzo/couchdb-net/pull/43))

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@ var client = new CouchClient("http://localhost", s => s
297297
| SetDocumentCase | Sets the format case for documents. |
298298
| SetPropertyCase | Sets the format case for properties. |
299299
| EnsureDatabaseExists | If a database doesn't exists, it creates it. |
300+
| DisableLogOutOnDispose | Disables log out on client dispose. |
300301

301302
- **DocumentCaseTypes**: None, UnderscoreCase *(default)*, DashCase, KebabCase.
302303
- **PropertyCaseTypes**: None, CamelCase *(default)*, PascalCase, UnderscoreCase, DashCase, KebabCase.

src/CouchDB.Driver/Settings/CouchSettings.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,10 @@ public CouchSettings EnsureDatabaseExists()
146146
CheckDatabaseExists = true;
147147
return this;
148148
}
149-
149+
/// <summary>
150+
/// Disables log out on client dispose.
151+
/// </summary>
152+
/// <returns>The current settings</returns>
150153
public CouchSettings DisableLogOutOnDispose()
151154
{
152155
LogOutOnDispose = false;

0 commit comments

Comments
 (0)