Skip to content

Commit 5ee3289

Browse files
committed
Minimum OS versions
1 parent e056f9e commit 5ee3289

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55

66
let package = Package(
77
name: "CoreDataQueryInterface",
8-
platforms: [.macOS(.v12)],
8+
platforms: [.macOS(.v12), .iOS(.v15), .tvOS(.v15), .watchOS(.v8)],
99
products: [
1010
.library(
1111
name: "CoreDataQueryInterface",
@@ -30,5 +30,6 @@ let package = Package(
3030
dependencies: ["CoreDataQueryInterface"],
3131
resources: [.copy("Developers.xcdatamodeld")]
3232
),
33-
]
33+
],
34+
swiftLanguageVersions: [.v5]
3435
)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ CDQI uses the [PredicateQI](https://github.com/prosumma/PredicateQI) (PQI) packa
1414
- [x] Filtering, sorting, grouping, aggregate expressions, limits, etc.
1515
- [x] Optionally eliminates the use of magic strings so common in Core Data
1616
- [x] Query reuse, i.e., no side-effects from chaining
17-
- [x] TODO: minimum OS support
17+
- [x] macOS 12+, iOS 15+, tvOS 15+, watchOS 8+
1818
- [x] Swift 5.7
1919

2020
## Overview

Sources/CoreDataQueryInterface/QueryBuilder+Group.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
// Created by Gregory Higley on 2022-10-24.
66
//
77

8+
import CoreData
89
import PredicateQI
910
import XCTest
1011

Tests/CoreDataQueryInterfaceTests/QueryBuilderSelectTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
// Created by Greg Higley on 2022-10-22.
66
//
77

8+
import CoreData
89
import CoreDataQueryInterface
910
import PredicateQI
1011
import XCTest

0 commit comments

Comments
 (0)