Skip to content

Commit

Permalink
Released 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KelvinJin committed Sep 20, 2020
1 parent cc53682 commit c15687d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,3 @@ script:
- if [ $POD_LINT == "YES" ]; then
pod lib lint;
fi

# Test CocoaPods quality scores are met
- ruby Tests/CheckCocoaPodsQualityIndexes.rb AnimatedCollectionViewLayout
4 changes: 2 additions & 2 deletions AnimatedCollectionViewLayout.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AnimatedCollectionViewLayout'
s.version = '1.0.1'
s.version = '1.1.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'A UICollectionViewLayout subclass that adds custom
transitions/animations to the UICollectionView'
Expand All @@ -23,7 +23,7 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/KelvinJin/AnimatedCollectionViewLayout'
s.authors = { 'Jin Wang' => '[email protected]' }
s.source = { :git => 'https://github.com/KelvinJin/AnimatedCollectionViewLayout.git', :tag => s.version }
s.ios.deployment_target = '8.0'
s.ios.deployment_target = '9.0'
s.source_files = 'Sources/**/*.swift'
s.swift_versions = ['5.0', '5.1']
end
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ All notable changes to this project will be documented in this file.

### Removed

## 1.1.0

Released on 2020-09-20

### Changed
+ Fixed an issue where on iOS 14, changing contentView's frame property won't effect. This applies to ParallaxAttributesAnimator and CubeAttributesAnimator.
+ Updated the projects to use Xcode 12.

### Removed
+ Dropped iOS 8 support.

## 1.0.1
### Changed
+ Fixed an issue where UIKit will reset position but not anchor point of a content view.
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription
let package = Package(
name: "AnimatedCollectionViewLayout",
platforms: [
.iOS(.v8)
.iOS(.v9)
],
products: [
.library(
Expand Down

0 comments on commit c15687d

Please sign in to comment.