Update release notes

This commit is contained in:
Daniel Saidi 2021-05-01 23:10:49 +02:00
parent caa93fc529
commit b7202e1c11
2 changed files with 5 additions and 1 deletions

View File

@ -13,6 +13,10 @@ Until 1.0, breaking changes can occur in minor versions.
* `StandardiCloudDocumentSync` is a new class for syncing iCloud document changes.
* `URL+iCloud` contains iCloud-specific URLs and fallback URLs.
### 💥 Breaking changes
* `ApiRoute` requires new post properties to be defined.
## 0.5.0

View File

@ -82,6 +82,6 @@ private struct TestRoute: ApiRoute {
var path: String { "1/2/3" }
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?"] }
}