Skip to content

Commit 7b7764a

Browse files
committed
Release 6.0.0 (#26)
1 parent c43a49b commit 7b7764a

40 files changed

+5517
-4724
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: maxim-lobanov/setup-xcode@v1
1717
with:
18-
xcode-version: '16.0-beta'
18+
xcode-version: '16.0'
1919
- uses: actions/checkout@v4
2020
with:
2121
persist-credentials: false

.jazzy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
author: John Fairhurst
2-
title: TMLPersistentContainer 5.0.1
2+
title: TMLPersistentContainer 6.0.0
33
module_version: 5.0.0
44
author_url: https://toomanyladybirds.com/
55
module: TMLPersistentContainer

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
## Master
22

3+
##### Breaking
4+
5+
* None.
6+
7+
##### Enhancements
8+
9+
* None.
10+
11+
##### Bug Fixes
12+
13+
* None.
14+
15+
## 6.0.0
16+
317
### Breaking
418

19+
* Various interface updates for `Sendable` / Swift concurrency.
20+
* Require Swift 6.
521
* Update macOS minimum deployment level to 10.14.6.
622
[John Fairhurst](https://github.com/johnfairh)
723

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ All migrations happen as part of `NSPersistentContainer.loadPersistentStores`.
5858

5959
## Requirements
6060

61-
Swift 5 or later, Xcode 10.2 or later.
61+
Swift 6 or later, Xcode 16 or later.
6262
* See the *swift31* branch for a Swift 31 version.
6363
* See the *swift4* branch for a Swift 4 version.
6464
* See the *swift41* branch for a Swift 4.1 version.
@@ -80,7 +80,7 @@ CocoaPods:
8080

8181
Swift package manager:
8282

83-
.Package(url: "https://github.com/johnfairh/TMLPersistentContainer/", majorVersion: 5)
83+
.Package(url: "https://github.com/johnfairh/TMLPersistentContainer/", majorVersion: 6)
8484

8585
Carthage:
8686

TMLPersistentContainer.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "TMLPersistentContainer"
3-
s.version = "5.0.1"
3+
s.version = "6.0.0"
44
s.authors = { "John Fairhurst" => "johnfairh@gmail.com" }
55
s.license = { :type => "ISC", :file => "LICENSE" }
66
s.homepage = "https://github.com/johnfairh/TMLPersistentContainer"
@@ -16,10 +16,10 @@ Pod::Spec.new do |s|
1616
EDESC
1717
s.documentation_url = "https://johnfairh.github.io/TMLPersistentContainer/"
1818
s.ios.deployment_target = "12.0"
19-
s.osx.deployment_target = "10.14.6"
19+
s.osx.deployment_target = "14.0.0"
2020
s.watchos.deployment_target = "3.0"
2121
s.tvos.deployment_target = "12.0"
2222
s.source_files = "Sources/*swift"
2323
s.frameworks = "Foundation", "CoreData"
24-
s.swift_version = '5.0'
24+
s.swift_version = '6.0'
2525
end

docs/Guides.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel="stylesheet" href="css/fw2020.css">
88

99

10-
<title>Guides - TMLPersistentContainer 5.0.1</title>
10+
<title>Guides - TMLPersistentContainer 6.0.0</title>
1111

1212
</head>
1313
<body class="j2-swift " data-root-path="./" data-doc-path="guides.html" data-assets-path="">
@@ -31,7 +31,7 @@
3131

3232
<a href="index.html">
3333

34-
TMLPersistentContainer 5.0.1</a>
34+
TMLPersistentContainer 6.0.0</a>
3535
</div>
3636

3737
<span class="navbar-text j2-coverage fw-slightly-bold small d-none d-lg-inline-block me-2">(100% documented)</span>
@@ -518,7 +518,7 @@ <h6 class="j2-inline-heading">Actions</h6>
518518
<div class="col j2-footer small pt-2">
519519
<p>Distributed under the ISC license. Maintained by John Fairhurst.</p>
520520

521-
<p>Generated by <a class="link" href="https://github.com/johnfairh/Bebop" target="_blank" rel="external noopener">Bebop v1.7.1</a> using the FW2020 theme, based on technology from <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫</a>.</p>
521+
<p>Generated by <a class="link" href="https://github.com/johnfairh/Bebop" target="_blank" rel="external noopener">Bebop v1.11.0</a> using the FW2020 theme, based on technology from <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫</a>.</p>
522522

523523
</div>
524524
</footer>

0 commit comments

Comments
 (0)