Skip to content

Commit

Permalink
Release 3.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoyne committed Sep 27, 2019
1 parent d2cd0aa commit 69a4f4c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
x.y.z Release notes (yyyy-MM-dd)
3.19.0 Release notes (2019-09-27)
=============================================================

### Enhancements
* None.

* Expose ObjectSchema.objectClass in Swift as looking up the class via
NSClassFromString() can be complicated for Swift types.
([PR #6244](https://github.com/realm/realm-cocoa/pull/6244)).
* Add support for suppressing notifications using closure-based write/transaction methods.
([PR #6252](https://github.com/realm/realm-cocoa/pull/6252)).

### Fixed

* IN or chained OR equals queries on an unindexed string column would fail to
match some results if any of the strings were 64 bytes or longer.
([Core #3386](https://github.com/realm/realm-core/pull/3386), since 3.14.2).
Expand All @@ -12,12 +19,13 @@ x.y.z Release notes (yyyy-MM-dd)
([Core #3389](https://github.com/realm/realm-core/pull/3388), since 3.17.3).

### Compatibility

* File format: Generates Realms with format v9 (Reads and upgrades all previous formats)
* Realm Object Server: 3.21.0 or later.
* APIs are backwards compatible with all previous releases in the 3.x.y series.
* Carthage release for Swift is built with Xcode 11.0.

### Internal

* Upgrade to REALM_CORE_VERSION=5.23.5
* Upgrade to REALM_SYNC_VERSION=4.7.8

Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import PackageDescription
import Foundation

let coreVersionStr = "5.23.3"
let cocoaVersionStr = "3.18.0"
let coreVersionStr = "5.23.5"
let cocoaVersionStr = "3.19.0"

let coreVersionPieces = coreVersionStr.split(separator: ".")
let cxxSettings: [CXXSetting] = [
Expand Down
4 changes: 2 additions & 2 deletions Realm/Realm-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.18.0</string>
<string>3.19.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>3.18.0</string>
<string>3.19.0</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2014 Realm. All rights reserved.</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion dependencies.list
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=3.18.0
VERSION=3.19.0
REALM_CORE_VERSION=5.23.5
REALM_SYNC_VERSION=4.7.8
REALM_OBJECT_SERVER_VERSION=3.21.1

0 comments on commit 69a4f4c

Please sign in to comment.