From eb8c89021d99946bd227559515d9b9a7e6915cfc Mon Sep 17 00:00:00 2001 From: Harry Tran Date: Fri, 22 Dec 2023 16:06:35 +0700 Subject: [PATCH] Update README and podspec --- README.md | 12 +++++------- Refreshable.podspec | 2 +- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index bf1b90b..a63e539 100644 --- a/README.md +++ b/README.md @@ -3,16 +3,14 @@ [![License](https://img.shields.io/cocoapods/l/Refreshable.svg?style=flat)](http://cocoapods.org/pods/Refreshable) [![Platform](https://img.shields.io/cocoapods/p/Refreshable.svg?style=flat)](http://cocoapods.org/pods/Refreshable) ![Language](https://img.shields.io/badge/Language-%20swift%20%20-blue.svg) -[![Build Status](https://travis-ci.org/hoangtaiki/Refreshable.svg)](https://travis-ci.org/hoangtaiki/Refreshable) Refreshable is a component that give pull to refresh and load more (infinite scrolling) feature for UIScrollView. By extension to UIScrollView, you can easily add features for any subclass of UIScrollView. Refreshable is developed to you can easily customize its UI style. ## Requirements -- Xcode 9 or later -- iOS 9.0 or later -- ARC -- Swift 4.0 or later +- Xcode 12 or later +- iOS 13.0 or later +- Swift 5.0 or later ## Features @@ -27,7 +25,7 @@ Refreshable is a component that give pull to refresh and load more (infinite scr Install with [CocoaPods](http://cocoapods.org) by adding the following to your `Podfile`: ``` -platform :ios, '9.0' +platform :ios, '13.0' use_frameworks! pod 'Refreshable' ``` @@ -38,7 +36,7 @@ Install with [Swift Package Manager](https://github.com/apple/swift-package-mana ```swift dependencies: [ - .package(url: "https://github.com/hoangtaiki/Refreshable", from: "1.0.0"), + .package(url: "https://github.com/hoangtaiki/Refreshable", from: "1.3.0"), ], ``` diff --git a/Refreshable.podspec b/Refreshable.podspec index 6f3b51f..5fdc974 100644 --- a/Refreshable.podspec +++ b/Refreshable.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Refreshable' - s.version = '1.2.0' + s.version = '1.3.0' s.license = 'MIT' s.summary = 'Pull to refresh and load more function for UIScrollView'