Skip to content

Commit 952f9ff

Browse files
committed
Update readme.
1 parent 42f9156 commit 952f9ff

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

README.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@ A Swift collection view inspired by Airbnb.
1616

1717
## Requirements
1818

19-
With the version 1.0.5 deployment target set as 9.0 and before this version all versions are
20-
available with 8.0+
21-
2219
| ASCollectionView Version | Minimum iOS Target | Swift Version |
2320
|:--------------------:|:---------------------------:|:---------------------------:|
21+
| 1.1.1 | 10.0 | 5 |
2422
| 1.1.0 | 9.0 | 4.2 |
2523
| 1.0.9 | 9.0 | 4.1 |
2624
| 1.0.8 | 9.0 | 4.0 |
@@ -37,11 +35,11 @@ $ gem install cocoapods
3735
To integrate ASCollectionView into your Xcode project using CocoaPods, specify it in your Podfile:
3836
```
3937
source 'https://github.com/CocoaPods/Specs.git'
40-
platform :ios, '9.0'
38+
platform :ios, '10.0'
4139
use_frameworks!
4240
4341
target '<Your Target Name>' do
44-
pod 'ASCollectionView', '1.1.0'
42+
pod 'ASCollectionView', '1.1.1'
4543
end
4644
```
4745
Then, run the following command:
@@ -63,11 +61,21 @@ brew install carthage
6361
To integrate ASCollectionView into your Xcode project using Carthage, specify it in your Cartfile:
6462

6563
```
66-
github "abdullahselek/ASCollectionView" ~> 1.1.0
64+
github "abdullahselek/ASCollectionView" ~> 1.1.1
6765
```
6866

6967
Run carthage update to build the framework and drag the built ASCollectionView.framework into your Xcode project.
7068

69+
## Swift Package Manager
70+
71+
Modify your Package.swift file to include the following dependency:
72+
73+
```
74+
.package(url: "https://github.com/abdullahselek/ASCollectionView.git", from: "1.1.1")
75+
```
76+
77+
Run `swift package resolve`
78+
7179
## Example Usage
7280

7381
There is a sample viewcontroller inside demo folder and I added some sample code below.

0 commit comments

Comments
 (0)