Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ name: Swift

jobs:
build:
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- name: xcode-select
run: sudo xcode-select -s /Applications/Xcode_15.0.app
run: sudo xcode-select -s /Applications/Xcode_16.2.app
- name: Build
run: swift build -Xswiftc -warnings-as-errors
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion Sources/RemindersLibrary/EKReminder+Encodable.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import EventKit

extension EKReminder: Encodable {
extension EKReminder: @retroactive Encodable {
private enum EncodingKeys: String, CodingKey {
case externalId
case lastModified
Expand Down
2 changes: 1 addition & 1 deletion Sources/RemindersLibrary/NaturalLanguage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ private func components(from string: String) -> DateComponents? {
}
}

extension DateComponents: ExpressibleByArgument {
extension DateComponents: @retroactive ExpressibleByArgument {
public init?(argument: String) {
if let components = components(from: argument) {
self = components
Expand Down