Skip to content

Commit

Permalink
Patch 3.0.2
Browse files Browse the repository at this point in the history
fix:
- Fixed a problem with tests that cannot be performed (#152)
  • Loading branch information
FulcrumOne authored Nov 4, 2024
1 parent ce72aa9 commit c94c9a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,5 @@ jobs:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
run: xcodebuild test -scheme MijickPopups -destination 'platform=iOS Simulator,OS=18.0,name=iPhone 16 Pro'
4 changes: 2 additions & 2 deletions MijickPopups.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ Pod::Spec.new do |s|
s.name = 'MijickPopups'
s.summary = 'Popups, popovers, sheets, alerts, toasts, banners, (...) presentation made simple. Written with and for SwiftUI.'
s.description = <<-DESC
MijickPopups is a free and open-source library dedicated for SwiftUI that makes the process of presenting popups easier and much cleaner.
MijickPopups solves two seemingly contradictory problems - to allow developers to create fully customizable popup, and to make the process as simple as possible.
DESC

s.version = '3.0.1'
s.version = '3.0.2'
s.ios.deployment_target = '14.0'
s.osx.deployment_target = '12.0'
s.tvos.deployment_target = '15.0'
Expand Down
2 changes: 1 addition & 1 deletion Sources/Internal/View Models/ViewModel+VerticalStack.swift
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ private extension VM.VerticalStack {
}

// MARK: Attributes
private extension VM.VerticalStack {
extension VM.VerticalStack {
var stackScaleFactor: CGFloat { 0.025 }
var stackOverlayFactor: CGFloat { 0.1 }
var maxStackOverlayFactor: CGFloat { 0.48 }
Expand Down

0 comments on commit c94c9a1

Please sign in to comment.