8.1.0
This minor release adds a possibility to update multiple fields of the record using partiaUpdate method with new dictionary syntax:
index.partialUpdateObject(withID: "userAccountID", with: [
"name": "John Doe",
"postsCount": 2000,
"followers": .add(value: "nightStranger51", unique: false),
"followersCount": .increment(value: 20),
"likes": .incrementSet(value: 15)
])