Skip to content

Commit f0c5f84

Browse files
authored
Merge pull request #33 from roanutil/bugfix/unable-to-build-v2-with-swift-6
Bugfix/unable to build v2 with swift 6
2 parents d4dc88e + a022c86 commit f0c5f84

26 files changed

Lines changed: 32 additions & 31 deletions

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
run: swift test --enable-code-coverage
4242
- name: Swift Coverage Report
4343
run: xcrun llvm-cov export -format="lcov" .build/debug/CoreDataRepositoryPackageTests.xctest/Contents/MacOS/CoreDataRepositoryPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov
44-
- uses: codecov/codecov-action@v3
44+
- uses: codecov/codecov-action@v4
4545
with:
46+
token: ${{ secrets.CODECOV_TOKEN }}
4647
fail_ci_if_error: true # optional (default = false)

Package.resolved

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

Sources/CoreDataRepository/CoreDataRepository+Aggregate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// MIT License
66
//
7-
// Copyright © 2023 Andrew Roan
7+
// Copyright © 2024 Andrew Roan
88

99
import Combine
1010
import CoreData

Sources/CoreDataRepository/CoreDataRepository+Batch.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// MIT License
66
//
7-
// Copyright © 2023 Andrew Roan
7+
// Copyright © 2024 Andrew Roan
88

99
import Combine
1010
import CoreData

Sources/CoreDataRepository/CoreDataRepository+CRUD.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// MIT License
66
//
7-
// Copyright © 2023 Andrew Roan
7+
// Copyright © 2024 Andrew Roan
88

99
import Combine
1010
import CoreData

Sources/CoreDataRepository/CoreDataRepository+Fetch.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// MIT License
66
//
7-
// Copyright © 2023 Andrew Roan
7+
// Copyright © 2024 Andrew Roan
88

99
import Combine
1010
import CombineExt

Sources/CoreDataRepository/CoreDataRepository.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// MIT License
66
//
7-
// Copyright © 2023 Andrew Roan
7+
// Copyright © 2024 Andrew Roan
88

99
import Combine
1010
import CoreData

Sources/CoreDataRepository/CoreDataRepositoryError.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// MIT License
66
//
7-
// Copyright © 2023 Andrew Roan
7+
// Copyright © 2024 Andrew Roan
88

99
import Foundation
1010

Sources/CoreDataRepository/FetchSubscription.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// MIT License
66
//
7-
// Copyright © 2023 Andrew Roan
7+
// Copyright © 2024 Andrew Roan
88

99
import Combine
1010
import CoreData

Sources/CoreDataRepository/NSManagedObject+CRUDHelpers.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// MIT License
66
//
7-
// Copyright © 2023 Andrew Roan
7+
// Copyright © 2024 Andrew Roan
88

99
import CoreData
1010
import Foundation

0 commit comments

Comments
 (0)