Skip to content

Commit

Permalink
Bump version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CooperRS committed Nov 20, 2016
1 parent 76b8efb commit 10ee7ef
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ RMActionController adheres to [Semantic Versioning](http://semver.org/).

---

## [1.2.0](https://github.com/CooperRS/RMActionController/releases/tag/1.2.0)

* Add RMImageAction and RMScrollableGroupedAction
* These actions allows to build an Apple share sheet like user interface
* Splits up code into multiple files to make everything more readable

## [1.1.0](https://github.com/CooperRS/RMActionController/releases/tag/1.1.0)

* Swift 3 compatible (required an API change, see Migration for more information on that)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RMActionController supports automatic rotation between portrait and landscape.
## Installation (CocoaPods)
```ruby
platform :ios, '8.0'
pod "RMActionController", "~> 1.1.0"
pod "RMActionController", "~> 1.2.0"
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions RMActionController.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "RMActionController"
s.version = "1.1.0"
s.version = "1.2.0"
s.platform = :ios, '8.0'
s.summary = "This is an iOS control for presenting any UIView in UIActionSheet/UIActionController like manner"

Expand All @@ -11,7 +11,7 @@ Pod::Spec.new do |s|
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Roland Moers" => "[email protected]" }

s.source = { :git => "https://github.com/CooperRS/RMActionController.git", :tag => "1.1.0" }
s.source = { :git => "https://github.com/CooperRS/RMActionController.git", :tag => "1.2.0" }
s.source_files = 'RMActionController/**/*.{h, m}'
s.public_header_files = 'RMActionController/RMActionController.h', 'RMActionController/Actions/RMAction.h', 'RMActionController/Actions/RMImageAction.h', 'RMActionController/Grouping Actions/RMGroupedAction.h', 'RMActionController/Grouping Actions/RMScrollableGroupedAction.h'

Expand Down

0 comments on commit 10ee7ef

Please sign in to comment.