Update release notes
This commit is contained in:
parent
caa93fc529
commit
b7202e1c11
|
@ -13,6 +13,10 @@ Until 1.0, breaking changes can occur in minor versions.
|
||||||
* `StandardiCloudDocumentSync` is a new class for syncing iCloud document changes.
|
* `StandardiCloudDocumentSync` is a new class for syncing iCloud document changes.
|
||||||
* `URL+iCloud` contains iCloud-specific URLs and fallback URLs.
|
* `URL+iCloud` contains iCloud-specific URLs and fallback URLs.
|
||||||
|
|
||||||
|
### 💥 Breaking changes
|
||||||
|
|
||||||
|
* `ApiRoute` requires new post properties to be defined.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## 0.5.0
|
## 0.5.0
|
||||||
|
|
|
@ -82,6 +82,6 @@ private struct TestRoute: ApiRoute {
|
||||||
|
|
||||||
var path: String { "1/2/3" }
|
var path: String { "1/2/3" }
|
||||||
var postData: Data? { nil }
|
var postData: Data? { nil }
|
||||||
var postParams: [String : String] { ["foo&": "bar&", "baz?": "BAM?"] }
|
var postParams: [String: String] { ["foo&": "bar&", "baz?": "BAM?"] }
|
||||||
var queryParams: [String: String] { ["hello&": "world&", "anyone?": "there?"] }
|
var queryParams: [String: String] { ["hello&": "world&", "anyone?": "there?"] }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue