Skip to content

Commit

Permalink
Release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-revetria committed Oct 4, 2016
1 parent 9e83f9c commit 0157f1e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 15 deletions.
1 change: 1 addition & 0 deletions .swift-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

### master branch

### [Swift 3 Support](https://github.com/xmartlabs/XLActionController/releases/tag/3.0.0)

* Swift 3 and Xcode 8 support, [PR #24](https://github.com/xmartlabs/XLActionController/pull/24)

### [2.1.0](https://github.com/xmartlabs/XLActionController/releases/tag/2.1.0)

* **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).
Expand Down
28 changes: 15 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,8 @@ After the dismissal animation completes, `dismissView` calls `onDidDismissView`
## Requirements

* iOS 8.0+
* Xcode 7.3+
* Xcode 8.0+
* Swift 3

## Getting involved

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

# This will install just the library's core, won't include any examples
pod 'XLActionController'

# Uncomment depending on the examples that you want to install
#pod 'XLActionController/Periscope'
#pod 'XLActionController/Skype'
#pod 'XLActionController/Spotify'
#pod 'XLActionController/Tweetbot'
#pod 'XLActionController/Twitter'
#pod 'XLActionController/Youtube'

target '<Your App Target>' do
# This will install just the library's core, won't include any examples
pod 'XLActionController'

# Uncomment depending on the examples that you want to install
#pod 'XLActionController/Periscope'
#pod 'XLActionController/Skype'
#pod 'XLActionController/Spotify'
#pod 'XLActionController/Tweetbot'
#pod 'XLActionController/Twitter'
#pod 'XLActionController/Youtube'
end
```

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

```
github "xmartlabs/XLActionController" ~> 2.0
github "xmartlabs/XLActionController" ~> 3.0
```

### Manually as Embedded Framework
Expand Down
4 changes: 2 additions & 2 deletions XLActionController.podspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Pod::Spec.new do |spec|
spec.name = 'XLActionController'
spec.version = '2.1.0'
spec.version = '3.0.0'
spec.license = 'MIT'
spec.summary = 'Fully customizable and extensible action sheet controller written in Swift 2'
spec.summary = 'Fully customizable and extensible action sheet controller written in Swift 3'
spec.homepage = 'https://github.com/xmartlabs/XLActionController'
spec.social_media_url = 'http://twitter.com/xmartlabs'
spec.authors = { 'Miguel Revetria' => '[email protected]', 'Martin Barreto' => '[email protected]' }
Expand Down

0 comments on commit 0157f1e

Please sign in to comment.