Skip to content

Commit a967c23

Browse files
committed
Release 10.54.1
1 parent 06a8f88 commit a967c23

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/publish-release.yml

+11-11
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: "['15.3', '15.4', '16_beta_6', '16.1_beta']"
5-
TEST_XCODE_VERSION: '15.4'
4+
XCODE_VERSION: "['15.3', '15.4', '16', '16.1_beta_3']"
5+
TEST_XCODE_VERSION: '16'
66
jobs:
77
prepare:
88
runs-on: ubuntu-latest
@@ -33,7 +33,7 @@ jobs:
3333
tag_exists_error: false
3434
message: ""
3535
publish-docs:
36-
runs-on: macos-latest
36+
runs-on: macos-15
3737
name: Publish docs to S3 Bucket
3838
needs: tag-release
3939
env:
@@ -49,7 +49,7 @@ jobs:
4949
- name: Publish docs
5050
run: bundle exec sh -x build.sh publish-docs ${{ github.sha }}
5151
create-release:
52-
runs-on: macos-latest
52+
runs-on: macos-15
5353
name: Create github release
5454
needs: [tag-release, prepare]
5555
env:
@@ -62,7 +62,7 @@ jobs:
6262
- name: Create Github release
6363
run: bundle exec ./build.sh publish-github ${{ github.sha }}
6464
publish-cocoapods:
65-
runs-on: macos-latest
65+
runs-on: macos-15
6666
name: Publish Cocoapods specs
6767
needs: [tag-release, prepare]
6868
env:
@@ -75,7 +75,7 @@ jobs:
7575
- name: Publish
7676
run: bundle exec ./build.sh publish-cocoapods v${{ needs.prepare.outputs.VERSION }}
7777
update-checker:
78-
runs-on: macos-latest
78+
runs-on: macos-15
7979
name: Update to latest version update checker file
8080
needs: tag-release
8181
env:
@@ -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-14
92+
runs-on: macos-15
9393
name: Run installation test for ${{ matrix.platform }}, ${{ matrix.installation }} and ${{ matrix.linkage }}
9494
needs: [create-release, prepare, publish-cocoapods]
9595
strategy:
@@ -133,10 +133,10 @@ jobs:
133133
- uses: maxim-lobanov/setup-xcode@v1
134134
with:
135135
xcode-version: ${{ env.TEST_XCODE_VERSION }}
136-
- name: Set REALM_TEST_RELEASE
137-
run: echo "REALM_TEST_RELEASE=${{ needs.prepare.outputs.VERSION }}" >> $GITHUB_ENV
138136
- name: Run installation test
139137
uses: nick-fields/retry@v3
138+
env:
139+
- REALM_TEST_RELEASE: ${{ needs.prepare.outputs.VERSION }}
140140
with:
141141
command: |
142142
cd examples/installation
@@ -146,7 +146,7 @@ jobs:
146146
retry_wait_seconds: 60
147147
retry_on: error
148148
post-slack-release:
149-
runs-on: macos-latest
149+
runs-on: macos-15
150150
name: Publish to release Slack channel
151151
needs: [create-release, prepare, publish-cocoapods, update-checker, publish-docs]
152152
env:
@@ -166,7 +166,7 @@ jobs:
166166
webhook-url: ${{ env.WEBHOOK_URL }}
167167
version: ${{ needs.prepare.outputs.VERSION }}
168168
add-empty-changelog:
169-
runs-on: macos-latest
169+
runs-on: macos-15
170170
permissions:
171171
contents: write
172172
name: Add empty changelog and commits/push it

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
x.y.z Release notes (yyyy-MM-dd)
1+
10.54.1 Release notes (2024-10-22)
22
=============================================================
33
### Enhancements
44
* None.

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import PackageDescription
44
import Foundation
55

66
let coreVersion = Version("14.13.1")
7-
let cocoaVersion = Version("10.54.0")
7+
let cocoaVersion = Version("10.54.1")
88

99
#if compiler(>=6)
1010
let swiftVersion = [SwiftVersion.version("6")]

Realm/Realm-Info.plist

+2-2
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.54.0</string>
20+
<string>10.54.1</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>10.54.0</string>
24+
<string>10.54.1</string>
2525
<key>NSHumanReadableCopyright</key>
2626
<string>Copyright © 2014-2021 Realm. All rights reserved.</string>
2727
<key>NSPrincipalClass</key>

dependencies.list

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION=10.54.0
1+
VERSION=10.54.1
22
REALM_CORE_VERSION=v14.13.1
33
STITCH_VERSION=c794ec6e2b751ef0cb5ab35256b07f5fa0c74c3a

0 commit comments

Comments
 (0)