diff --git a/CHANGELOG.md b/CHANGELOG.md index b1caed5..1901bca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ -NEXT RELEASE +Version 3.0.0 ------------ +_02 Feb 2018_ - Changed `animated` from NSNumber to BOOL. - Added `presentingViewController`. + Version 2.0.2 ------------- _30 Jan 2018_ diff --git a/MockUIAlertController.podspec b/MockUIAlertController.podspec index 546b9c9..a892bd4 100644 --- a/MockUIAlertController.podspec +++ b/MockUIAlertController.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'MockUIAlertController' - s.version = '2.0.2' + s.version = '3.0.0' s.summary = 'Mock alerts and action sheets for iOS unit tests' s.description = <<-DESC MockUIAlertController lets you mock iOS alerts and action sheets for unit tests, based on the UIAlertController introduced for iOS 8. @@ -16,7 +16,7 @@ Pod::Spec.new do |s| s.social_media_url = 'https://twitter.com/qcoding' s.ios.deployment_target = '8.0' - s.source = { :git => 'https://github.com/jonreid/MockUIAlertController.git', :tag => 'v2.0.2' } + s.source = { :git => 'https://github.com/jonreid/MockUIAlertController.git', :tag => 'v3.0.0' } s.source_files = 'Source/MockUIAlertController/*.{h,m}' s.public_header_files = 'Source/MockUIAlertController/QCOMockAlertVerifier.h', 'Source/MockUIAlertController/QCOMockPopoverPresentationController.h' s.requires_arc = true diff --git a/README.md b/README.md index 4a6e015..8b10c9b 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ Add the following to your Podfile, changing "MyTests" to the name of your test t ```ruby target 'MyTests' do inherit! :search_paths - pod 'MockUIAlertController', '~> 2.0' + pod 'MockUIAlertController', '~> 3.0' end ``` @@ -120,7 +120,7 @@ end Add the following to your Cartfile: ``` -github "jonreid/MockUIAlertController" ~> 2.0 +github "jonreid/MockUIAlertController" ~> 3.0 ``` ### Building It Yourself