From 008d2997fe63c25fd1475697c4da8a0f6291c66d Mon Sep 17 00:00:00 2001 From: Anass Bouassaba Date: Thu, 21 Nov 2024 04:56:13 +0100 Subject: [PATCH] chore: update license header --- LICENSE | 2 +- Sources/Account.swift | 6 ++++-- Sources/Common/Error.swift | 6 ++++-- Sources/Common/Request.swift | 6 ++++-- Sources/Common/URLRequest+AuthHeader.swift | 6 ++++-- Sources/Common/URLRequest+JSON.swift | 6 ++++-- Sources/File+Wait.swift | 6 ++++-- Sources/File.swift | 6 ++++-- Sources/Group.swift | 6 ++++-- Sources/IdentityUser.swift | 7 +++++++ Sources/Insights.swift | 6 ++++-- Sources/Invitation.swift | 6 ++++-- Sources/Mosaic.swift | 6 ++++-- Sources/Organization.swift | 6 ++++-- Sources/Permission.swift | 6 ++++-- Sources/Snapshot.swift | 6 ++++-- Sources/Storage.swift | 6 ++++-- Sources/Task+Wait.swift | 6 ++++-- Sources/Task.swift | 6 ++++-- Sources/Token.swift | 6 ++++-- Sources/User.swift | 6 ++++-- Sources/Workspace.swift | 6 ++++-- Tests/AccountTests.swift | 6 ++++-- Tests/Common/ClientFactory.swift | 6 ++++-- Tests/Common/DisposableFactory.swift | 6 ++++-- Tests/Common/TokenFactory.swift | 6 ++++-- Tests/Common/XCTestCase+Bundle.swift | 6 ++++-- Tests/Common/XCTestCase+Failure.swift | 6 ++++-- Tests/FileTests.swift | 6 ++++-- Tests/GroupTests.swift | 6 ++++-- Tests/Infra/Config.swift | 6 ++++-- Tests/InsightsTests.swift | 6 ++++-- Tests/InvitationTests.swift | 6 ++++-- Tests/MosaicTests.swift | 6 ++++-- Tests/OrganizationTests.swift | 6 ++++-- Tests/SnapshotsTests.swift | 6 ++++-- Tests/StorageTests.swift | 6 ++++-- Tests/TaskTests.swift | 6 ++++-- Tests/WorkspaceTests.swift | 6 ++++-- 39 files changed, 156 insertions(+), 75 deletions(-) diff --git a/LICENSE b/LICENSE index d3d5362..0ce13f5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2024 Anass Bouassaba. All Rights Reserved. +Copyright (c) 2023 Anass Bouassaba. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation diff --git a/Sources/Account.swift b/Sources/Account.swift index b35c827..cac7f33 100644 --- a/Sources/Account.swift +++ b/Sources/Account.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Common/Error.swift b/Sources/Common/Error.swift index 8c22c6f..ecd74ac 100644 --- a/Sources/Common/Error.swift +++ b/Sources/Common/Error.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation diff --git a/Sources/Common/Request.swift b/Sources/Common/Request.swift index bcd944e..07c155f 100644 --- a/Sources/Common/Request.swift +++ b/Sources/Common/Request.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Common/URLRequest+AuthHeader.swift b/Sources/Common/URLRequest+AuthHeader.swift index 4477b7d..5a3aab4 100644 --- a/Sources/Common/URLRequest+AuthHeader.swift +++ b/Sources/Common/URLRequest+AuthHeader.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Common/URLRequest+JSON.swift b/Sources/Common/URLRequest+JSON.swift index 7b70490..baa94f2 100644 --- a/Sources/Common/URLRequest+JSON.swift +++ b/Sources/Common/URLRequest+JSON.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/File+Wait.swift b/Sources/File+Wait.swift index 9b6ccb9..95ec377 100644 --- a/Sources/File+Wait.swift +++ b/Sources/File+Wait.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation diff --git a/Sources/File.swift b/Sources/File.swift index 4143e5b..0b0af92 100644 --- a/Sources/File.swift +++ b/Sources/File.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Group.swift b/Sources/Group.swift index a08b5cb..102585e 100644 --- a/Sources/Group.swift +++ b/Sources/Group.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/IdentityUser.swift b/Sources/IdentityUser.swift index d6405b8..5cd1009 100644 --- a/Sources/IdentityUser.swift +++ b/Sources/IdentityUser.swift @@ -1,3 +1,10 @@ +// Copyright 2024 Anass Bouassaba. +// +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. + import Foundation public struct VOIdentityUser { diff --git a/Sources/Insights.swift b/Sources/Insights.swift index 5b33eba..b131e97 100644 --- a/Sources/Insights.swift +++ b/Sources/Insights.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Invitation.swift b/Sources/Invitation.swift index 483ead5..eb7da97 100644 --- a/Sources/Invitation.swift +++ b/Sources/Invitation.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Mosaic.swift b/Sources/Mosaic.swift index af167d9..d1761a4 100644 --- a/Sources/Mosaic.swift +++ b/Sources/Mosaic.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Organization.swift b/Sources/Organization.swift index 399e02e..63108b8 100644 --- a/Sources/Organization.swift +++ b/Sources/Organization.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Permission.swift b/Sources/Permission.swift index b95aba1..0a28367 100644 --- a/Sources/Permission.swift +++ b/Sources/Permission.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Snapshot.swift b/Sources/Snapshot.swift index 0302fd3..fc78477 100644 --- a/Sources/Snapshot.swift +++ b/Sources/Snapshot.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Storage.swift b/Sources/Storage.swift index cacd7dd..9a2a0a9 100644 --- a/Sources/Storage.swift +++ b/Sources/Storage.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Task+Wait.swift b/Sources/Task+Wait.swift index e7cd35c..542e605 100644 --- a/Sources/Task+Wait.swift +++ b/Sources/Task+Wait.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation diff --git a/Sources/Task.swift b/Sources/Task.swift index bc048c2..ae6e7ae 100644 --- a/Sources/Task.swift +++ b/Sources/Task.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Token.swift b/Sources/Token.swift index 5bd271f..0c4e763 100644 --- a/Sources/Token.swift +++ b/Sources/Token.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/User.swift b/Sources/User.swift index fc4b1d7..4aeb265 100644 --- a/Sources/User.swift +++ b/Sources/User.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Sources/Workspace.swift b/Sources/Workspace.swift index 9cb32cc..da50692 100644 --- a/Sources/Workspace.swift +++ b/Sources/Workspace.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation #if canImport(FoundationNetworking) diff --git a/Tests/AccountTests.swift b/Tests/AccountTests.swift index 46a9ace..69db9ff 100644 --- a/Tests/AccountTests.swift +++ b/Tests/AccountTests.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/Common/ClientFactory.swift b/Tests/Common/ClientFactory.swift index 399a1ed..1063808 100644 --- a/Tests/Common/ClientFactory.swift +++ b/Tests/Common/ClientFactory.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import VoltaserveCore diff --git a/Tests/Common/DisposableFactory.swift b/Tests/Common/DisposableFactory.swift index f96cd64..13e4054 100644 --- a/Tests/Common/DisposableFactory.swift +++ b/Tests/Common/DisposableFactory.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import VoltaserveCore diff --git a/Tests/Common/TokenFactory.swift b/Tests/Common/TokenFactory.swift index 33b2557..b0516f7 100644 --- a/Tests/Common/TokenFactory.swift +++ b/Tests/Common/TokenFactory.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import VoltaserveCore diff --git a/Tests/Common/XCTestCase+Bundle.swift b/Tests/Common/XCTestCase+Bundle.swift index a584d67..dbdfd53 100644 --- a/Tests/Common/XCTestCase+Bundle.swift +++ b/Tests/Common/XCTestCase+Bundle.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation import XCTest diff --git a/Tests/Common/XCTestCase+Failure.swift b/Tests/Common/XCTestCase+Failure.swift index 7164aee..3c5b518 100644 --- a/Tests/Common/XCTestCase+Failure.swift +++ b/Tests/Common/XCTestCase+Failure.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import XCTest diff --git a/Tests/FileTests.swift b/Tests/FileTests.swift index 2171810..c57fc39 100644 --- a/Tests/FileTests.swift +++ b/Tests/FileTests.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/GroupTests.swift b/Tests/GroupTests.swift index 4230095..b52f843 100644 --- a/Tests/GroupTests.swift +++ b/Tests/GroupTests.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/Infra/Config.swift b/Tests/Infra/Config.swift index ca884b2..58e48be 100644 --- a/Tests/Infra/Config.swift +++ b/Tests/Infra/Config.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. import Foundation import VoltaserveCore diff --git a/Tests/InsightsTests.swift b/Tests/InsightsTests.swift index 2786906..86027f9 100644 --- a/Tests/InsightsTests.swift +++ b/Tests/InsightsTests.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/InvitationTests.swift b/Tests/InvitationTests.swift index c9d57a5..ebe6e59 100644 --- a/Tests/InvitationTests.swift +++ b/Tests/InvitationTests.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/MosaicTests.swift b/Tests/MosaicTests.swift index 4c42875..f48b074 100644 --- a/Tests/MosaicTests.swift +++ b/Tests/MosaicTests.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/OrganizationTests.swift b/Tests/OrganizationTests.swift index 5f52a5b..20f5923 100644 --- a/Tests/OrganizationTests.swift +++ b/Tests/OrganizationTests.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/SnapshotsTests.swift b/Tests/SnapshotsTests.swift index c7410fb..b2dcc25 100644 --- a/Tests/SnapshotsTests.swift +++ b/Tests/SnapshotsTests.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/StorageTests.swift b/Tests/StorageTests.swift index 12ab36b..9be6f93 100644 --- a/Tests/StorageTests.swift +++ b/Tests/StorageTests.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/TaskTests.swift b/Tests/TaskTests.swift index 4b4823b..b060c9c 100644 --- a/Tests/TaskTests.swift +++ b/Tests/TaskTests.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest diff --git a/Tests/WorkspaceTests.swift b/Tests/WorkspaceTests.swift index 7edde1d..c8c3bc8 100644 --- a/Tests/WorkspaceTests.swift +++ b/Tests/WorkspaceTests.swift @@ -1,7 +1,9 @@ // Copyright 2024 Anass Bouassaba. // -// This source code is licensed under the MIT license found in the -// LICENSE file in the root directory of this source tree. +// This software is licensed under the MIT License. +// You can find a copy of the license in the LICENSE file +// included in the root of this repository or at +// https://opensource.org/licenses/MIT. @testable import VoltaserveCore import XCTest