The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of FinnishPIDVerifier, reference v1.1.3 (6686ec), with Swift 6.0 for macOS (SPM) on 8 Nov 2024 17:23:16 UTC.

Swift 6 data race errors: 3

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.57.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/anttijuu/FinnishPIDVerifier.git
Reference: v1.1.3
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/anttijuu/FinnishPIDVerifier
 * tag               v1.1.3     -> FETCH_HEAD
HEAD is now at 6686ecf Regenerated docs with newest version of SwiftDocC plugin
Cloned https://github.com/anttijuu/FinnishPIDVerifier.git
Revision (git rev-parse @):
6686ecfaae13bfca3e5660b089e82135fd21e4f7
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/anttijuu/FinnishPIDVerifier.git at v1.1.3
Fetching https://github.com/apple/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.28s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.3 (3.47s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3168] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.50s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.68s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "finnishpidverifier",
      "name": "FinnishPIDVerifier",
      "url": "https://github.com/anttijuu/FinnishPIDVerifier.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/FinnishPIDVerifier",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/anttijuu/FinnishPIDVerifier.git
[1/925] Fetching finnishpidverifier
Fetched https://github.com/anttijuu/FinnishPIDVerifier.git from cache (1.09s)
Creating working copy for https://github.com/anttijuu/FinnishPIDVerifier.git
Working copy of https://github.com/anttijuu/FinnishPIDVerifier.git resolved at v1.1.3 (6686ecf)
warning: '.resolve-product-dependencies': dependency 'finnishpidverifier' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/anttijuu/FinnishPIDVerifier.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[2/8] Write sources
[3/8] Copying Localizable.strings
[3/8] Copying Info.plist
[3/8] Copying Localizable.strings
[7/8] Write swift-version--7754E27361AE5C74.txt
[9/13] Compiling FinnishPIDVerifier resource_bundle_accessor.swift
[10/13] Compiling FinnishPIDVerifier FinnishPIDGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:99:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 97 | 	public let pid: String
 98 | 	/// The validity of the checked PID.
 99 | 	public private (set) var validity: Validity = .invalidPID
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:101:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 99 | 	public private (set) var validity: Validity = .invalidPID
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:103:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
101 | 	public private (set) var gender: Gender = .undefined
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
104 |
105 | 	/// True, if the PID was valid and *not* a test PID.
[11/13] Compiling FinnishPIDVerifier FinnishPID+Comparable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:99:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 97 | 	public let pid: String
 98 | 	/// The validity of the checked PID.
 99 | 	public private (set) var validity: Validity = .invalidPID
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:101:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 99 | 	public private (set) var validity: Validity = .invalidPID
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:103:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
101 | 	public private (set) var gender: Gender = .undefined
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
104 |
105 | 	/// True, if the PID was valid and *not* a test PID.
[12/13] Emitting module FinnishPIDVerifier
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:99:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 97 | 	public let pid: String
 98 | 	/// The validity of the checked PID.
 99 | 	public private (set) var validity: Validity = .invalidPID
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:101:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 99 | 	public private (set) var validity: Validity = .invalidPID
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:103:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
101 | 	public private (set) var gender: Gender = .undefined
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
104 |
105 | 	/// True, if the PID was valid and *not* a test PID.
[13/13] Compiling FinnishPIDVerifier FinnishPID.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:99:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 97 | 	public let pid: String
 98 | 	/// The validity of the checked PID.
 99 | 	public private (set) var validity: Validity = .invalidPID
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:101:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 99 | 	public private (set) var validity: Validity = .invalidPID
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:103:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
101 | 	public private (set) var gender: Gender = .undefined
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
104 |
105 | 	/// True, if the PID was valid and *not* a test PID.
Build complete! (20.23s)
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "FinnishPIDVerifier",
  "name" : "FinnishPIDVerifier",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "FinnishPIDVerifier",
      "targets" : [
        "FinnishPIDVerifier"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FinnishPIDVerifierTests",
      "module_type" : "SwiftTarget",
      "name" : "FinnishPIDVerifierTests",
      "path" : "Tests/FinnishPIDVerifierTests",
      "sources" : [
        "FiPIDGeneratorTests.swift",
        "FiPIDTests.swift"
      ],
      "target_dependencies" : [
        "FinnishPIDVerifier"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FinnishPIDVerifier",
      "module_type" : "SwiftTarget",
      "name" : "FinnishPIDVerifier",
      "path" : "Sources/FinnishPIDVerifier",
      "product_memberships" : [
        "FinnishPIDVerifier"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/Resources/en.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/Resources/fi.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "fi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/Resources/se.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "se"
            }
          }
        }
      ],
      "sources" : [
        "FinnishPID+Comparable.swift",
        "FinnishPID.swift",
        "FinnishPIDGenerator.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/anttijuu/finnishpidverifier/v1.1.3
Repository:               anttijuu/FinnishPIDVerifier
Swift version used:       6.0
	 dependencies: [.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),],
