From 10ee7efd623cecc1084f2867f70ee41e452d9847 Mon Sep 17 00:00:00 2001 From: CooperRS Date: Sun, 20 Nov 2016 12:25:25 +0100 Subject: [PATCH] Bump version to 1.2.0 --- CHANGELOG.md | 6 ++++++ README.md | 2 +- RMActionController.podspec | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2bcec1..9a9b94c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index 416b8bd..2de888d 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/RMActionController.podspec b/RMActionController.podspec index b9bb408..4a04c1b 100644 --- a/RMActionController.podspec +++ b/RMActionController.podspec @@ -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" @@ -11,7 +11,7 @@ Pod::Spec.new do |s| s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { "Roland Moers" => "rm@cooperrs.de" } - 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'