Skip to content

Commit

Permalink
Bump version to 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonreid committed Jan 31, 2020
1 parent 6bafb3a commit 3b29767
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
NEXT RELEASE
------------
Version 5.0.0
-------------
_30 Jan 2020_

This release adds diagnostic test failures if verifiers clash.

- Fail test if code creates multiple instances of any single verifier. This inadvertently undid its
swizzling, leading to test failures that were tricky to diagnose. Now a failure message provides
Expand Down
4 changes: 2 additions & 2 deletions Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.2.2</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>4.2.2</string>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2020 Quality Coding, Inc.</string>
<key>NSPrincipalClass</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@
buildSettings = {
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 5.0.0;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
Expand All @@ -280,6 +281,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 5.0.0;
OTHER_LDFLAGS = (
"-weak_framework",
XCTest,
Expand All @@ -297,6 +299,7 @@
buildSettings = {
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 5.0.0;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
Expand All @@ -312,6 +315,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 5.0.0;
OTHER_LDFLAGS = (
"-weak_framework",
XCTest,
Expand Down
9 changes: 6 additions & 3 deletions ViewControllerPresentationSpy.podspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
Pod::Spec.new do |s|
s.name = 'ViewControllerPresentationSpy'
s.version = '4.2.2'
s.version = '5.0.0'
s.summary = 'Unit test presented view controllers, alerts, and action sheets for iOS'
s.description = <<-DESC
ViewControllerPresentationSpy intercepts presented view controllers, including alerts and actions sheets.
ViewControllerPresentationSpy has three verifiers:
* AlertVerifier to capture alerts and action sheets
* PresentationVerifier to capture presented view controllers
* DismissalVerifier to capture dismissed view controllers
Segues can be captured. For alerts, no actual alerts are presented. This means:
Expand All @@ -17,7 +20,7 @@ Pod::Spec.new do |s|
s.social_media_url = 'https://twitter.com/qcoding'

s.ios.deployment_target = '9.0'
s.source = { :git => 'https://github.com/jonreid/ViewControllerPresentationSpy.git', :tag => 'v4.2.2' }
s.source = { :git => 'https://github.com/jonreid/ViewControllerPresentationSpy.git', :tag => 'v5.0.0' }
s.source_files = 'Source/ViewControllerPresentationSpy/*.{h,m,swift}'
s.public_header_files = 'Source/ViewControllerPresentationSpy/QCOMockPopoverPresentationController.h', 'Source/ViewControllerPresentationSpy/UIAlertAction+QCOMock.h', 'Source/ViewControllerPresentationSpy/UIAlertController+QCOMock.h', 'Source/ViewControllerPresentationSpy/UIViewController+QCOMock.h'
s.requires_arc = true
Expand Down

0 comments on commit 3b29767

Please sign in to comment.