File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22All notable changes to this project will be documented in this file.
33` FetchRequests ` adheres to [ Semantic Versioning] ( https://semver.org/ ) .
44
5+ ## [ 6.0] ( https://github.com/square/FetchRequests/releases/tag/5.0.0 )
6+ Released on 2023-04-05
7+
8+ * Requires Swift 5.8
9+ * FetchableEntityID's async methods are now marked as @MainActor
10+ * Association Request completion handlers are now marked as @MainActor
11+ * Previously the handler would immediately bounce to the main thread if needed
12+ * Bump deployment targets:
13+ * iOS, tvOS, Catalyst: v14
14+ * watchOS v7
15+ * macOS v11
16+
517## [ 5.0] ( https://github.com/square/FetchRequests/releases/tag/5.0.0 )
618Released on 2022-10-25
719
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = 'FetchRequests'
3- s . version = '5 .0.0'
3+ s . version = '6 .0.0'
44 s . license = 'MIT'
55 s . summary = 'NSFetchedResultsController inspired eventing'
66 s . homepage = 'https://github.com/square/FetchRequests'
77 s . authors = 'Square'
88 s . source = { :git => 'https://github.com/square/FetchRequests.git' , :tag => s . version }
99
10- ios_deployment_target = '13 .0'
11- tvos_deployment_target = '13 .0'
12- watchos_deployment_target = '6 .0'
13- macos_deployment_target = '10.15 '
10+ ios_deployment_target = '14 .0'
11+ tvos_deployment_target = '14 .0'
12+ watchos_deployment_target = '7 .0'
13+ macos_deployment_target = '11 '
1414
1515 s . ios . deployment_target = ios_deployment_target
1616 s . tvos . deployment_target = tvos_deployment_target
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ import PackageDescription
55let package = Package (
66 name: " FetchRequests " ,
77 platforms: [
8- . macCatalyst( . v13 ) ,
9- . iOS( . v13 ) ,
10- . tvOS( . v13 ) ,
11- . watchOS( . v6 ) ,
12- . macOS( . v10_15 ) ,
8+ . macCatalyst( . v14 ) ,
9+ . iOS( . v14 ) ,
10+ . tvOS( . v14 ) ,
11+ . watchOS( . v7 ) ,
12+ . macOS( . v11 ) ,
1313 ] ,
1414 products: [
1515 . library(
You can’t perform that action at this time.
0 commit comments