Skip to content

Commit

Permalink
Release 10.54.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoyne committed Oct 22, 2024
1 parent 06a8f88 commit 5553cfd
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Publish release
on: workflow_dispatch
env:
XCODE_VERSION: "['15.3', '15.4', '16_beta_6', '16.1_beta']"
TEST_XCODE_VERSION: '15.4'
XCODE_VERSION: "['15.3', '15.4', '16', '16.1_beta_3']"
TEST_XCODE_VERSION: '16'
jobs:
prepare:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:
tag_exists_error: false
message: ""
publish-docs:
runs-on: macos-latest
runs-on: macos-15
name: Publish docs to S3 Bucket
needs: tag-release
env:
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Publish docs
run: bundle exec sh -x build.sh publish-docs ${{ github.sha }}
create-release:
runs-on: macos-latest
runs-on: macos-15
name: Create github release
needs: [tag-release, prepare]
env:
Expand All @@ -62,7 +62,7 @@ jobs:
- name: Create Github release
run: bundle exec ./build.sh publish-github ${{ github.sha }}
publish-cocoapods:
runs-on: macos-latest
runs-on: macos-15
name: Publish Cocoapods specs
needs: [tag-release, prepare]
env:
Expand All @@ -75,7 +75,7 @@ jobs:
- name: Publish
run: bundle exec ./build.sh publish-cocoapods v${{ needs.prepare.outputs.VERSION }}
update-checker:
runs-on: macos-latest
runs-on: macos-15
name: Update to latest version update checker file
needs: tag-release
env:
Expand All @@ -89,7 +89,7 @@ jobs:
- run: brew install s3cmd
- run: bundle exec ./build.sh publish-update-checker
test-installation:
runs-on: macos-14
runs-on: macos-15
name: Run installation test for ${{ matrix.platform }}, ${{ matrix.installation }} and ${{ matrix.linkage }}
needs: [create-release, prepare, publish-cocoapods]
strategy:
Expand Down Expand Up @@ -133,10 +133,10 @@ jobs:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ env.TEST_XCODE_VERSION }}
- name: Set REALM_TEST_RELEASE
run: echo "REALM_TEST_RELEASE=${{ needs.prepare.outputs.VERSION }}" >> $GITHUB_ENV
- name: Run installation test
uses: nick-fields/retry@v3
env:
REALM_TEST_RELEASE: ${{ needs.prepare.outputs.VERSION }}
with:
command: |
cd examples/installation
Expand All @@ -146,7 +146,7 @@ jobs:
retry_wait_seconds: 60
retry_on: error
post-slack-release:
runs-on: macos-latest
runs-on: macos-15
name: Publish to release Slack channel
needs: [create-release, prepare, publish-cocoapods, update-checker, publish-docs]
env:
Expand All @@ -166,7 +166,7 @@ jobs:
webhook-url: ${{ env.WEBHOOK_URL }}
version: ${{ needs.prepare.outputs.VERSION }}
add-empty-changelog:
runs-on: macos-latest
runs-on: macos-15
permissions:
contents: write
name: Add empty changelog and commits/push it
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
x.y.z Release notes (yyyy-MM-dd)
10.54.1 Release notes (2024-10-22)
=============================================================
### Enhancements
* None.
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PackageDescription
import Foundation

let coreVersion = Version("14.13.1")
let cocoaVersion = Version("10.54.0")
let cocoaVersion = Version("10.54.1")

#if compiler(>=6)
let swiftVersion = [SwiftVersion.version("6")]
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>10.54.0</string>
<string>10.54.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>10.54.0</string>
<string>10.54.1</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
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION=10.54.0
VERSION=10.54.1
REALM_CORE_VERSION=v14.13.1
STITCH_VERSION=c794ec6e2b751ef0cb5ab35256b07f5fa0c74c3a

0 comments on commit 5553cfd

Please sign in to comment.