Skip to content

Commit 4f14e53

Browse files
committed
Adds tvOS to podspec, and updates the changelog
1 parent 1f62640 commit 4f14e53

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
v1.0.5
2+
=====
3+
* Disables Bitcode on the Podspec [jonakyd]
4+
* Assign actual value to a strong variable in EXP_expect [StatusReport]
5+
* Avoid holding matcher in the thread dictionary after matching. [StatusReport]
6+
* Adds tvOS to the Podspec [orta]
7+
18
v1.0.4
29
=====
310
* If descriptions match in an .equal() show the classes [orta + jorystiefel]

Expecta.podspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Expecta'
3-
s.version = '1.0.3'
3+
s.version = '1.0.5'
44
s.license = { :type => 'MIT', :file => 'LICENSE' }
55
s.summary = 'A matcher framework for Objective-C & Cocoa.'
66
s.homepage = 'http://github.com/petejkim/expecta'
@@ -21,6 +21,7 @@ Pod::Spec.new do |s|
2121
s.requires_arc = false
2222
s.ios.deployment_target = '5.1.1'
2323
s.osx.deployment_target = '10.7'
24+
s.tvos.deployment_target = '9.0'
2425

2526
s.frameworks = 'Foundation', 'XCTest'
2627
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }

0 commit comments

Comments
 (0)