Skip to content

Commit 0157f1e

Browse files
committed
Release 3.0.0
1 parent 9e83f9c commit 0157f1e

File tree

4 files changed

+22
-15
lines changed

4 files changed

+22
-15
lines changed

.swift-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0

CHANGELOG.md

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

55
### master branch
66

7+
### [Swift 3 Support](https://github.com/xmartlabs/XLActionController/releases/tag/3.0.0)
8+
9+
* Swift 3 and Xcode 8 support, [PR #24](https://github.com/xmartlabs/XLActionController/pull/24)
10+
711
### [2.1.0](https://github.com/xmartlabs/XLActionController/releases/tag/2.1.0)
812

913
* **Breaking change**: `actionTitleLabelConstraintToContainer` and `actionTitleLabelConstraintToImageView` was removed from `ActionCell` class. You must delete these outlets from your xib files, [PR #23](https://github.com/xmartlabs/XLActionController/pull/23).

README.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,8 @@ After the dismissal animation completes, `dismissView` calls `onDidDismissView`
385385
## Requirements
386386

387387
* iOS 8.0+
388-
* Xcode 7.3+
388+
* Xcode 8.0+
389+
* Swift 3
389390

390391
## Getting involved
391392

@@ -410,17 +411,18 @@ source 'https://github.com/CocoaPods/Specs.git'
410411
platform :ios, '8.0'
411412
use_frameworks!
412413

413-
# This will install just the library's core, won't include any examples
414-
pod 'XLActionController'
415-
416-
# Uncomment depending on the examples that you want to install
417-
#pod 'XLActionController/Periscope'
418-
#pod 'XLActionController/Skype'
419-
#pod 'XLActionController/Spotify'
420-
#pod 'XLActionController/Tweetbot'
421-
#pod 'XLActionController/Twitter'
422-
#pod 'XLActionController/Youtube'
423-
414+
target '<Your App Target>' do
415+
# This will install just the library's core, won't include any examples
416+
pod 'XLActionController'
417+
418+
# Uncomment depending on the examples that you want to install
419+
#pod 'XLActionController/Periscope'
420+
#pod 'XLActionController/Skype'
421+
#pod 'XLActionController/Spotify'
422+
#pod 'XLActionController/Tweetbot'
423+
#pod 'XLActionController/Twitter'
424+
#pod 'XLActionController/Youtube'
425+
end
424426
```
425427

426428
Then run the following command:
@@ -437,7 +439,7 @@ dependency manager for Cocoa.
437439
Specify XLActionController into your project's Carthage:
438440

439441
```
440-
github "xmartlabs/XLActionController" ~> 2.0
442+
github "xmartlabs/XLActionController" ~> 3.0
441443
```
442444

443445
### Manually as Embedded Framework

XLActionController.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'XLActionController'
3-
spec.version = '2.1.0'
3+
spec.version = '3.0.0'
44
spec.license = 'MIT'
5-
spec.summary = 'Fully customizable and extensible action sheet controller written in Swift 2'
5+
spec.summary = 'Fully customizable and extensible action sheet controller written in Swift 3'
66
spec.homepage = 'https://github.com/xmartlabs/XLActionController'
77
spec.social_media_url = 'http://twitter.com/xmartlabs'
88
spec.authors = { 'Miguel Revetria' => 'miguel@xmartlabs.com', 'Martin Barreto' => 'martin@xmartlabs.com' }

0 commit comments

Comments
 (0)