diff --git a/CHANGELOG.md b/CHANGELOG.md index 915fafe..c6132d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +v1.0.5 +===== +* Disables Bitcode on the Podspec [jonakyd] +* Assign actual value to a strong variable in EXP_expect [StatusReport] +* Avoid holding matcher in the thread dictionary after matching. [StatusReport] +* Adds tvOS to the Podspec [orta] + v1.0.4 ===== * If descriptions match in an .equal() show the classes [orta + jorystiefel] diff --git a/Expecta.podspec b/Expecta.podspec index c933df2..593dce3 100644 --- a/Expecta.podspec +++ b/Expecta.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Expecta' - s.version = '1.0.3' + s.version = '1.0.5' s.license = { :type => 'MIT', :file => 'LICENSE' } s.summary = 'A matcher framework for Objective-C & Cocoa.' s.homepage = 'http://github.com/petejkim/expecta' @@ -21,6 +21,7 @@ Pod::Spec.new do |s| s.requires_arc = false s.ios.deployment_target = '5.1.1' s.osx.deployment_target = '10.7' + s.tvos.deployment_target = '9.0' s.frameworks = 'Foundation', 'XCTest' s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }