Skip to content
This repository was archived by the owner on Jan 13, 2022. It is now read-only.

Commit 804df9d

Browse files
Merge with master;
2 parents 068f680 + 212db43 commit 804df9d

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 2.1.1
6+
7+
- Added tvOS support for cocoapods (#163)
8+
- Remove custom module map for cocoapods (#141)
9+
510
## 2.1.0
611

712
- Changed FBSnapshotTestController from private to public in the xcodeproj (#135)

FBSnapshotTestCase.podspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "FBSnapshotTestCase"
3-
s.version = "2.1.0"
3+
s.version = "2.1.1"
44
s.summary = "Snapshot view unit tests for iOS"
55
s.description = <<-DESC
66
A "snapshot test case" takes a configured UIView or CALayer
@@ -14,9 +14,10 @@ Pod::Spec.new do |s|
1414
s.author = 'Facebook'
1515
s.source = { :git => "https://github.com/facebook/ios-snapshot-test-case.git",
1616
:tag => s.version.to_s }
17-
s.platform = :ios, '7.0'
17+
s.ios.deployment_target = '7.0'
18+
s.tvos.deployment_target = '9.0'
1819
s.requires_arc = true
19-
s.frameworks = 'XCTest','UIKit','Foundation','QuartzCore'
20+
s.frameworks = 'XCTest','UIKit','Foundation','QuartzCore'
2021
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
2122
s.default_subspecs = 'SwiftSupport'
2223
s.subspec 'Core' do |cs|

FBSnapshotTestCaseDemo/Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PODS:
2-
- FBSnapshotTestCase (2.1.0):
3-
- FBSnapshotTestCase/SwiftSupport (= 2.1.0)
4-
- FBSnapshotTestCase/Core (2.1.0)
5-
- FBSnapshotTestCase/SwiftSupport (2.1.0):
2+
- FBSnapshotTestCase (2.1.1):
3+
- FBSnapshotTestCase/SwiftSupport (= 2.1.1)
4+
- FBSnapshotTestCase/Core (2.1.1)
5+
- FBSnapshotTestCase/SwiftSupport (2.1.1):
66
- FBSnapshotTestCase/Core
77

88
DEPENDENCIES:

0 commit comments

Comments
 (0)