Target:                   FinnishPIDVerifier
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'FinnishPIDVerifier'...
Finished extracting symbol information for 'FinnishPIDVerifier'. (2.91s)
Building documentation for 'FinnishPIDVerifier'...
warning: Parameter 'lsh' not found in operator declaration
  --> ../FinnishPID+Comparable.swift:15:6-15:47
13 | 	/// Compares if two PIDs are the same.
14 | 	///
15 + 	/// - Parameter lsh: Left hand side variable.
   |      ╰─suggestion: Remove 'lsh' parameter documentation
16 | 	/// - Parameter rhs: Right hand side variable.
17 | 	/// - Returns: True if the PIDs are the same PID.
warning: Parameter 'lhs' is missing documentation
  --> ../FinnishPID+Comparable.swift:16:48-16:48
14 | 	///
15 | 	/// - Parameter lsh: Left hand side variable.
16 + 	/// - Parameter rhs: Right hand side variable.
   |      ╰─suggestion: Document 'lhs' parameter
17 | 	/// - Returns: True if the PIDs are the same PID.
18 | 	public static func == (lhs: FinnishPID, rhs: FinnishPID) -> Bool {Finished building documentation for 'FinnishPIDVerifier' (0.13s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/anttijuu/finnishpidverifier/v1.1.3
Building for debugging...
[0/8] Write sources
[2/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling SymbolKit DeclarationFragments.swift
[7/53] Compiling SymbolKit Fragment.swift
[8/53] Compiling SymbolKit FragmentKind.swift
[9/53] Compiling SymbolKit FunctionParameter.swift
[10/53] Compiling SymbolKit FunctionSignature.swift
[11/57] Emitting module SymbolKit
[12/57] Compiling SymbolKit GenericConstraint.swift
[13/57] Compiling SymbolKit GenericParameter.swift
[14/57] Compiling SymbolKit Generics.swift
[15/57] Compiling SymbolKit Namespace.swift
[16/57] Compiling SymbolKit Names.swift
[17/57] Compiling SymbolKit SPI.swift
[18/57] Compiling SymbolKit Snippet.swift
[19/57] Compiling SymbolKit Extension.swift
[20/57] Compiling SymbolKit SourceRange.swift
[21/57] Compiling SymbolKit Metadata.swift
[22/57] Compiling SymbolKit Module.swift
[23/57] Compiling SymbolKit OperatingSystem.swift
[24/57] Compiling SymbolKit Platform.swift
[25/57] Compiling SymbolKit Relationship.swift
[26/57] Compiling SymbolKit RelationshipKind.swift
[27/57] Compiling SymbolKit SourceOrigin.swift
[28/57] Compiling SymbolKit GenericConstraints.swift
[29/57] Compiling SymbolKit Swift.swift
[30/57] Compiling SymbolKit Mixin+Equals.swift
[31/57] Compiling SymbolKit Mixin+Hash.swift
[32/57] Compiling SymbolKit Mixin.swift
[33/57] Compiling SymbolKit LineList.swift
[34/57] Compiling SymbolKit Position.swift
[35/57] Compiling SymbolKit SemanticVersion.swift
[36/57] Compiling SymbolKit AccessControl.swift
[37/57] Compiling SymbolKit Availability.swift
[38/57] Compiling SymbolKit AvailabilityItem.swift
[39/57] Compiling SymbolKit Domain.swift
[40/57] Compiling SymbolKit Symbol.swift
[41/57] Compiling SymbolKit SymbolKind.swift
[42/57] Compiling SymbolKit SymbolGraph.swift
[43/57] Compiling SymbolKit GraphCollector.swift
[44/57] Compiling SymbolKit Identifier.swift
[45/57] Compiling SymbolKit KindIdentifier.swift
[46/57] Compiling SymbolKit Location.swift
[47/57] Compiling SymbolKit Mutability.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Compiling Snippets Snippet.swift
[54/57] Emitting module Snippets
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Emitting module snippet_extract
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.54s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/6] Compiling FinnishPIDVerifier resource_bundle_accessor.swift
[3/6] Compiling FinnishPIDVerifier FinnishPIDGenerator.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:99:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 97 | 	public let pid: String
 98 | 	/// The validity of the checked PID.
 99 | 	public private (set) var validity: Validity = .invalidPID
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:101:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 99 | 	public private (set) var validity: Validity = .invalidPID
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:103:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
101 | 	public private (set) var gender: Gender = .undefined
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
104 |
105 | 	/// True, if the PID was valid and *not* a test PID.
[4/6] Compiling FinnishPIDVerifier FinnishPID+Comparable.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:99:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 97 | 	public let pid: String
 98 | 	/// The validity of the checked PID.
 99 | 	public private (set) var validity: Validity = .invalidPID
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:101:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 99 | 	public private (set) var validity: Validity = .invalidPID
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:103:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
101 | 	public private (set) var gender: Gender = .undefined
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
104 |
105 | 	/// True, if the PID was valid and *not* a test PID.
[5/6] Compiling FinnishPIDVerifier FinnishPID.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:99:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 97 | 	public let pid: String
 98 | 	/// The validity of the checked PID.
 99 | 	public private (set) var validity: Validity = .invalidPID
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:101:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 99 | 	public private (set) var validity: Validity = .invalidPID
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:103:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
101 | 	public private (set) var gender: Gender = .undefined
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
104 |
105 | 	/// True, if the PID was valid and *not* a test PID.
[6/6] Emitting module FinnishPIDVerifier
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:99:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 97 | 	public let pid: String
 98 | 	/// The validity of the checked PID.
 99 | 	public private (set) var validity: Validity = .invalidPID
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:101:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 99 | 	public private (set) var validity: Validity = .invalidPID
100 | 	/// The gender of the person based on the PID.
101 | 	public private (set) var gender: Gender = .undefined
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
/Users/admin/builder/spi-builder-workspace/Sources/FinnishPIDVerifier/FinnishPID.swift:103:9: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
101 | 	public private (set) var gender: Gender = .undefined
102 | 	/// The birth date of the person based on the PID. If PID was invalid, is `nil`.
103 | 	public private (set) var birthDay: Date?
    |         `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
104 |
105 | 	/// True, if the PID was valid and *not* a test PID.
Build of target: 'FinnishPIDVerifier' complete! (0.64s)
     152
2	/Users/admin/builder/spi-builder-workspace/.docs/anttijuu/finnishpidverifier/v1.1.3
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/anttijuu/finnishpidverifier/v1.1.3
File count: 152
Doc size:   2.0MB
Preparing doc bundle ...
Uploading prod-anttijuu-finnishpidverifier-v1.1.3-4d9bde66.zip to s3://spi-docs-inbox/prod-anttijuu-finnishpidverifier-v1.1.3-4d9bde66.zip
Copying... [15%]
Copying... [30%]
Copying... [45%]
Copying... [60%]
Copying... [74%]
Copying... [89%]
Copying... [100%]
Done.