diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 174702b..94caf4c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,26 +11,25 @@ on: jobs: lint: - runs-on: macos-13 + runs-on: macos-latest environment: default steps: - uses: actions/checkout@v4 + - name: SwiftFormat version + run: swiftformat --version - name: Format lint run: swiftformat --lint . + - name: Install SwiftLint + run: brew install swiftlint + - name: SwiftLint version + run: swiftlint --version - name: Lint - run: swiftlint . + run: swiftlint lint --quiet test: + runs-on: macos-latest environment: default - strategy: - matrix: - include: - - os: macos-14 - xcode: "15.3" # Swift 5.10 - runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - - name: Select Xcode ${{ matrix.xcode }} - run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app - name: Run Tests run: swift test --enable-code-coverage - name: Swift Coverage Report diff --git a/.swiftformat b/.swiftformat index 64eb538..ac9e597 100644 --- a/.swiftformat +++ b/.swiftformat @@ -2,7 +2,7 @@ --redundanttype explicit --swiftversion 5.8 --maxwidth 120 ---header "{file}\nCoreDataRepository\n\n\nMIT License\n\nCopyright © {year} Andrew Roan" +--header "{file}\nCoreDataRepository\n\nThis source code is licensed under the MIT License (MIT) found in the\nLICENSE file in the root directory of this source tree." --allman false --wraparguments before-first ---wrapcollections before-first \ No newline at end of file +--wrapcollections before-first diff --git a/Benchmarks/coredata-repository-benchmarks/coredata-repository-benchmarks.swift b/Benchmarks/coredata-repository-benchmarks/coredata-repository-benchmarks.swift index 4a36992..692d617 100644 --- a/Benchmarks/coredata-repository-benchmarks/coredata-repository-benchmarks.swift +++ b/Benchmarks/coredata-repository-benchmarks/coredata-repository-benchmarks.swift @@ -1,10 +1,8 @@ // coredata-repository-benchmarks.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. // swiftlint:disable file_length diff --git a/Examples/Relationships/RelationshipsExample/RelationshipsExample/CoreDataStack.swift b/Examples/Relationships/RelationshipsExample/RelationshipsExample/CoreDataStack.swift index d63e6e3..f905089 100644 --- a/Examples/Relationships/RelationshipsExample/RelationshipsExample/CoreDataStack.swift +++ b/Examples/Relationships/RelationshipsExample/RelationshipsExample/CoreDataStack.swift @@ -1,10 +1,8 @@ // CoreDataStack.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Examples/Relationships/RelationshipsExample/RelationshipsExample/Document.swift b/Examples/Relationships/RelationshipsExample/RelationshipsExample/Document.swift index f8b6913..86c16ee 100644 --- a/Examples/Relationships/RelationshipsExample/RelationshipsExample/Document.swift +++ b/Examples/Relationships/RelationshipsExample/RelationshipsExample/Document.swift @@ -1,10 +1,8 @@ // Document.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinet+Drawer.swift b/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinet+Drawer.swift index afaeacd..ec45bd7 100644 --- a/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinet+Drawer.swift +++ b/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinet+Drawer.swift @@ -1,10 +1,8 @@ // FileCabinet+Drawer.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinet.swift b/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinet.swift index 0df8b14..93f93db 100644 --- a/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinet.swift +++ b/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinet.swift @@ -1,10 +1,8 @@ // FileCabinet.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinetDetailView.swift b/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinetDetailView.swift index b5d1eb3..95e826f 100644 --- a/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinetDetailView.swift +++ b/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinetDetailView.swift @@ -1,10 +1,8 @@ // FileCabinetDetailView.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinetsView.swift b/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinetsView.swift index ffbe68c..80f018f 100644 --- a/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinetsView.swift +++ b/Examples/Relationships/RelationshipsExample/RelationshipsExample/FileCabinetsView.swift @@ -1,10 +1,8 @@ // FileCabinetsView.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Examples/Relationships/RelationshipsExample/RelationshipsExample/RelationshipsExampleApp.swift b/Examples/Relationships/RelationshipsExample/RelationshipsExample/RelationshipsExampleApp.swift index 65c0ef3..5338c99 100644 --- a/Examples/Relationships/RelationshipsExample/RelationshipsExample/RelationshipsExampleApp.swift +++ b/Examples/Relationships/RelationshipsExample/RelationshipsExample/RelationshipsExampleApp.swift @@ -1,10 +1,8 @@ // RelationshipsExampleApp.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreDataRepository import SwiftUI diff --git a/Sources/CoreDataRepository/CoreDataBatchError.swift b/Sources/CoreDataRepository/CoreDataBatchError.swift index b56502f..6e5aa21 100644 --- a/Sources/CoreDataRepository/CoreDataBatchError.swift +++ b/Sources/CoreDataRepository/CoreDataBatchError.swift @@ -1,10 +1,8 @@ // CoreDataBatchError.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import Foundation diff --git a/Sources/CoreDataRepository/CoreDataError.swift b/Sources/CoreDataRepository/CoreDataError.swift index f64f53c..c47dc07 100644 --- a/Sources/CoreDataRepository/CoreDataError.swift +++ b/Sources/CoreDataRepository/CoreDataError.swift @@ -1,10 +1,8 @@ // CoreDataError.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/CoreDataRepository+Aggregate.swift b/Sources/CoreDataRepository/CoreDataRepository+Aggregate.swift index 15e719e..fef07cd 100644 --- a/Sources/CoreDataRepository/CoreDataRepository+Aggregate.swift +++ b/Sources/CoreDataRepository/CoreDataRepository+Aggregate.swift @@ -1,10 +1,8 @@ // CoreDataRepository+Aggregate.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/CoreDataRepository+BatchRequest.swift b/Sources/CoreDataRepository/CoreDataRepository+BatchRequest.swift index 7adf767..bd449c1 100644 --- a/Sources/CoreDataRepository/CoreDataRepository+BatchRequest.swift +++ b/Sources/CoreDataRepository/CoreDataRepository+BatchRequest.swift @@ -1,10 +1,8 @@ // CoreDataRepository+BatchRequest.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData diff --git a/Sources/CoreDataRepository/CoreDataRepository+Create.swift b/Sources/CoreDataRepository/CoreDataRepository+Create.swift index b927d33..e6a0392 100644 --- a/Sources/CoreDataRepository/CoreDataRepository+Create.swift +++ b/Sources/CoreDataRepository/CoreDataRepository+Create.swift @@ -1,10 +1,8 @@ // CoreDataRepository+Create.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData diff --git a/Sources/CoreDataRepository/CoreDataRepository+Create_Batch.swift b/Sources/CoreDataRepository/CoreDataRepository+Create_Batch.swift index 05818e0..2083220 100644 --- a/Sources/CoreDataRepository/CoreDataRepository+Create_Batch.swift +++ b/Sources/CoreDataRepository/CoreDataRepository+Create_Batch.swift @@ -1,10 +1,8 @@ // CoreDataRepository+Create_Batch.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData diff --git a/Sources/CoreDataRepository/CoreDataRepository+Custom.swift b/Sources/CoreDataRepository/CoreDataRepository+Custom.swift index 153d82e..4fb3d27 100644 --- a/Sources/CoreDataRepository/CoreDataRepository+Custom.swift +++ b/Sources/CoreDataRepository/CoreDataRepository+Custom.swift @@ -1,10 +1,8 @@ // CoreDataRepository+Custom.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/CoreDataRepository+Delete.swift b/Sources/CoreDataRepository/CoreDataRepository+Delete.swift index 12fb8da..cd2af6a 100644 --- a/Sources/CoreDataRepository/CoreDataRepository+Delete.swift +++ b/Sources/CoreDataRepository/CoreDataRepository+Delete.swift @@ -1,10 +1,8 @@ // CoreDataRepository+Delete.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData diff --git a/Sources/CoreDataRepository/CoreDataRepository+Delete_Batch.swift b/Sources/CoreDataRepository/CoreDataRepository+Delete_Batch.swift index e9dbd27..cba1b47 100644 --- a/Sources/CoreDataRepository/CoreDataRepository+Delete_Batch.swift +++ b/Sources/CoreDataRepository/CoreDataRepository+Delete_Batch.swift @@ -1,10 +1,8 @@ // CoreDataRepository+Delete_Batch.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData diff --git a/Sources/CoreDataRepository/CoreDataRepository+Fetch.swift b/Sources/CoreDataRepository/CoreDataRepository+Fetch.swift index 4ec38ba..423947e 100644 --- a/Sources/CoreDataRepository/CoreDataRepository+Fetch.swift +++ b/Sources/CoreDataRepository/CoreDataRepository+Fetch.swift @@ -1,10 +1,8 @@ // CoreDataRepository+Fetch.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/CoreDataRepository+Read.swift b/Sources/CoreDataRepository/CoreDataRepository+Read.swift index 39f8ab2..c89fe39 100644 --- a/Sources/CoreDataRepository/CoreDataRepository+Read.swift +++ b/Sources/CoreDataRepository/CoreDataRepository+Read.swift @@ -1,10 +1,8 @@ // CoreDataRepository+Read.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData diff --git a/Sources/CoreDataRepository/CoreDataRepository+Read_Batch.swift b/Sources/CoreDataRepository/CoreDataRepository+Read_Batch.swift index 5fde772..91045fd 100644 --- a/Sources/CoreDataRepository/CoreDataRepository+Read_Batch.swift +++ b/Sources/CoreDataRepository/CoreDataRepository+Read_Batch.swift @@ -1,10 +1,8 @@ // CoreDataRepository+Read_Batch.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData diff --git a/Sources/CoreDataRepository/CoreDataRepository+Update.swift b/Sources/CoreDataRepository/CoreDataRepository+Update.swift index f8a0dfc..48c01df 100644 --- a/Sources/CoreDataRepository/CoreDataRepository+Update.swift +++ b/Sources/CoreDataRepository/CoreDataRepository+Update.swift @@ -1,10 +1,8 @@ // CoreDataRepository+Update.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/CoreDataRepository+Update_Batch.swift b/Sources/CoreDataRepository/CoreDataRepository+Update_Batch.swift index 200d642..a355bf1 100644 --- a/Sources/CoreDataRepository/CoreDataRepository+Update_Batch.swift +++ b/Sources/CoreDataRepository/CoreDataRepository+Update_Batch.swift @@ -1,10 +1,8 @@ // CoreDataRepository+Update_Batch.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/CoreDataRepository.swift b/Sources/CoreDataRepository/CoreDataRepository.swift index 66dd223..b75a155 100644 --- a/Sources/CoreDataRepository/CoreDataRepository.swift +++ b/Sources/CoreDataRepository/CoreDataRepository.swift @@ -1,10 +1,8 @@ // CoreDataRepository.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/FetchableUnmanagedModel.swift b/Sources/CoreDataRepository/FetchableUnmanagedModel.swift index 3600f2c..6be3536 100644 --- a/Sources/CoreDataRepository/FetchableUnmanagedModel.swift +++ b/Sources/CoreDataRepository/FetchableUnmanagedModel.swift @@ -1,10 +1,8 @@ // FetchableUnmanagedModel.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/IdentifiedUnmanagedModel.swift b/Sources/CoreDataRepository/IdentifiedUnmanagedModel.swift index ccd9013..dece4d2 100644 --- a/Sources/CoreDataRepository/IdentifiedUnmanagedModel.swift +++ b/Sources/CoreDataRepository/IdentifiedUnmanagedModel.swift @@ -1,10 +1,8 @@ // IdentifiedUnmanagedModel.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData diff --git a/Sources/CoreDataRepository/Internal/AggregateSubscription.swift b/Sources/CoreDataRepository/Internal/AggregateSubscription.swift index 2dc54c3..4ecf142 100644 --- a/Sources/CoreDataRepository/Internal/AggregateSubscription.swift +++ b/Sources/CoreDataRepository/Internal/AggregateSubscription.swift @@ -1,10 +1,8 @@ // AggregateSubscription.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/Internal/AggregateThrowingSubscription.swift b/Sources/CoreDataRepository/Internal/AggregateThrowingSubscription.swift index 348b4e4..0943040 100644 --- a/Sources/CoreDataRepository/Internal/AggregateThrowingSubscription.swift +++ b/Sources/CoreDataRepository/Internal/AggregateThrowingSubscription.swift @@ -1,10 +1,8 @@ // AggregateThrowingSubscription.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/Internal/ArrayOfNSDictionary+AggregateHelpers.swift b/Sources/CoreDataRepository/Internal/ArrayOfNSDictionary+AggregateHelpers.swift index 7a2f77b..b7f753e 100644 --- a/Sources/CoreDataRepository/Internal/ArrayOfNSDictionary+AggregateHelpers.swift +++ b/Sources/CoreDataRepository/Internal/ArrayOfNSDictionary+AggregateHelpers.swift @@ -1,10 +1,8 @@ // ArrayOfNSDictionary+AggregateHelpers.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import Foundation diff --git a/Sources/CoreDataRepository/Internal/BaseSubscription.swift b/Sources/CoreDataRepository/Internal/BaseSubscription.swift index 2663524..9abc8f9 100644 --- a/Sources/CoreDataRepository/Internal/BaseSubscription.swift +++ b/Sources/CoreDataRepository/Internal/BaseSubscription.swift @@ -1,10 +1,8 @@ // BaseSubscription.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/Internal/CountSubscription.swift b/Sources/CoreDataRepository/Internal/CountSubscription.swift index ada7150..28e9e22 100644 --- a/Sources/CoreDataRepository/Internal/CountSubscription.swift +++ b/Sources/CoreDataRepository/Internal/CountSubscription.swift @@ -1,10 +1,8 @@ // CountSubscription.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/Internal/CountThrowingSubscription.swift b/Sources/CoreDataRepository/Internal/CountThrowingSubscription.swift index ff5010e..01985bd 100644 --- a/Sources/CoreDataRepository/Internal/CountThrowingSubscription.swift +++ b/Sources/CoreDataRepository/Internal/CountThrowingSubscription.swift @@ -1,10 +1,8 @@ // CountThrowingSubscription.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/Internal/FetchSubscription.swift b/Sources/CoreDataRepository/Internal/FetchSubscription.swift index 5eeaee5..121f520 100644 --- a/Sources/CoreDataRepository/Internal/FetchSubscription.swift +++ b/Sources/CoreDataRepository/Internal/FetchSubscription.swift @@ -1,10 +1,8 @@ // FetchSubscription.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/Internal/FetchThrowingSubscription.swift b/Sources/CoreDataRepository/Internal/FetchThrowingSubscription.swift index 1bf37a9..a86915e 100644 --- a/Sources/CoreDataRepository/Internal/FetchThrowingSubscription.swift +++ b/Sources/CoreDataRepository/Internal/FetchThrowingSubscription.swift @@ -1,10 +1,8 @@ // FetchThrowingSubscription.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/Internal/NSExpression+AggregateHelpers.swift b/Sources/CoreDataRepository/Internal/NSExpression+AggregateHelpers.swift index fa31b0a..d258d97 100644 --- a/Sources/CoreDataRepository/Internal/NSExpression+AggregateHelpers.swift +++ b/Sources/CoreDataRepository/Internal/NSExpression+AggregateHelpers.swift @@ -1,10 +1,8 @@ // NSExpression+AggregateHelpers.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/Internal/NSFetchRequest+AggregateHelpers.swift b/Sources/CoreDataRepository/Internal/NSFetchRequest+AggregateHelpers.swift index 2025a2c..da60166 100644 --- a/Sources/CoreDataRepository/Internal/NSFetchRequest+AggregateHelpers.swift +++ b/Sources/CoreDataRepository/Internal/NSFetchRequest+AggregateHelpers.swift @@ -1,10 +1,8 @@ // NSFetchRequest+AggregateHelpers.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/Internal/NSManagedObjectContext+Child.swift b/Sources/CoreDataRepository/Internal/NSManagedObjectContext+Child.swift index f70d69e..1b57bcf 100644 --- a/Sources/CoreDataRepository/Internal/NSManagedObjectContext+Child.swift +++ b/Sources/CoreDataRepository/Internal/NSManagedObjectContext+Child.swift @@ -1,10 +1,8 @@ // NSManagedObjectContext+Child.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/Internal/NSManagedObjectContext+Scratchpad.swift b/Sources/CoreDataRepository/Internal/NSManagedObjectContext+Scratchpad.swift index 72f90e1..cd642d5 100644 --- a/Sources/CoreDataRepository/Internal/NSManagedObjectContext+Scratchpad.swift +++ b/Sources/CoreDataRepository/Internal/NSManagedObjectContext+Scratchpad.swift @@ -1,10 +1,8 @@ // NSManagedObjectContext+Scratchpad.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/Internal/ReadSubscription.swift b/Sources/CoreDataRepository/Internal/ReadSubscription.swift index 35875f5..6007ada 100644 --- a/Sources/CoreDataRepository/Internal/ReadSubscription.swift +++ b/Sources/CoreDataRepository/Internal/ReadSubscription.swift @@ -1,10 +1,8 @@ // ReadSubscription.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import Combine import CoreData diff --git a/Sources/CoreDataRepository/Internal/ReadThrowingSubscription.swift b/Sources/CoreDataRepository/Internal/ReadThrowingSubscription.swift index cf72b13..4f3d0f5 100644 --- a/Sources/CoreDataRepository/Internal/ReadThrowingSubscription.swift +++ b/Sources/CoreDataRepository/Internal/ReadThrowingSubscription.swift @@ -1,10 +1,8 @@ // ReadThrowingSubscription.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import Combine import CoreData diff --git a/Sources/CoreDataRepository/Internal/Subscription.swift b/Sources/CoreDataRepository/Internal/Subscription.swift index 1a91d99..60d71a2 100644 --- a/Sources/CoreDataRepository/Internal/Subscription.swift +++ b/Sources/CoreDataRepository/Internal/Subscription.swift @@ -1,10 +1,8 @@ // Subscription.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/Internal/ThrowingSubscription.swift b/Sources/CoreDataRepository/Internal/ThrowingSubscription.swift index 3b74347..21ff393 100644 --- a/Sources/CoreDataRepository/Internal/ThrowingSubscription.swift +++ b/Sources/CoreDataRepository/Internal/ThrowingSubscription.swift @@ -1,10 +1,8 @@ // ThrowingSubscription.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/ManagedIdReferencable.swift b/Sources/CoreDataRepository/ManagedIdReferencable.swift index ff4719f..cfca7ff 100644 --- a/Sources/CoreDataRepository/ManagedIdReferencable.swift +++ b/Sources/CoreDataRepository/ManagedIdReferencable.swift @@ -1,10 +1,8 @@ // ManagedIdReferencable.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData diff --git a/Sources/CoreDataRepository/ManagedIdUrlReferencable.swift b/Sources/CoreDataRepository/ManagedIdUrlReferencable.swift index 6de0dcf..af79c14 100644 --- a/Sources/CoreDataRepository/ManagedIdUrlReferencable.swift +++ b/Sources/CoreDataRepository/ManagedIdUrlReferencable.swift @@ -1,10 +1,8 @@ // ManagedIdUrlReferencable.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/NSManagedObject+Helpers.swift b/Sources/CoreDataRepository/NSManagedObject+Helpers.swift index b1bbfca..1cdb9e8 100644 --- a/Sources/CoreDataRepository/NSManagedObject+Helpers.swift +++ b/Sources/CoreDataRepository/NSManagedObject+Helpers.swift @@ -1,10 +1,8 @@ // NSManagedObject+Helpers.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/NSManagedObjectContext+Helpers.swift b/Sources/CoreDataRepository/NSManagedObjectContext+Helpers.swift index accba7a..96ef305 100644 --- a/Sources/CoreDataRepository/NSManagedObjectContext+Helpers.swift +++ b/Sources/CoreDataRepository/NSManagedObjectContext+Helpers.swift @@ -1,10 +1,8 @@ // NSManagedObjectContext+Helpers.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/ReadableUnmanagedModel.swift b/Sources/CoreDataRepository/ReadableUnmanagedModel.swift index 6ed6e44..f669481 100644 --- a/Sources/CoreDataRepository/ReadableUnmanagedModel.swift +++ b/Sources/CoreDataRepository/ReadableUnmanagedModel.swift @@ -1,10 +1,8 @@ // ReadableUnmanagedModel.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/UnmanagedModel.swift b/Sources/CoreDataRepository/UnmanagedModel.swift index 2af9e70..59dd422 100644 --- a/Sources/CoreDataRepository/UnmanagedModel.swift +++ b/Sources/CoreDataRepository/UnmanagedModel.swift @@ -1,10 +1,8 @@ // UnmanagedModel.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/CoreDataRepository/WritableUnmanagedModel.swift b/Sources/CoreDataRepository/WritableUnmanagedModel.swift index 89780f7..e5fd960 100644 --- a/Sources/CoreDataRepository/WritableUnmanagedModel.swift +++ b/Sources/CoreDataRepository/WritableUnmanagedModel.swift @@ -1,10 +1,8 @@ // WritableUnmanagedModel.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/Internal/BaseManagedModel.swift b/Sources/Internal/BaseManagedModel.swift index bd48227..1c7885b 100644 --- a/Sources/Internal/BaseManagedModel.swift +++ b/Sources/Internal/BaseManagedModel.swift @@ -1,10 +1,8 @@ // BaseManagedModel.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData diff --git a/Sources/Internal/CoreDataStack.swift b/Sources/Internal/CoreDataStack.swift index f4b4612..8070347 100644 --- a/Sources/Internal/CoreDataStack.swift +++ b/Sources/Internal/CoreDataStack.swift @@ -1,10 +1,8 @@ // CoreDataStack.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData diff --git a/Sources/Internal/ModelsWithIntId/FetchableModel_Int.swift b/Sources/Internal/ModelsWithIntId/FetchableModel_Int.swift index 5ba6523..49b0267 100644 --- a/Sources/Internal/ModelsWithIntId/FetchableModel_Int.swift +++ b/Sources/Internal/ModelsWithIntId/FetchableModel_Int.swift @@ -1,10 +1,8 @@ // FetchableModel_Int.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreDataRepository import Foundation diff --git a/Sources/Internal/ModelsWithIntId/IdentifiableModel_Int.swift b/Sources/Internal/ModelsWithIntId/IdentifiableModel_Int.swift index 4efa76d..6b9727f 100644 --- a/Sources/Internal/ModelsWithIntId/IdentifiableModel_Int.swift +++ b/Sources/Internal/ModelsWithIntId/IdentifiableModel_Int.swift @@ -1,10 +1,8 @@ // IdentifiableModel_Int.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreDataRepository import Foundation diff --git a/Sources/Internal/ModelsWithIntId/ManagedIdModel_Int.swift b/Sources/Internal/ModelsWithIntId/ManagedIdModel_Int.swift index b361c0e..64ddba1 100644 --- a/Sources/Internal/ModelsWithIntId/ManagedIdModel_Int.swift +++ b/Sources/Internal/ModelsWithIntId/ManagedIdModel_Int.swift @@ -1,10 +1,8 @@ // ManagedIdModel_Int.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Sources/Internal/ModelsWithIntId/ManagedIdUrlModel_Int.swift b/Sources/Internal/ModelsWithIntId/ManagedIdUrlModel_Int.swift index b6ca956..332a5a2 100644 --- a/Sources/Internal/ModelsWithIntId/ManagedIdUrlModel_Int.swift +++ b/Sources/Internal/ModelsWithIntId/ManagedIdUrlModel_Int.swift @@ -1,10 +1,8 @@ // ManagedIdUrlModel_Int.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Sources/Internal/ModelsWithIntId/ManagedModel_Int.swift b/Sources/Internal/ModelsWithIntId/ManagedModel_Int.swift index c118063..e311471 100644 --- a/Sources/Internal/ModelsWithIntId/ManagedModel_Int.swift +++ b/Sources/Internal/ModelsWithIntId/ManagedModel_Int.swift @@ -1,10 +1,8 @@ // ManagedModel_Int.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/Internal/ModelsWithIntId/UnmanagedModel_Int.swift b/Sources/Internal/ModelsWithIntId/UnmanagedModel_Int.swift index 1e1a1b6..86701ee 100644 --- a/Sources/Internal/ModelsWithIntId/UnmanagedModel_Int.swift +++ b/Sources/Internal/ModelsWithIntId/UnmanagedModel_Int.swift @@ -1,10 +1,8 @@ // UnmanagedModel_Int.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Sources/Internal/ModelsWithUuidId/FetchableModel_Uuid.swift b/Sources/Internal/ModelsWithUuidId/FetchableModel_Uuid.swift index e310595..1d8a018 100644 --- a/Sources/Internal/ModelsWithUuidId/FetchableModel_Uuid.swift +++ b/Sources/Internal/ModelsWithUuidId/FetchableModel_Uuid.swift @@ -1,10 +1,8 @@ // FetchableModel_Uuid.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreDataRepository import Foundation diff --git a/Sources/Internal/ModelsWithUuidId/IdentifiableModel_Uuid.swift b/Sources/Internal/ModelsWithUuidId/IdentifiableModel_Uuid.swift index 4c69abb..ddc7252 100644 --- a/Sources/Internal/ModelsWithUuidId/IdentifiableModel_Uuid.swift +++ b/Sources/Internal/ModelsWithUuidId/IdentifiableModel_Uuid.swift @@ -1,10 +1,8 @@ // IdentifiableModel_Uuid.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreDataRepository import Foundation diff --git a/Sources/Internal/ModelsWithUuidId/ManagedIdModel_Uuid.swift b/Sources/Internal/ModelsWithUuidId/ManagedIdModel_Uuid.swift index 67a62ea..9ce8a31 100644 --- a/Sources/Internal/ModelsWithUuidId/ManagedIdModel_Uuid.swift +++ b/Sources/Internal/ModelsWithUuidId/ManagedIdModel_Uuid.swift @@ -1,10 +1,8 @@ // ManagedIdModel_Uuid.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Sources/Internal/ModelsWithUuidId/ManagedIdUrlModel_Uuid.swift b/Sources/Internal/ModelsWithUuidId/ManagedIdUrlModel_Uuid.swift index 6fa47fc..ad9b82a 100644 --- a/Sources/Internal/ModelsWithUuidId/ManagedIdUrlModel_Uuid.swift +++ b/Sources/Internal/ModelsWithUuidId/ManagedIdUrlModel_Uuid.swift @@ -1,10 +1,8 @@ // ManagedIdUrlModel_Uuid.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Sources/Internal/ModelsWithUuidId/ManagedModel_Uuid.swift b/Sources/Internal/ModelsWithUuidId/ManagedModel_Uuid.swift index dff8c7e..35f6b7c 100644 --- a/Sources/Internal/ModelsWithUuidId/ManagedModel_Uuid.swift +++ b/Sources/Internal/ModelsWithUuidId/ManagedModel_Uuid.swift @@ -1,10 +1,8 @@ // ManagedModel_Uuid.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import Foundation diff --git a/Sources/Internal/ModelsWithUuidId/UnmanagedModel_Uuid.swift b/Sources/Internal/ModelsWithUuidId/UnmanagedModel_Uuid.swift index a2a3cab..81d89a8 100644 --- a/Sources/Internal/ModelsWithUuidId/UnmanagedModel_Uuid.swift +++ b/Sources/Internal/ModelsWithUuidId/UnmanagedModel_Uuid.swift @@ -1,10 +1,8 @@ // UnmanagedModel_Uuid.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Sources/Internal/NSManagedObjectModel+Constants.swift b/Sources/Internal/NSManagedObjectModel+Constants.swift index 1838609..ac33394 100644 --- a/Sources/Internal/NSManagedObjectModel+Constants.swift +++ b/Sources/Internal/NSManagedObjectModel+Constants.swift @@ -1,10 +1,8 @@ // NSManagedObjectModel+Constants.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData diff --git a/Sources/Internal/UUID+Uniform.swift b/Sources/Internal/UUID+Uniform.swift index e2fd476..baba7f0 100644 --- a/Sources/Internal/UUID+Uniform.swift +++ b/Sources/Internal/UUID+Uniform.swift @@ -1,10 +1,8 @@ // UUID+Uniform.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import Foundation diff --git a/Tests/CoreDataRepositoryTests/AggregateTests.swift b/Tests/CoreDataRepositoryTests/AggregateTests.swift index 4bcf532..f6022cd 100644 --- a/Tests/CoreDataRepositoryTests/AggregateTests.swift +++ b/Tests/CoreDataRepositoryTests/AggregateTests.swift @@ -1,10 +1,8 @@ // AggregateTests.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Tests/CoreDataRepositoryTests/BatchRequestTests.swift b/Tests/CoreDataRepositoryTests/BatchRequestTests.swift index 636596e..4def5e6 100644 --- a/Tests/CoreDataRepositoryTests/BatchRequestTests.swift +++ b/Tests/CoreDataRepositoryTests/BatchRequestTests.swift @@ -1,10 +1,8 @@ // BatchRequestTests.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Tests/CoreDataRepositoryTests/CoreDataXCTestCase.swift b/Tests/CoreDataRepositoryTests/CoreDataXCTestCase.swift index ed1acbc..978dcc1 100644 --- a/Tests/CoreDataRepositoryTests/CoreDataXCTestCase.swift +++ b/Tests/CoreDataRepositoryTests/CoreDataXCTestCase.swift @@ -1,10 +1,8 @@ // CoreDataXCTestCase.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Tests/CoreDataRepositoryTests/CreateTests.swift b/Tests/CoreDataRepositoryTests/CreateTests.swift index 3dea2cc..cb7923a 100644 --- a/Tests/CoreDataRepositoryTests/CreateTests.swift +++ b/Tests/CoreDataRepositoryTests/CreateTests.swift @@ -1,10 +1,8 @@ // CreateTests.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Tests/CoreDataRepositoryTests/Create_BatchTests.swift b/Tests/CoreDataRepositoryTests/Create_BatchTests.swift index 1b43599..05bf90b 100644 --- a/Tests/CoreDataRepositoryTests/Create_BatchTests.swift +++ b/Tests/CoreDataRepositoryTests/Create_BatchTests.swift @@ -1,10 +1,8 @@ // Create_BatchTests.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Tests/CoreDataRepositoryTests/DeleteTests.swift b/Tests/CoreDataRepositoryTests/DeleteTests.swift index 28a73c7..a334daa 100644 --- a/Tests/CoreDataRepositoryTests/DeleteTests.swift +++ b/Tests/CoreDataRepositoryTests/DeleteTests.swift @@ -1,10 +1,8 @@ // DeleteTests.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Tests/CoreDataRepositoryTests/Delete_BatchTests.swift b/Tests/CoreDataRepositoryTests/Delete_BatchTests.swift index a0cf770..7fed4ca 100644 --- a/Tests/CoreDataRepositoryTests/Delete_BatchTests.swift +++ b/Tests/CoreDataRepositoryTests/Delete_BatchTests.swift @@ -1,10 +1,8 @@ // Delete_BatchTests.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Tests/CoreDataRepositoryTests/FetchTests.swift b/Tests/CoreDataRepositoryTests/FetchTests.swift index 3aa3456..ae2e32c 100644 --- a/Tests/CoreDataRepositoryTests/FetchTests.swift +++ b/Tests/CoreDataRepositoryTests/FetchTests.swift @@ -1,10 +1,8 @@ // FetchTests.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Tests/CoreDataRepositoryTests/ReadTests.swift b/Tests/CoreDataRepositoryTests/ReadTests.swift index c583ee0..51a064d 100644 --- a/Tests/CoreDataRepositoryTests/ReadTests.swift +++ b/Tests/CoreDataRepositoryTests/ReadTests.swift @@ -1,10 +1,8 @@ // ReadTests.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Tests/CoreDataRepositoryTests/Read_BatchTests.swift b/Tests/CoreDataRepositoryTests/Read_BatchTests.swift index 86414b1..1e8057a 100644 --- a/Tests/CoreDataRepositoryTests/Read_BatchTests.swift +++ b/Tests/CoreDataRepositoryTests/Read_BatchTests.swift @@ -1,10 +1,8 @@ // Read_BatchTests.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Tests/CoreDataRepositoryTests/UpdateTests.swift b/Tests/CoreDataRepositoryTests/UpdateTests.swift index db241f8..b29938b 100644 --- a/Tests/CoreDataRepositoryTests/UpdateTests.swift +++ b/Tests/CoreDataRepositoryTests/UpdateTests.swift @@ -1,10 +1,8 @@ // UpdateTests.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository diff --git a/Tests/CoreDataRepositoryTests/Update_BatchTests.swift b/Tests/CoreDataRepositoryTests/Update_BatchTests.swift index 0723d89..4daf0c0 100644 --- a/Tests/CoreDataRepositoryTests/Update_BatchTests.swift +++ b/Tests/CoreDataRepositoryTests/Update_BatchTests.swift @@ -1,10 +1,8 @@ // Update_BatchTests.swift // CoreDataRepository // -// -// MIT License -// -// Copyright © 2024 Andrew Roan +// This source code is licensed under the MIT License (MIT) found in the +// LICENSE file in the root directory of this source tree. import CoreData import CoreDataRepository