Skip to content

Commit 0843042

Browse files
Merge pull request #2 from Apodini/lukaskollmer/fix-maybe
update license text (arbitrary change so that we can do a new release)
2 parents 7de65b4 + 49418d9 commit 0843042

File tree

13 files changed

+91
-9
lines changed

13 files changed

+91
-9
lines changed

LICENSES/MIT.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
MIT License
22

3-
Copyright (c) 2021 Paul Schmiedmayer
3+
Copyright (c) 2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

77
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
88

9-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package.swift

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
// swift-tools-version:5.5
2-
// The swift-tools-version declares the minimum version of Swift required to build this package.
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
//
4+
// This source file is part of the Apodini open source project
5+
//
6+
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <[email protected]>
7+
//
8+
// SPDX-License-Identifier: MIT
9+
//
10+
311

412
import PackageDescription
513

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
This source file is part of the Apodini open source project
3+
4+
SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <[email protected]>
5+
6+
SPDX-License-Identifier: MIT
7+

Sources/ApodiniDocumentExport/ExportOptions.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
//
2+
// This source file is part of the Apodini open source project
3+
//
4+
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <[email protected]>
5+
//
6+
// SPDX-License-Identifier: MIT
7+
//
8+
19
import Foundation
210
import ArgumentParser
311

Sources/ApodiniDocumentExport/Extensions/Decodable+Extensions.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
//
2+
// This source file is part of the Apodini open source project
3+
//
4+
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <[email protected]>
5+
//
6+
// SPDX-License-Identifier: MIT
7+
//
8+
19
import Foundation
210
import PathKit
311
@_implementationOnly import Yams

Sources/ApodiniDocumentExport/Extensions/Encodable+Extensions.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
//
2+
// This source file is part of the Apodini open source project
3+
//
4+
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <[email protected]>
5+
//
6+
// SPDX-License-Identifier: MIT
7+
//
8+
19
import Foundation
210
@_implementationOnly import FineJSON
311
@_implementationOnly import RichJSONParser

Sources/ApodiniDocumentExport/Extensions/String+Extensions.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
//
2+
// This source file is part of the Apodini open source project
3+
//
4+
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <[email protected]>
5+
//
6+
// SPDX-License-Identifier: MIT
7+
//
8+
19
import Foundation
210
import PathKit
311

Sources/ApodiniDocumentExport/FileExtension.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
//
2+
// This source file is part of the Apodini open source project
3+
//
4+
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <[email protected]>
5+
//
6+
// SPDX-License-Identifier: MIT
7+
//
8+
19
import Foundation
210
import PathKit
311

Sources/ApodiniDocumentExport/OutputFormat.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
//
2+
// This source file is part of the Apodini open source project
3+
//
4+
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <[email protected]>
5+
//
6+
// SPDX-License-Identifier: MIT
7+
//
8+
19
import Foundation
210

311
/// OutputFormat cases for encodable instances

Sources/ApodiniDocumentExport/Value.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
//
2+
// This source file is part of the Apodini open source project
3+
//
4+
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <[email protected]>
5+
//
6+
// SPDX-License-Identifier: MIT
7+
//
8+
19
import Foundation
210

311
/// A protocol that requires conformance to `Codable` and `Hashable` (also `Equatable`)

Tests/ApodiniDocumentExportTests/ApodiniDocumentExportTests.swift

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
//
2-
// ApodiniDocumentExportTests.swift
3-
//
2+
// This source file is part of the Apodini open source project
3+
//
4+
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <[email protected]>
45
//
5-
// Created by Valentin Bootz on 29.01.22.
6+
// SPDX-License-Identifier: MIT
67
//
78

9+
810
import Foundation
911
import XCTest
1012
import PathKit

Tests/ApodiniDocumentExportTests/Document.swift

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
//
2-
// File.swift
3-
//
2+
// This source file is part of the Apodini open source project
3+
//
4+
// SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <[email protected]>
45
//
5-
// Created by Valentin Bootz on 29.01.22.
6+
// SPDX-License-Identifier: MIT
67
//
78

9+
810
import ApodiniDocumentExport
911

1012
struct Document: Value {
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
This source file is part of the Apodini open source project
3+
4+
SPDX-FileCopyrightText: 2019-2021 Paul Schmiedmayer and the Apodini project authors (see CONTRIBUTORS.md) <[email protected]>
5+
6+
SPDX-License-Identifier: MIT
7+

0 commit comments

Comments
 (0)