3 Commits

Author SHA1 Message Date
Christos Koninis 2906c33e31 Increased minimum iOS deployment target to 9.0. Fixes #73 (#74) 2021-03-29 13:08:11 +01:00
Hamza Ghazouani cd0a333e34 Update README.md 2020-05-30 15:28:27 +02:00
Hamza Ghazouani 35d709a4bf Update README.md 2020-05-30 15:27:39 +02:00
2 changed files with 8 additions and 12 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ s.author = { 'Hamza Ghazouani' => 'hamza.ghazouani@gmail.com' }
s.source = { :git => 'https://github.com/HamzaGhazouani/HGCircularSlider.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/GhazouaniHamza'
s.ios.deployment_target = '8.0'
s.ios.deployment_target = '9.0'
s.source_files = 'HGCircularSlider/Classes/**/*'
+7 -11
View File
@@ -27,22 +27,19 @@ To run the example project, clone the repo, and run `pod install` from the Examp
## Requirements
- iOS 9.0+
- Xcode 10.0
- Xcode 11.4
## Installation
HGCircularSlider is available through [CocoaPods](http://cocoapods.org). To install
HGCircularSlider is also available through [Swift Package Manager](https://swift.org/package-manager/)
Follow this [doc](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app?language=swift).
HGCircularSlider is also available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:
``` ruby
# Swift 3.1 - Xcode 8.3
pod 'HGCircularSlider', '~> 2.0.0'
# Swift 3 - Xcode 8
pod 'HGCircularSlider', '~> 1.0.3'
# Swift 2.2 - Xcode 7.3.1 (Checkout Swift2_Xcode7.3 branche)
pod 'HGCircularSlider', '~> 0.1.2'
pod 'HGCircularSlider', '~> 2.2.1'
```
HGCircularSlider is also available through [Carthage](https://github.com/Carthage/Carthage). To install
@@ -50,7 +47,6 @@ it, simply add the following line to your Cartfile:
``` ruby
# Swift 3.1 - Xcode 8
github "HamzaGhazouani/HGCircularSlider"
```