Skip to content

Commit 7a2f7d4

Browse files
committed
Release 10.48.0
1 parent cc6a5bc commit 7a2f7d4

File tree

6 files changed

+19
-17
lines changed

6 files changed

+19
-17
lines changed

.github/workflows/publish-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Publish release
22
on: workflow_dispatch
33
env:
4-
XCODE_VERSION: "['14.2', '14.3.1', '15.1', '15.2']"
5-
TEST_XCODE_VERSION: '15.1'
4+
XCODE_VERSION: "['14.2', '14.3.1', '15.1', '15.2', '15.3']"
5+
TEST_XCODE_VERSION: '15.2'
66
jobs:
77
prepare:
88
runs-on: ubuntu-latest
@@ -89,7 +89,7 @@ jobs:
8989
- run: brew install s3cmd
9090
- run: bundle exec ./build.sh publish-update-checker
9191
test-installation:
92-
runs-on: macos-13
92+
runs-on: macos-14
9393
name: Run installation test for ${{ matrix.platform }}, ${{ matrix.installation }} and ${{ matrix.linkage }}
9494
needs: [create-release, prepare, publish-cocoapods]
9595
strategy:

CHANGELOG.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,28 @@
1-
x.y.z Release notes (yyyy-MM-dd)
1+
10.48.0 Release notes (2024-03-07)
22
=============================================================
3+
34
### Enhancements
4-
* Lifted a limitation that would prevent declaring a model with only computed properties. ([#8414](https://github.com/realm/realm-swift/issues/8414))
5+
6+
* Lifted a limitation that would prevent declaring a model with only computed
7+
properties. ([#8414](https://github.com/realm/realm-swift/issues/8414))
58
* Add Xcode 15.3 to the release package ([PR #8502](https://github.com/realm/realm-swift/pull/8502)).
69

710
### Fixed
8-
* <How to hit and notice issue? what was the impact?> ([#????](https://github.com/realm/realm-swift/issues/????), since v?.?.?)
9-
* Fix multiple arguments support via the `REALM_EXTRA_BUILD_ARGUMENTS` environment variable in `build.sh`. ([PR #8413](https://github.com/realm/realm-swift/pulls/8413)). Thanks, [@hisaac](https://github.com/hisaac)!
10-
* Fix some of the new sendability warnings introduced in Xcode 15.3 ([PR #8502](https://github.com/realm/realm-swift/pull/8502)).
1111

12-
<!-- ### Breaking Changes - ONLY INCLUDE FOR NEW MAJOR version -->
12+
* Fix multiple arguments support via the `REALM_EXTRA_BUILD_ARGUMENTS`
13+
environment variable in `build.sh`. ([PR #8413](https://github.com/realm/realm-swift/pulls/8413)).
14+
Thanks, [@hisaac](https://github.com/hisaac)!
15+
* Fix some of the new sendability warnings introduced in Xcode 15.3
16+
([PR #8502](https://github.com/realm/realm-swift/pull/8502)).
1317

1418
### Compatibility
19+
1520
* Realm Studio: 14.0.1 or later.
1621
* APIs are backwards compatible with all previous releases in the 10.x.y series.
1722
* Carthage release for Swift is built with Xcode 15.3.0.
1823
* CocoaPods: 1.10 or later.
1924
* Xcode: 14.2-15.3.0.
2025

21-
### Internal
22-
* Upgraded realm-core from ? to ?
23-
2426
10.47.0 Release notes (2024-02-12)
2527
=============================================================
2628

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import PackageDescription
44
import Foundation
55

66
let coreVersion = Version("13.26.0")
7-
let cocoaVersion = Version("10.47.0")
7+
let cocoaVersion = Version("10.48.0")
88

99
let cxxSettings: [CXXSetting] = [
1010
.headerSearchPath("."),

Realm/Realm-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>10.47.0</string>
20+
<string>10.48.0</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>10.47.0</string>
24+
<string>10.48.0</string>
2525
<key>NSHumanReadableCopyright</key>
2626
<string>Copyright © 2014-2021 Realm. All rights reserved.</string>
2727
<key>NSPrincipalClass</key>

contrib/UpgradingXcode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Check https://developer.apple.com/documentation/xcode-release-notes to see new X
1212
3. Enable manually the new created workflows.
1313
4. If needed, add environment values to the newly created workflows.
1414
5. Update version(s) from xcode_versions in `scripts/package-examples.rb`.
15-
6. Update XCODE_VERSION in `.github/workflows/master-push.yml` and check if DOC_VERSION, RELEASE_VERSION and TEST_VERSION needs to be updated.
15+
6. Update XCODE_VERSION in `.github/workflows/master-push.yml` and `.github/workflows/publish-release.yml` and check if DOC_VERSION, RELEASE_VERSION and TEST_VERSION needs to be updated.
1616
7. Search for `#if swift` and see if there's any we can remove.
1717
8. Update the Carthage version in CHANGELOG.md (and add a changelog entry).
1818
9. If there's new project settings migrations, open each of the Xcode projects and apply/skip them as applicable. Note that we generally do *not* want to use the Swift version migrations as we support multiple Swift versions at once.

dependencies.list

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION=10.47.0
1+
VERSION=10.48.0
22
REALM_CORE_VERSION=13.26.0
33
STITCH_VERSION=8bf8ebcff6e804586c30a6ccbadb060753071a42

0 commit comments

Comments
 (0)