diff --git a/CHANGELOG.md b/CHANGELOG.md index e471aba..2e1882f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ RMPickerViewController adheres to [Semantic Versioning](http://semver.org/). --- +## [2.3.1](https://github.com/CooperRS/RMPickerViewController/releases/tag/2.3.1) + +* Updated to RMActionController 1.3.1 + * Add support for iOS 11 GM + * Add support for iPhone X +* Xcode 9 is now required for building + ## [2.3.0](https://github.com/CooperRS/RMPickerViewController/releases/tag/2.3.0) * Updated to RMActionController 1.3.0 @@ -39,4 +46,4 @@ RMPickerViewController adheres to [Semantic Versioning](http://semver.org/). ## [2.0.0](https://github.com/CooperRS/RMPickerViewController/releases/tag/2.0.0) -* Initial Release of Version 2 \ No newline at end of file +* Initial Release of Version 2 diff --git a/README.md b/README.md index 83d43ac..d6e5ad9 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.3.0" +pod "RMPickerViewController", "~> 2.3.1" ``` ## Usage diff --git a/RMPickerViewController.podspec b/RMPickerViewController.podspec index 2585e84..e4dac98 100644 --- a/RMPickerViewController.podspec +++ b/RMPickerViewController.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RMPickerViewController" - s.version = "2.3.0" + s.version = "2.3.1" 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.3.0" } + s.source = { :git => "https://github.com/CooperRS/RMPickerViewController.git", :tag => "2.3.1" } s.source_files = 'RMPickerViewController/*.{h,m}' s.requires_arc = true