Skip to content

Commit 7e99bfd

Browse files
Merge pull request #84 from matteobortolazzo/fix-purge-seq
#83: Fixes purge seq type.
2 parents ec71f15 + 873ca2b commit 7e99bfd

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 1.2.2 (2020-07-02)
2+
3+
## Bug Fix
4+
* **JSON content:** Fix issue with *purge_seq* from into to string.
5+
16
# 1.2.1 (2020-02-25)
27

38
## Bug Fix

LATEST_CHANGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
## Bug Fix
2-
* **JSON content:** Fix issue with JSON content as a value. ([#PR59](https://github.com/matteobortolazzo/couchdb-net/pull/59))
2+
* **JSON content:** Fix issue with *purge_seq* from into to string.

src/CouchDB.Driver/Types/CouchDatabaseInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public class CouchDatabaseInfo
101101
/// An opaque string that describes the purge state of the database. Do not rely on this string for counting the number of purge operations.
102102
/// </summary>
103103
[JsonProperty("purge_seq")]
104-
public int PurgeSeq { get; internal set; }
104+
public string PurgeSeq { get; internal set; }
105105

106106
/// <summary>
107107
/// Size information

0 commit comments

Comments
 (0)