The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ProgressUI, reference 1.0.4 (b60500), with Swift 6.1 for macOS (SPM) on 16 May 2025 17:40:47 UTC.

Swift 6 data race errors: 8

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.61.4
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/PierreJanineh-com/ProgressUI.git
Reference: 1.0.4
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/PierreJanineh-com/ProgressUI
 * tag               1.0.4      -> FETCH_HEAD
HEAD is now at b60500d docs: Update README and demo assets (#17)
Cloned https://github.com/PierreJanineh-com/ProgressUI.git
Revision (git rev-parse @):
b60500d2395377dd31b2fde8a1d8667961aa9b7f
SUCCESS checkout https://github.com/PierreJanineh-com/ProgressUI.git at 1.0.4
========================================
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": "progressui",
      "name": "ProgressUI",
      "url": "https://github.com/PierreJanineh-com/ProgressUI.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/ProgressUI",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/PierreJanineh-com/ProgressUI.git
[5/204] Fetching progressui
Fetched https://github.com/PierreJanineh-com/ProgressUI.git from cache (1.24s)
Creating working copy for https://github.com/PierreJanineh-com/ProgressUI.git
Working copy of https://github.com/PierreJanineh-com/ProgressUI.git resolved at 1.0.4 (b60500d)
warning: '.resolve-product-dependencies': dependency 'progressui' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/PierreJanineh-com/ProgressUI.git
https://github.com/PierreJanineh-com/ProgressUI.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ProgressUI",
  "name" : "ProgressUI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "ProgressUI",
      "targets" : [
        "ProgressUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ProgressUI",
      "module_type" : "SwiftTarget",
      "name" : "ProgressUI",
      "path" : "Sources/ProgressUI",
      "product_memberships" : [
        "ProgressUI"
      ],
      "sources" : [
        "Components/BaseProgress.swift",
        "Components/CircularProgress.swift",
        "Components/LinearProgress.swift",
        "Components/ProgressUI/ProgressUI+Modifiers.swift",
        "Components/ProgressUI/ProgressUI+ViewModel.swift",
        "Components/ProgressUI/ProgressUI.swift",
        "GrowDirection.swift",
        "Options.swift",
        "ProgressSize.swift",
        "Progressable.swift",
        "Shape.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/13] Compiling ProgressUI LinearProgress.swift
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/LinearProgress.swift:15:24: warning: main actor-isolated property 'progress' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
  9 | import Combine
 10 |
 11 | internal struct LinearProgress: View, BaseProgress {
    |                                       `- note: add '@preconcurrency' to the 'BaseProgress' conformance to defer isolation checking to run time
 12 | 	@EnvironmentObject private var vm: ProgressUI.ViewModel
 13 |
 14 | 	/// The main progress value, either bound or constant.
 15 | 	@Binding internal var progress: CGFloat
    |                        `- warning: main actor-isolated property 'progress' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 16 |
 17 | 	/// The options for Progress' configurations
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:12:6: note: requirement 'progress' declared here
10 | /// A protocol that provides common functionality for progress indicators
11 | internal protocol BaseProgress {
12 | 	var progress: CGFloat { get }
   |      `- note: requirement 'progress' declared here
13 | 	var options: Options { get }
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/LinearProgress.swift:18:15: warning: main actor-isolated property 'options' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 16 |
 17 | 	/// The options for Progress' configurations
 18 | 	internal var options: Options
    |               `- warning: main actor-isolated property 'options' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 19 |
 20 | 	/// The type used for dynamic coloring/status.
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:13:6: note: requirement 'options' declared here
11 | internal protocol BaseProgress {
12 | 	var progress: CGFloat { get }
13 | 	var options: Options { get }
   |      `- note: requirement 'options' declared here
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/LinearProgress.swift:39:11: warning: main actor-isolated initializer 'init(progress:options:statusType:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 37 | 	 ```
 38 | 	 */
 39 | 	internal init<Status: CaseIterable & Progressable>(
    |           |- warning: main actor-isolated initializer 'init(progress:options:statusType:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
    |           `- note: add 'nonisolated' to 'init(progress:options:statusType:)' to make this initializer not isolated to the actor
 40 | 		progress: Binding<CGFloat>,
 41 | 		options: Options? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:16:2: note: mark the protocol requirement 'init(progress:options:statusType:)' 'async' to allow actor-isolated conformances
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
15 |
16 | 	init<Status: CaseIterable & Progressable>(
   |  `- note: mark the protocol requirement 'init(progress:options:statusType:)' 'async' to allow actor-isolated conformances
17 | 		progress: Binding<CGFloat>,
18 | 		options: Options?,
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/LinearProgress.swift:63:11: warning: main actor-isolated initializer 'init(progress:options:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 61 | 	 ```
 62 | 	 */
 63 | 	internal init(
    |           |- warning: main actor-isolated initializer 'init(progress:options:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
    |           `- note: add 'nonisolated' to 'init(progress:options:)' to make this initializer not isolated to the actor
 64 | 		progress: Binding<CGFloat>,
 65 | 		options: Options? = nil
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:22:2: note: mark the protocol requirement 'init(progress:options:)' 'async' to allow actor-isolated conformances
20 | 	)
21 |
22 | 	init(progress: Binding<CGFloat>, options: Options?)
   |  `- note: mark the protocol requirement 'init(progress:options:)' 'async' to allow actor-isolated conformances
23 | }
24 |
[4/13] Compiling ProgressUI ProgressUI+Modifiers.swift
[5/14] Compiling ProgressUI ProgressUI.swift
[6/14] Compiling ProgressUI Options.swift
[7/14] Compiling ProgressUI ProgressUI+ViewModel.swift
[8/14] Compiling ProgressUI ProgressSize.swift
[9/14] Compiling ProgressUI Progressable.swift
[10/14] Compiling ProgressUI GrowDirection.swift
[11/14] Emitting module ProgressUI
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/CircularProgress.swift:17:24: warning: main actor-isolated property 'progress' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 11 | import Combine
 12 |
 13 | internal struct CircularProgress: View, BaseProgress {
    |                                         `- note: add '@preconcurrency' to the 'BaseProgress' conformance to defer isolation checking to run time
 14 | 	@EnvironmentObject private var vm: ProgressUI.ViewModel
 15 |
 16 | 	/// The main progress value, either bound or constant.
 17 | 	@Binding internal var progress: CGFloat
    |                        `- warning: main actor-isolated property 'progress' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 18 |
 19 | 	/// The options for Progress' configurations
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:12:6: note: requirement 'progress' declared here
10 | /// A protocol that provides common functionality for progress indicators
11 | internal protocol BaseProgress {
12 | 	var progress: CGFloat { get }
   |      `- note: requirement 'progress' declared here
13 | 	var options: Options { get }
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/CircularProgress.swift:20:15: warning: main actor-isolated property 'options' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 18 |
 19 | 	/// The options for Progress' configurations
 20 | 	internal var options: Options
    |               `- warning: main actor-isolated property 'options' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 21 |
 22 | 	/// The type used for dynamic coloring/status.
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:13:6: note: requirement 'options' declared here
11 | internal protocol BaseProgress {
12 | 	var progress: CGFloat { get }
13 | 	var options: Options { get }
   |      `- note: requirement 'options' declared here
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/CircularProgress.swift:44:11: warning: main actor-isolated initializer 'init(progress:options:statusType:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 42 | 	 ```
 43 | 	 */
 44 | 	internal init<Status: CaseIterable & Progressable>(
    |           |- warning: main actor-isolated initializer 'init(progress:options:statusType:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
    |           `- note: add 'nonisolated' to 'init(progress:options:statusType:)' to make this initializer not isolated to the actor
 45 | 		progress: Binding<CGFloat>,
 46 | 		options: Options? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:16:2: note: mark the protocol requirement 'init(progress:options:statusType:)' 'async' to allow actor-isolated conformances
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
15 |
16 | 	init<Status: CaseIterable & Progressable>(
   |  `- note: mark the protocol requirement 'init(progress:options:statusType:)' 'async' to allow actor-isolated conformances
17 | 		progress: Binding<CGFloat>,
18 | 		options: Options?,
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/CircularProgress.swift:68:11: warning: main actor-isolated initializer 'init(progress:options:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 66 | 	 ```
 67 | 	 */
 68 | 	internal init(
    |           |- warning: main actor-isolated initializer 'init(progress:options:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
    |           `- note: add 'nonisolated' to 'init(progress:options:)' to make this initializer not isolated to the actor
 69 | 		progress: Binding<CGFloat>,
 70 | 		options: Options? = nil
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:22:2: note: mark the protocol requirement 'init(progress:options:)' 'async' to allow actor-isolated conformances
20 | 	)
21 |
22 | 	init(progress: Binding<CGFloat>, options: Options?)
   |  `- note: mark the protocol requirement 'init(progress:options:)' 'async' to allow actor-isolated conformances
23 | }
24 |
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/LinearProgress.swift:15:24: warning: main actor-isolated property 'progress' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
  9 | import Combine
 10 |
 11 | internal struct LinearProgress: View, BaseProgress {
    |                                       `- note: add '@preconcurrency' to the 'BaseProgress' conformance to defer isolation checking to run time
 12 | 	@EnvironmentObject private var vm: ProgressUI.ViewModel
 13 |
 14 | 	/// The main progress value, either bound or constant.
 15 | 	@Binding internal var progress: CGFloat
    |                        `- warning: main actor-isolated property 'progress' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 16 |
 17 | 	/// The options for Progress' configurations
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:12:6: note: requirement 'progress' declared here
10 | /// A protocol that provides common functionality for progress indicators
11 | internal protocol BaseProgress {
12 | 	var progress: CGFloat { get }
   |      `- note: requirement 'progress' declared here
13 | 	var options: Options { get }
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/LinearProgress.swift:18:15: warning: main actor-isolated property 'options' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 16 |
 17 | 	/// The options for Progress' configurations
 18 | 	internal var options: Options
    |               `- warning: main actor-isolated property 'options' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 19 |
 20 | 	/// The type used for dynamic coloring/status.
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:13:6: note: requirement 'options' declared here
11 | internal protocol BaseProgress {
12 | 	var progress: CGFloat { get }
13 | 	var options: Options { get }
   |      `- note: requirement 'options' declared here
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/LinearProgress.swift:39:11: warning: main actor-isolated initializer 'init(progress:options:statusType:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 37 | 	 ```
 38 | 	 */
 39 | 	internal init<Status: CaseIterable & Progressable>(
    |           |- warning: main actor-isolated initializer 'init(progress:options:statusType:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
    |           `- note: add 'nonisolated' to 'init(progress:options:statusType:)' to make this initializer not isolated to the actor
 40 | 		progress: Binding<CGFloat>,
 41 | 		options: Options? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:16:2: note: mark the protocol requirement 'init(progress:options:statusType:)' 'async' to allow actor-isolated conformances
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
15 |
16 | 	init<Status: CaseIterable & Progressable>(
   |  `- note: mark the protocol requirement 'init(progress:options:statusType:)' 'async' to allow actor-isolated conformances
17 | 		progress: Binding<CGFloat>,
18 | 		options: Options?,
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/LinearProgress.swift:63:11: warning: main actor-isolated initializer 'init(progress:options:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 61 | 	 ```
 62 | 	 */
 63 | 	internal init(
    |           |- warning: main actor-isolated initializer 'init(progress:options:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
    |           `- note: add 'nonisolated' to 'init(progress:options:)' to make this initializer not isolated to the actor
 64 | 		progress: Binding<CGFloat>,
 65 | 		options: Options? = nil
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:22:2: note: mark the protocol requirement 'init(progress:options:)' 'async' to allow actor-isolated conformances
20 | 	)
21 |
22 | 	init(progress: Binding<CGFloat>, options: Options?)
   |  `- note: mark the protocol requirement 'init(progress:options:)' 'async' to allow actor-isolated conformances
23 | }
24 |
[12/14] Compiling ProgressUI BaseProgress.swift
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/CircularProgress.swift:17:24: warning: main actor-isolated property 'progress' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 11 | import Combine
 12 |
 13 | internal struct CircularProgress: View, BaseProgress {
    |                                         `- note: add '@preconcurrency' to the 'BaseProgress' conformance to defer isolation checking to run time
 14 | 	@EnvironmentObject private var vm: ProgressUI.ViewModel
 15 |
 16 | 	/// The main progress value, either bound or constant.
 17 | 	@Binding internal var progress: CGFloat
    |                        `- warning: main actor-isolated property 'progress' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 18 |
 19 | 	/// The options for Progress' configurations
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:12:6: note: requirement 'progress' declared here
10 | /// A protocol that provides common functionality for progress indicators
11 | internal protocol BaseProgress {
12 | 	var progress: CGFloat { get }
   |      `- note: requirement 'progress' declared here
13 | 	var options: Options { get }
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/CircularProgress.swift:20:15: warning: main actor-isolated property 'options' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 18 |
 19 | 	/// The options for Progress' configurations
 20 | 	internal var options: Options
    |               `- warning: main actor-isolated property 'options' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 21 |
 22 | 	/// The type used for dynamic coloring/status.
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:13:6: note: requirement 'options' declared here
11 | internal protocol BaseProgress {
12 | 	var progress: CGFloat { get }
13 | 	var options: Options { get }
   |      `- note: requirement 'options' declared here
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/CircularProgress.swift:44:11: warning: main actor-isolated initializer 'init(progress:options:statusType:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 42 | 	 ```
 43 | 	 */
 44 | 	internal init<Status: CaseIterable & Progressable>(
    |           |- warning: main actor-isolated initializer 'init(progress:options:statusType:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
    |           `- note: add 'nonisolated' to 'init(progress:options:statusType:)' to make this initializer not isolated to the actor
 45 | 		progress: Binding<CGFloat>,
 46 | 		options: Options? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:16:2: note: mark the protocol requirement 'init(progress:options:statusType:)' 'async' to allow actor-isolated conformances
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
15 |
16 | 	init<Status: CaseIterable & Progressable>(
   |  `- note: mark the protocol requirement 'init(progress:options:statusType:)' 'async' to allow actor-isolated conformances
17 | 		progress: Binding<CGFloat>,
18 | 		options: Options?,
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/CircularProgress.swift:68:11: warning: main actor-isolated initializer 'init(progress:options:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 66 | 	 ```
 67 | 	 */
 68 | 	internal init(
    |           |- warning: main actor-isolated initializer 'init(progress:options:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
    |           `- note: add 'nonisolated' to 'init(progress:options:)' to make this initializer not isolated to the actor
 69 | 		progress: Binding<CGFloat>,
 70 | 		options: Options? = nil
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:22:2: note: mark the protocol requirement 'init(progress:options:)' 'async' to allow actor-isolated conformances
20 | 	)
21 |
22 | 	init(progress: Binding<CGFloat>, options: Options?)
   |  `- note: mark the protocol requirement 'init(progress:options:)' 'async' to allow actor-isolated conformances
23 | }
24 |
[13/14] Compiling ProgressUI CircularProgress.swift
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/CircularProgress.swift:17:24: warning: main actor-isolated property 'progress' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 11 | import Combine
 12 |
 13 | internal struct CircularProgress: View, BaseProgress {
    |                                         `- note: add '@preconcurrency' to the 'BaseProgress' conformance to defer isolation checking to run time
 14 | 	@EnvironmentObject private var vm: ProgressUI.ViewModel
 15 |
 16 | 	/// The main progress value, either bound or constant.
 17 | 	@Binding internal var progress: CGFloat
    |                        `- warning: main actor-isolated property 'progress' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 18 |
 19 | 	/// The options for Progress' configurations
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:12:6: note: requirement 'progress' declared here
10 | /// A protocol that provides common functionality for progress indicators
11 | internal protocol BaseProgress {
12 | 	var progress: CGFloat { get }
   |      `- note: requirement 'progress' declared here
13 | 	var options: Options { get }
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/CircularProgress.swift:20:15: warning: main actor-isolated property 'options' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 18 |
 19 | 	/// The options for Progress' configurations
 20 | 	internal var options: Options
    |               `- warning: main actor-isolated property 'options' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 21 |
 22 | 	/// The type used for dynamic coloring/status.
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:13:6: note: requirement 'options' declared here
11 | internal protocol BaseProgress {
12 | 	var progress: CGFloat { get }
13 | 	var options: Options { get }
   |      `- note: requirement 'options' declared here
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/CircularProgress.swift:44:11: warning: main actor-isolated initializer 'init(progress:options:statusType:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 42 | 	 ```
 43 | 	 */
 44 | 	internal init<Status: CaseIterable & Progressable>(
    |           |- warning: main actor-isolated initializer 'init(progress:options:statusType:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
    |           `- note: add 'nonisolated' to 'init(progress:options:statusType:)' to make this initializer not isolated to the actor
 45 | 		progress: Binding<CGFloat>,
 46 | 		options: Options? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:16:2: note: mark the protocol requirement 'init(progress:options:statusType:)' 'async' to allow actor-isolated conformances
14 | 	var statusType: (any CaseIterableAndProgressable.Type)? { get }
15 |
16 | 	init<Status: CaseIterable & Progressable>(
   |  `- note: mark the protocol requirement 'init(progress:options:statusType:)' 'async' to allow actor-isolated conformances
17 | 		progress: Binding<CGFloat>,
18 | 		options: Options?,
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/CircularProgress.swift:68:11: warning: main actor-isolated initializer 'init(progress:options:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
 66 | 	 ```
 67 | 	 */
 68 | 	internal init(
    |           |- warning: main actor-isolated initializer 'init(progress:options:)' cannot be used to satisfy nonisolated requirement from protocol 'BaseProgress'; this is an error in the Swift 6 language mode
    |           `- note: add 'nonisolated' to 'init(progress:options:)' to make this initializer not isolated to the actor
 69 | 		progress: Binding<CGFloat>,
 70 | 		options: Options? = nil
/Users/admin/builder/spi-builder-workspace/Sources/ProgressUI/Components/BaseProgress.swift:22:2: note: mark the protocol requirement 'init(progress:options:)' 'async' to allow actor-isolated conformances
20 | 	)
21 |
22 | 	init(progress: Binding<CGFloat>, options: Options?)
   |  `- note: mark the protocol requirement 'init(progress:options:)' 'async' to allow actor-isolated conformances
23 | }
24 |
[14/14] Compiling ProgressUI Shape.swift
Build complete! (11.74s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ProgressUI",
  "name" : "ProgressUI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "ProgressUI",
      "targets" : [
        "ProgressUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ProgressUI",
      "module_type" : "SwiftTarget",
      "name" : "ProgressUI",
      "path" : "Sources/ProgressUI",
      "product_memberships" : [
        "ProgressUI"
      ],
      "sources" : [
        "Components/BaseProgress.swift",
        "Components/CircularProgress.swift",
        "Components/LinearProgress.swift",
        "Components/ProgressUI/ProgressUI+Modifiers.swift",
        "Components/ProgressUI/ProgressUI+ViewModel.swift",
        "Components/ProgressUI/ProgressUI.swift",
        "GrowDirection.swift",
        "Options.swift",
        "ProgressSize.swift",
        "Progressable.swift",
        "Shape.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
Done.