From 865c1c810c3b6cbafe97c858ba4ab83fdb9a0aad Mon Sep 17 00:00:00 2001 From: UriyDevyataev Date: Mon, 6 Apr 2026 12:26:57 +0300 Subject: [PATCH 1/6] rename readme file --- Project.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.swift b/Project.swift index 39cd85f..641e0e0 100644 --- a/Project.swift +++ b/Project.swift @@ -12,5 +12,5 @@ let project = Project( ] ) ], - additionalFiles: ["README.MD", "Package.swift", "Fastis.podspec"] + additionalFiles: ["README.md", "Package.swift", "Fastis.podspec"] ) From 24112468658567db437f36dc6f0f77c9e75b49c0 Mon Sep 17 00:00:00 2001 From: UriyDevyataev Date: Mon, 6 Apr 2026 14:11:58 +0300 Subject: [PATCH 2/6] tests --- .github/workflows/build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d5895cf..3162db6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,10 +8,13 @@ on: jobs: build: - - runs-on: macos-latest + runs-on: macos-14 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - name: Select Xcode + uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: "15.4" - name: Build run: swift build -v -Xswiftc "-sdk" -Xswiftc "`xcrun --sdk iphonesimulator --show-sdk-path`" -Xswiftc "-target" -Xswiftc "x86_64-apple-ios13.0-simulator" From 192f70c9d489b2d160f20a16733dff1625119bce Mon Sep 17 00:00:00 2001 From: UriyDevyataev Date: Mon, 6 Apr 2026 14:17:08 +0300 Subject: [PATCH 3/6] build --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3162db6..97d9736 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,4 +17,10 @@ jobs: with: xcode-version: "15.4" - name: Build - run: swift build -v -Xswiftc "-sdk" -Xswiftc "`xcrun --sdk iphonesimulator --show-sdk-path`" -Xswiftc "-target" -Xswiftc "x86_64-apple-ios13.0-simulator" + run: | + SIMULATOR_ARCH="$(uname -m)" + swift build -v \ + -Xswiftc "-sdk" \ + -Xswiftc "$(xcrun --sdk iphonesimulator --show-sdk-path)" \ + -Xswiftc "-target" \ + -Xswiftc "${SIMULATOR_ARCH}-apple-ios13.0-simulator" From 019d506d9465e997faa5b96bcd1065c6321ce398 Mon Sep 17 00:00:00 2001 From: UriyDevyataev Date: Mon, 6 Apr 2026 14:35:31 +0300 Subject: [PATCH 4/6] build --- .github/workflows/build.yml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 97d9736..e914723 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,19 +8,9 @@ on: jobs: build: - runs-on: macos-14 + runs-on: macos-latest steps: - - uses: actions/checkout@v4 - - name: Select Xcode - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: "15.4" + - uses: actions/checkout@v3 - name: Build - run: | - SIMULATOR_ARCH="$(uname -m)" - swift build -v \ - -Xswiftc "-sdk" \ - -Xswiftc "$(xcrun --sdk iphonesimulator --show-sdk-path)" \ - -Xswiftc "-target" \ - -Xswiftc "${SIMULATOR_ARCH}-apple-ios13.0-simulator" + run: swift build -v -Xswiftc "-sdk" -Xswiftc "`xcrun --sdk iphonesimulator --show-sdk-path`" -Xswiftc "-target" -Xswiftc "x86_64-apple-ios13.0-simulator" From 31c6cdbb029c90c96a0c6052d1ac9fb33109b888 Mon Sep 17 00:00:00 2001 From: UriyDevyataev Date: Mon, 6 Apr 2026 14:42:23 +0300 Subject: [PATCH 5/6] build --- .github/workflows/build.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e914723..a839026 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,4 +13,13 @@ jobs: steps: - uses: actions/checkout@v3 - name: Build - run: swift build -v -Xswiftc "-sdk" -Xswiftc "`xcrun --sdk iphonesimulator --show-sdk-path`" -Xswiftc "-target" -Xswiftc "x86_64-apple-ios13.0-simulator" + run: | + SDK_PATH="$(xcrun --sdk iphonesimulator --show-sdk-path)" + SIMULATOR_ARCH="$(uname -m)" + TARGET_TRIPLE="${SIMULATOR_ARCH}-apple-ios13.0-simulator" + + swift build -v \ + -Xswiftc -sdk -Xswiftc "$SDK_PATH" \ + -Xswiftc -target -Xswiftc "$TARGET_TRIPLE" \ + -Xcc -isysroot -Xcc "$SDK_PATH" \ + -Xcc -target -Xcc "$TARGET_TRIPLE" From 8da37dc5ce0e582da5cbb7df20050a878d0d8495 Mon Sep 17 00:00:00 2001 From: UriyDevyataev Date: Wed, 8 Apr 2026 13:51:25 +0300 Subject: [PATCH 6/6] swiftlint --- Sources/Views/DayCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Views/DayCell.swift b/Sources/Views/DayCell.swift index d53bb33..712ec9f 100644 --- a/Sources/Views/DayCell.swift +++ b/Sources/Views/DayCell.swift @@ -113,7 +113,7 @@ final class DayCell: JTACDayCell { self.rangeViewLeftAnchorToCenterConstraint = self.backgroundRangeView.leftAnchor.constraint(equalTo: self.contentView.centerXAnchor) self.rangeViewRightAnchorToSuperviewConstraint = self.backgroundRangeView.rightAnchor - .constraint(equalTo:self.contentView.rightAnchor) + .constraint(equalTo: self.contentView.rightAnchor) self.rangeViewRightAnchorToCenterConstraint = self.backgroundRangeView.rightAnchor .constraint(equalTo: self.contentView.centerXAnchor)