The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build Colorizer, reference main (8e9747), with Swift 6.0 for macOS (SPM) on 21 May 2025 07:33:51 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.61.6
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/DariuszGulbicki/Colorizer.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/DariuszGulbicki/Colorizer
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 8e9747f Merge pull request #7 from DariuszGulbicki/readme_update
Cloned https://github.com/DariuszGulbicki/Colorizer.git
Revision (git rev-parse @):
8e9747fc55861a2969c721967f4a84b95ae5f716
SUCCESS checkout https://github.com/DariuszGulbicki/Colorizer.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/DariuszGulbicki/Colorizer.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/7] Write sources
[1/7] Write Colorizer-Examples-entitlement.plist
[3/7] Write swift-version-5BDAB9E9C0126B9D.txt
[5/11] Emitting module Colorizer
[6/11] Compiling Colorizer StringEffects.swift
[7/11] Compiling Colorizer EffectEscapeCode.swift
[8/11] Compiling Colorizer Colorizer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Colorizer/Colorizer.swift:9:29: error: 'replacing(_:with:maxReplacements:)' is only available in macOS 13.0 or newer
  1 | public struct Colorizer {
    |               `- note: add @available attribute to enclosing struct
  2 |
  3 |     private let codes: [String:EffectEscapeCode] = EffectEscapeCode.getAsDict()
  4 |     public var template = "&(@name)";
  5 |
  6 |     public func format(_ text: String) -> String {
    |                 `- note: add @available attribute to enclosing instance method
  7 |         var result = text
  8 |         for (name, code) in codes {
  9 |             result = result.replacing(template.replacing("@name", with: name), with: code.rawValue)
    |                             |- error: 'replacing(_:with:maxReplacements:)' is only available in macOS 13.0 or newer
    |                             `- note: add 'if #available' version check
 10 |         }
 11 |         return result
/Users/admin/builder/spi-builder-workspace/Sources/Colorizer/Colorizer.swift:9:48: error: 'replacing(_:with:maxReplacements:)' is only available in macOS 13.0 or newer
  1 | public struct Colorizer {
    |               `- note: add @available attribute to enclosing struct
  2 |
  3 |     private let codes: [String:EffectEscapeCode] = EffectEscapeCode.getAsDict()
  4 |     public var template = "&(@name)";
  5 |
  6 |     public func format(_ text: String) -> String {
    |                 `- note: add @available attribute to enclosing instance method
  7 |         var result = text
  8 |         for (name, code) in codes {
  9 |             result = result.replacing(template.replacing("@name", with: name), with: code.rawValue)
    |                                                |- error: 'replacing(_:with:maxReplacements:)' is only available in macOS 13.0 or newer
    |                                                `- note: add 'if #available' version check
 10 |         }
 11 |         return result
BUILD FAILURE 6.0 macosSpm