Skip to content

Commit

Permalink
2.1.0 #minor
Browse files Browse the repository at this point in the history
  • Loading branch information
fermoya committed Mar 5, 2021
1 parent 0625c75 commit 6976975
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,6 @@ jobs:
- uses: actions/checkout@v2

- name: Run script
env:
SKIP_CATALYST: false
run: ./scripts/build_platforms.sh
12 changes: 11 additions & 1 deletion release_description.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### Features
- New `interactive(opacity:)` to add an interactive fade in/out effect to the scroll
- New `interactive(scale:)` and `interactive(rotation:)`
- Interactive effects can be now combined
- CI/CD to build `legacy-projects` branch against _iOS 12_

### Fixes
- #157 Avoid animation while dragging
- Items not scrolling in _iOS 13_
- #193 Transitions are jumpy if fast

### Deprecations
- `rotation3D()` in favor of `interactive(rotation:)`
- `interactive(_:)` in favor of `interactive(scale:)`
4 changes: 3 additions & 1 deletion scripts/build_platforms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ gem install xcpretty
SCHEMES=( SwiftUIPager_Catalyst SwiftUIPager_macOS SwiftUIPager_iOS SwiftUIPager_watchOS SwiftUIPager_tvOS )
PLATFORMS=( "platform=macOS,variant=Mac Catalyst" "platform=macOS" "generic/platform=iOS" "generic/platform=watchOS" "generic/platform=tvOS" )
if $SKIP_CATALYST; then
PLATFORMS = ( "platform=macOS" "generic/platform=iOS" "generic/platform=watchOS" "generic/platform=tvOS" )
echo "** Skiping Building for Catalyst **"
SCHEMES=( SwiftUIPager_macOS SwiftUIPager_iOS SwiftUIPager_watchOS SwiftUIPager_tvOS )
PLATFORMS=( "platform=macOS" "generic/platform=iOS" "generic/platform=watchOS" "generic/platform=tvOS" )
fi

rm -rd $DIR
Expand Down

0 comments on commit 6976975

Please sign in to comment.