Skip to content

Commit

Permalink
Adds tvOS to podspec, and updates the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
orta committed Nov 8, 2015
1 parent 1f62640 commit 4f14e53
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions 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]
Expand Down
3 changes: 2 additions & 1 deletion 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'
Expand All @@ -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' }
Expand Down

0 comments on commit 4f14e53

Please sign in to comment.