Skip to content

Commit

Permalink
Release v10.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoyne committed Jul 7, 2021
1 parent a095cfb commit 7765851
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
11 changes: 5 additions & 6 deletions CHANGELOG.md
@@ -1,6 +1,8 @@
x.y.z Release notes (yyyy-MM-dd)
10.10.0 Release notes (2021-07-07)
=============================================================

### Enhancements

* Add a new property wrapper-based declaration syntax for properties on Realm
Swift object classes. Rather than using `@objc dynamic` or the
`RealmProperty` wrapper type, properties can now be declared with `@Persisted
Expand Down Expand Up @@ -53,6 +55,7 @@ x.y.z Release notes (yyyy-MM-dd)
generic functions that operate on Dictionary-styled sequences.

### Fixed

* AnyRealmValue enum values are now supported in more places when creating
objects.
* Declaring a property as `RealmProperty<AnyRealmValue?>` will now report an
Expand All @@ -61,18 +64,14 @@ x.y.z Release notes (yyyy-MM-dd)
* Observing the `invalidated` property of `RLMDictionary`/`Map` via KVO did not
set old/new values correctly in the notification (since 10.8.0).

<!-- ### Breaking Changes - ONLY INCLUDE FOR NEW MAJOR version -->

### Compatibility

* Realm Studio: 11.0.0 or later.
* APIs are backwards compatible with all previous releases in the 10.x.y series.
* Carthage release for Swift is built with Xcode 12.5.1.
* CocoaPods: 1.10 or later.
* Xcode: 12.2-13.0 beta 2.

### Internal
* Upgraded realm-core from ? to ?

10.9.0 Release notes (2021-07-01)
=============================================================

Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Expand Up @@ -4,7 +4,7 @@ import PackageDescription
import Foundation

let coreVersionStr = "11.0.4"
let cocoaVersionStr = "10.9.0"
let cocoaVersionStr = "10.10.0"

let coreVersionPieces = coreVersionStr.split(separator: ".")
let coreVersionExtra = coreVersionPieces[2].split(separator: "-")
Expand Down
4 changes: 2 additions & 2 deletions Realm/Realm-Info.plist
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>10.9.0</string>
<string>10.10.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>10.9.0</string>
<string>10.10.0</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2014-2021 Realm. All rights reserved.</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion dependencies.list
@@ -1,3 +1,3 @@
VERSION=10.9.0
VERSION=10.10.0
REALM_CORE_VERSION=11.0.4
STITCH_VERSION=45504b796f90c58ab56a3d4c34f1031f23d7e199

0 comments on commit 7765851

Please sign in to comment.