From fff93554541c73cf0747334547e98c2aa62bfb8e Mon Sep 17 00:00:00 2001 From: Roman Podymov Date: Mon, 24 Jun 2024 23:03:07 +0200 Subject: [PATCH 1/5] Sendable --- Sources/BigNumber/Swift-Big-Number-Core.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/BigNumber/Swift-Big-Number-Core.swift b/Sources/BigNumber/Swift-Big-Number-Core.swift index 944493c..79ed02e 100644 --- a/Sources/BigNumber/Swift-Big-Number-Core.swift +++ b/Sources/BigNumber/Swift-Big-Number-Core.swift @@ -174,7 +174,8 @@ public struct BInt: SignedNumeric, // Implies Numeric, Equatable, ExpressibleByIntegerLiteral BinaryInteger, // Implies Hashable, CustomStringConvertible, Strideable, Comparable ExpressibleByFloatLiteral, - Codable + Codable, + Sendable { // // From a9873f480b1d719cbd28be642a2e57ac556fa315 Mon Sep 17 00:00:00 2001 From: Roman Podymov Date: Mon, 24 Jun 2024 23:04:20 +0200 Subject: [PATCH 2/5] More Sendable --- Sources/BigNumber/Swift-Big-Number-Core.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/BigNumber/Swift-Big-Number-Core.swift b/Sources/BigNumber/Swift-Big-Number-Core.swift index 79ed02e..e90e579 100644 --- a/Sources/BigNumber/Swift-Big-Number-Core.swift +++ b/Sources/BigNumber/Swift-Big-Number-Core.swift @@ -2230,7 +2230,8 @@ public struct BDouble: SignedNumeric, Comparable, Hashable, - Codable + Codable, + Sendable { // // From ead4024176dffd26ebc75a0ff6a11235701b7525 Mon Sep 17 00:00:00 2001 From: Roman Podymov Date: Tue, 25 Jun 2024 10:10:42 +0200 Subject: [PATCH 3/5] Update build.yml --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d4c8ab7..8b96d83 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,9 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Select Xcode - run: sudo xcode-select -s /Applications/Xcode_14.0.app + uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: latest-stable - name: Build and Test SPM run: swift test -v - name: Build and Test CocoaPods From 4c3393ed5d74680c205349934ea54cce2935701e Mon Sep 17 00:00:00 2001 From: Roman Podymov Date: Thu, 27 Jun 2024 10:10:27 +0200 Subject: [PATCH 4/5] Revert GitHub actions --- .github/workflows/build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8b96d83..d4c8ab7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,9 +11,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Select Xcode - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: latest-stable + run: sudo xcode-select -s /Applications/Xcode_14.0.app - name: Build and Test SPM run: swift test -v - name: Build and Test CocoaPods From 1feebc32b363e124f7b753191c5d749357de8f14 Mon Sep 17 00:00:00 2001 From: Roman Podymov Date: Thu, 27 Jun 2024 10:12:55 +0200 Subject: [PATCH 5/5] Xcode 15 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d4c8ab7..6daccc6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Select Xcode - run: sudo xcode-select -s /Applications/Xcode_14.0.app + run: sudo xcode-select -s /Applications/Xcode_15.0.app - name: Build and Test SPM run: swift test -v - name: Build and Test CocoaPods