Skip to content

Commit c15687d

Browse files
committed
Released 1.1.0
1 parent cc53682 commit c15687d

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,3 @@ script:
3131
- if [ $POD_LINT == "YES" ]; then
3232
pod lib lint;
3333
fi
34-
35-
# Test CocoaPods quality scores are met
36-
- ruby Tests/CheckCocoaPodsQualityIndexes.rb AnimatedCollectionViewLayout

AnimatedCollectionViewLayout.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'AnimatedCollectionViewLayout'
3-
s.version = '1.0.1'
3+
s.version = '1.1.0'
44
s.license = { :type => 'MIT', :file => 'LICENSE' }
55
s.summary = 'A UICollectionViewLayout subclass that adds custom
66
transitions/animations to the UICollectionView'
@@ -23,7 +23,7 @@ Pod::Spec.new do |s|
2323
s.homepage = 'https://github.com/KelvinJin/AnimatedCollectionViewLayout'
2424
s.authors = { 'Jin Wang' => 'jinw1990@gmail.com' }
2525
s.source = { :git => 'https://github.com/KelvinJin/AnimatedCollectionViewLayout.git', :tag => s.version }
26-
s.ios.deployment_target = '8.0'
26+
s.ios.deployment_target = '9.0'
2727
s.source_files = 'Sources/**/*.swift'
2828
s.swift_versions = ['5.0', '5.1']
2929
end

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ All notable changes to this project will be documented in this file.
99

1010
### Removed
1111

12+
## 1.1.0
13+
14+
Released on 2020-09-20
15+
16+
### Changed
17+
+ Fixed an issue where on iOS 14, changing contentView's frame property won't effect. This applies to ParallaxAttributesAnimator and CubeAttributesAnimator.
18+
+ Updated the projects to use Xcode 12.
19+
20+
### Removed
21+
+ Dropped iOS 8 support.
22+
1223
## 1.0.1
1324
### Changed
1425
+ Fixed an issue where UIKit will reset position but not anchor point of a content view.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55
let package = Package(
66
name: "AnimatedCollectionViewLayout",
77
platforms: [
8-
.iOS(.v8)
8+
.iOS(.v9)
99
],
1010
products: [
1111
.library(

0 commit comments

Comments
 (0)