Skip to content

Commit bb589c8

Browse files
committed
Changelog
1 parent 768645b commit bb589c8

3 files changed

Lines changed: 22 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
All 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)
618
Released on 2022-10-25
719

FetchRequests.podspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
Pod::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

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import PackageDescription
55
let 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(

0 commit comments

Comments
 (0)