diff --git a/CHANGELOG.md b/CHANGELOG.md index f2a1f1e..e471aba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ RMPickerViewController adheres to [Semantic Versioning](http://semver.org/). --- +## [2.3.0](https://github.com/CooperRS/RMPickerViewController/releases/tag/2.3.0) + +* Updated to RMActionController 1.3.0 + ## [2.2.1](https://github.com/CooperRS/RMPickerViewController/releases/tag/2.2.1) * Fix RMPickerViewController.podspec diff --git a/Extern/RMActionController b/Extern/RMActionController index d8e64e1..930d2ed 160000 --- a/Extern/RMActionController +++ b/Extern/RMActionController @@ -1 +1 @@ -Subproject commit d8e64e14449b476a443202f43d0d2a6e2eb33030 +Subproject commit 930d2edb0f66eb551abaa5945c5efb0a98a68611 diff --git a/README.md b/README.md index ae21f71..83d43ac 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ If you want to run the demo project do not forget to initialize submodules. ## Installation (CocoaPods) ```ruby platform :ios, '8.0' -pod "RMPickerViewController", "~> 2.2.1" +pod "RMPickerViewController", "~> 2.3.0" ``` ## Usage diff --git a/RMPickerViewController.podspec b/RMPickerViewController.podspec index cc8cf32..d38e0cd 100644 --- a/RMPickerViewController.podspec +++ b/RMPickerViewController.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RMPickerViewController" - s.version = "2.2.1" + s.version = "2.3.0" s.platform = :ios, "8.0" s.summary = "This is an iOS control for selecting something using UIPickerView in a UIAlertController like fashion" s.description = "This framework allows you to pick something with a picker presented as an action sheet. In addition, it allows you to add actions arround the presented picker which behave like a button and can be tapped by the user. The result looks very much like an UIActionSheet or UIAlertController with a UIPickerView and some UIActions attached." @@ -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/RMPickerViewController.git", :tag => "2.2.1" } + s.source = { :git => "https://github.com/CooperRS/RMPickerViewController.git", :tag => "2.3.0" } s.source_files = 'RMPickerViewController/*.{h,m}' s.requires_arc = true