diff --git a/CHANGELOG.md b/CHANGELOG.md index 51f234b..de0872c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ RMDateSelectionViewController adheres to [Semantic Versioning](http://semver.org --- +## [2.3.0](https://github.com/CooperRS/RMDateSelectionViewController/releases/tag/2.3.0) + +* Updated to RMActionController 1.3.0 + ## [2.2.1](https://github.com/CooperRS/RMDateSelectionViewController/releases/tag/2.2.1) * Fix RMDateSelectionViewController.podspec @@ -35,4 +39,4 @@ RMDateSelectionViewController adheres to [Semantic Versioning](http://semver.org ## [2.0.0](https://github.com/CooperRS/RMDateSelectionViewController/releases/tag/2.0.0) -* Initial Release of Version 2 \ No newline at end of file +* Initial Release of Version 2 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 b6f1cee..f658083 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ If you want to run the demo project do not forget to initialize submodules. ## Installation (CocoaPods) ```ruby platform :ios, '8.0' -pod "RMDateSelectionViewController", "~> 2.2.1" +pod "RMDateSelectionViewController", "~> 2.3.0" ``` ## Usage diff --git a/RMDateSelectionViewController.podspec b/RMDateSelectionViewController.podspec index 8d453e7..cc8b320 100644 --- a/RMDateSelectionViewController.podspec +++ b/RMDateSelectionViewController.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RMDateSelectionViewController" - s.version = "2.2.1" + s.version = "2.3.0" s.platform = :ios, "8.0" s.summary = "This is an iOS control for selecting a date using UIDatePicker in a UIAlertController like manner" s.description = "This framework allows you to select a date by presenting an action sheet. In addition, it allows you to add actions arround the presented date 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 UIDatePicker and some UIActions attached." @@ -11,9 +11,9 @@ 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/RMDateSelectionViewController.git", :tag => "2.2.1" } + s.source = { :git => "https://github.com/CooperRS/RMDateSelectionViewController.git", :tag => "2.3.0" } s.source_files = 'RMDateSelectionViewController/*.{h,m}' s.requires_arc = true - s.dependency 'RMActionController', '~> 1.2.1' + s.dependency 'RMActionController', '~> 1.3.0' end