File tree 12 files changed +221
-2
lines changed
Sources/Logging/Docs.docc
12 files changed +221
-2
lines changed Original file line number Diff line number Diff line change 1
1
.DS_Store
2
+ Package.resolved
2
3
/.build
3
4
/Packages
4
5
/* .xcodeproj
Original file line number Diff line number Diff line change 1
- // swift-tools-version:5.0
1
+ // swift-tools-version:5.7
2
2
//===----------------------------------------------------------------------===//
3
3
//
4
4
// This source file is part of the Swift Logging API open source project
@@ -20,6 +20,9 @@ let package = Package(
20
20
products: [
21
21
. library( name: " Logging " , targets: [ " Logging " ] ) ,
22
22
] ,
23
+ dependencies: [
24
+ . package ( url: " https://github.com/apple/swift-docc-plugin " , from: " 1.0.0 " ) ,
25
+ ] ,
23
26
targets: [
24
27
. target(
25
28
name: " Logging " ,
Original file line number Diff line number Diff line change
1
+ // swift-tools-version:5.0
2
+ //===----------------------------------------------------------------------===//
3
+ //
4
+ // This source file is part of the Swift Logging API open source project
5
+ //
6
+ // Copyright (c) 2018-2019 Apple Inc. and the Swift Logging API project authors
7
+ // Licensed under Apache License v2.0
8
+ //
9
+ // See LICENSE.txt for license information
10
+ // See CONTRIBUTORS.txt for the list of Swift Logging API project authors
11
+ //
12
+ // SPDX-License-Identifier: Apache-2.0
13
+ //
14
+ //===----------------------------------------------------------------------===//
15
+
16
+ import PackageDescription
17
+
18
+ let package = Package (
19
+ name: " swift-log " ,
20
+ products: [
21
+ . library( name: " Logging " , targets: [ " Logging " ] ) ,
22
+ ] ,
23
+ targets: [
24
+ . target(
25
+ name: " Logging " ,
26
+ dependencies: [ ]
27
+ ) ,
28
+ . testTarget(
29
+ name: " LoggingTests " ,
30
+ dependencies: [ " Logging " ]
31
+ ) ,
32
+ ]
33
+ )
Original file line number Diff line number Diff line change
1
+ // swift-tools-version:5.1
2
+ //===----------------------------------------------------------------------===//
3
+ //
4
+ // This source file is part of the Swift Logging API open source project
5
+ //
6
+ // Copyright (c) 2018-2019 Apple Inc. and the Swift Logging API project authors
7
+ // Licensed under Apache License v2.0
8
+ //
9
+ // See LICENSE.txt for license information
10
+ // See CONTRIBUTORS.txt for the list of Swift Logging API project authors
11
+ //
12
+ // SPDX-License-Identifier: Apache-2.0
13
+ //
14
+ //===----------------------------------------------------------------------===//
15
+
16
+ import PackageDescription
17
+
18
+ let package = Package (
19
+ name: " swift-log " ,
20
+ products: [
21
+ . library( name: " Logging " , targets: [ " Logging " ] ) ,
22
+ ] ,
23
+ targets: [
24
+ . target(
25
+ name: " Logging " ,
26
+ dependencies: [ ]
27
+ ) ,
28
+ . testTarget(
29
+ name: " LoggingTests " ,
30
+ dependencies: [ " Logging " ]
31
+ ) ,
32
+ ]
33
+ )
Original file line number Diff line number Diff line change
1
+ // swift-tools-version:5.2
2
+ //===----------------------------------------------------------------------===//
3
+ //
4
+ // This source file is part of the Swift Logging API open source project
5
+ //
6
+ // Copyright (c) 2018-2019 Apple Inc. and the Swift Logging API project authors
7
+ // Licensed under Apache License v2.0
8
+ //
9
+ // See LICENSE.txt for license information
10
+ // See CONTRIBUTORS.txt for the list of Swift Logging API project authors
11
+ //
12
+ // SPDX-License-Identifier: Apache-2.0
13
+ //
14
+ //===----------------------------------------------------------------------===//
15
+
16
+ import PackageDescription
17
+
18
+ let package = Package (
19
+ name: " swift-log " ,
20
+ products: [
21
+ . library( name: " Logging " , targets: [ " Logging " ] ) ,
22
+ ] ,
23
+ targets: [
24
+ . target(
25
+ name: " Logging " ,
26
+ dependencies: [ ]
27
+ ) ,
28
+ . testTarget(
29
+ name: " LoggingTests " ,
30
+ dependencies: [ " Logging " ]
31
+ ) ,
32
+ ]
33
+ )
Original file line number Diff line number Diff line change
1
+ // swift-tools-version:5.3
2
+ //===----------------------------------------------------------------------===//
3
+ //
4
+ // This source file is part of the Swift Logging API open source project
5
+ //
6
+ // Copyright (c) 2018-2019 Apple Inc. and the Swift Logging API project authors
7
+ // Licensed under Apache License v2.0
8
+ //
9
+ // See LICENSE.txt for license information
10
+ // See CONTRIBUTORS.txt for the list of Swift Logging API project authors
11
+ //
12
+ // SPDX-License-Identifier: Apache-2.0
13
+ //
14
+ //===----------------------------------------------------------------------===//
15
+
16
+ import PackageDescription
17
+
18
+ let package = Package (
19
+ name: " swift-log " ,
20
+ products: [
21
+ . library( name: " Logging " , targets: [ " Logging " ] ) ,
22
+ ] ,
23
+ targets: [
24
+ . target(
25
+ name: " Logging " ,
26
+ dependencies: [ ]
27
+ ) ,
28
+ . testTarget(
29
+ name: " LoggingTests " ,
30
+ dependencies: [ " Logging " ]
31
+ ) ,
32
+ ]
33
+ )
Original file line number Diff line number Diff line change
1
+ // swift-tools-version:5.4
2
+ //===----------------------------------------------------------------------===//
3
+ //
4
+ // This source file is part of the Swift Logging API open source project
5
+ //
6
+ // Copyright (c) 2018-2019 Apple Inc. and the Swift Logging API project authors
7
+ // Licensed under Apache License v2.0
8
+ //
9
+ // See LICENSE.txt for license information
10
+ // See CONTRIBUTORS.txt for the list of Swift Logging API project authors
11
+ //
12
+ // SPDX-License-Identifier: Apache-2.0
13
+ //
14
+ //===----------------------------------------------------------------------===//
15
+
16
+ import PackageDescription
17
+
18
+ let package = Package (
19
+ name: " swift-log " ,
20
+ products: [
21
+ . library( name: " Logging " , targets: [ " Logging " ] ) ,
22
+ ] ,
23
+ targets: [
24
+ . target(
25
+ name: " Logging " ,
26
+ dependencies: [ ]
27
+ ) ,
28
+ . testTarget(
29
+ name: " LoggingTests " ,
30
+ dependencies: [ " Logging " ]
31
+ ) ,
32
+ ]
33
+ )
Original file line number Diff line number Diff line change
1
+ // swift-tools-version:5.5
2
+ //===----------------------------------------------------------------------===//
3
+ //
4
+ // This source file is part of the Swift Logging API open source project
5
+ //
6
+ // Copyright (c) 2018-2019 Apple Inc. and the Swift Logging API project authors
7
+ // Licensed under Apache License v2.0
8
+ //
9
+ // See LICENSE.txt for license information
10
+ // See CONTRIBUTORS.txt for the list of Swift Logging API project authors
11
+ //
12
+ // SPDX-License-Identifier: Apache-2.0
13
+ //
14
+ //===----------------------------------------------------------------------===//
15
+
16
+ import PackageDescription
17
+
18
+ let package = Package (
19
+ name: " swift-log " ,
20
+ products: [
21
+ . library( name: " Logging " , targets: [ " Logging " ] ) ,
22
+ ] ,
23
+ targets: [
24
+ . target(
25
+ name: " Logging " ,
26
+ dependencies: [ ]
27
+ ) ,
28
+ . testTarget(
29
+ name: " LoggingTests " ,
30
+ dependencies: [ " Logging " ]
31
+ ) ,
32
+ ]
33
+ )
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ services:
11
11
12
12
test :
13
13
image : swift-log:20.04-5.5
14
- environment : []
14
+ environment :
15
+ - FORCE_TEST_DISCOVERY=--enable-test-discovery
15
16
# - SANITIZER_ARG=--sanitize=thread
16
17
17
18
shell :
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ # #===----------------------------------------------------------------------===##
3
+ # #
4
+ # # This source file is part of the Swift Logging API open source project
5
+ # #
6
+ # # Copyright (c) 2018-2019 Apple Inc. and the Swift Logging API project authors
7
+ # # Licensed under Apache License v2.0
8
+ # #
9
+ # # See LICENSE.txt for license information
10
+ # # See CONTRIBUTORS.md for the list of Swift Logging API project authors
11
+ # #
12
+ # # SPDX-License-Identifier: Apache-2.0
13
+ # #
14
+ # #===----------------------------------------------------------------------===##
15
+
16
+ xcrun swift package --disable-sandbox preview-documentation --target Logging
You can’t perform that action at this time.
0 commit comments