Skip to content
This repository has been archived by the owner on Mar 11, 2022. It is now read-only.

Commit

Permalink
Prepare for 1.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rhyshort committed Dec 7, 2016
1 parent a49cfd7 commit 2ec995f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CDTDatastore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ EOT

Pod::Spec.new do |s|
s.name = "CDTDatastore"
s.version = "1.1.1"
s.version = "1.2.0"
s.summary = "CDTDatastore is a document datastore which syncs."
s.description = <<-DESC
CDTDatastore is a JSON document datastore which speaks the
Expand Down
2 changes: 1 addition & 1 deletion CDTDatastore/Version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define CLOUDANT_SYNC_VERSION "1.1.1"
#define CLOUDANT_SYNC_VERSION "1.2.0"
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# CDTDatastore CHANGELOG

## 1.2.0 (2016-12-07)

- [NEW] Warnings are logged if attachments dictionary is not keyed by `attachment.name`.
- [NEW] Replications can now be managed from CDTDatastore object, see `CDTDatastore+Replication.h`.
- [NEW] Credentials for replications can now be provided via the username and
password parameters for `CDTPushReplication` and `CDTPullReplication` objects.
- [NEW] `CDTReplay429Interceptor` to back off and retry `429` responses while replicating.
Optionally add this interceptor to replication configurations to enable this behaviour.
- [IMPROVED] Return Conflict (409) instead of Not Found (404) when attempting to update a
deleted document.
- [IMPROVED] Removed incorrect documentation for closing of datastores.
- [IMPROVED] Updated replicator to use version 3 of the replicator protocol.
- [IMPROVED] Disk full errors are now reported with code 507 rather than 500.
- [FIXED] Issue where the index database was not closed when CDTQIndexManager was
deallocated.
- [FIXED] Dangling reference when loading saved attachments from the datastore.


## 1.1.1 (2016-06-20)
- [FIX] Fix pull replications using `_bulk_get` endpoint. This was
broken in the previous release.
Expand Down

0 comments on commit 2ec995f

Please sign in to comment.