Skip to content

Commit 0b37d44

Browse files
author
Ian Gordon
committed
Merge branch 'release-candidate'
2 parents 06b523c + 43cdf5e commit 0b37d44

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 2.1.0
2+
3+
- Add tvOS as a platform.
4+
15
# 2.0.1
26

37
- Fixed some warnings.

CatalogByConvention.podspec

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
Pod::Spec.new do |s|
22
s.name = "CatalogByConvention"
3-
s.version = "2.0.1"
3+
s.version = "2.1.0"
44
s.authors = "Google Inc."
55
s.summary = "Tools for building a Catalog by Convention."
66
s.homepage = "https://github.com/material-foundation/cocoapods-catalog-by-convention"
77
s.license = 'Apache 2.0'
88
s.source = { :git => "https://github.com/material-foundation/cocoapods-catalog-by-convention.git", :tag => "v#{s.version}" }
9-
s.platform = :ios, '8.0'
9+
s.platform = :ios,:tvos
10+
s.ios.deployment_target = '8.0'
11+
s.tvos.deployment_target = '9.0'
1012
s.requires_arc = true
1113

1214
s.public_header_files = "src/*.h"

example/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- CatalogByConvention (2.0.1)
2+
- CatalogByConvention (2.1.0)
33
- CatalogExamples (1.0.0)
44
- CatalogUnitTests (1.0.0):
55
- Resistor
@@ -22,11 +22,11 @@ EXTERNAL SOURCES:
2222
:path: components/Resistor
2323

2424
SPEC CHECKSUMS:
25-
CatalogByConvention: 7427d8ac03d5bc1eebcf2898de2b6e27a5876310
25+
CatalogByConvention: ef0913973b86b4234bcadf22aa84037c4a47cbbd
2626
CatalogExamples: cafe3e4eae3abc948d96beb626657455c1dfb327
2727
CatalogUnitTests: b7a746f12abb31a905654521ee926ea007ab7275
2828
Resistor: 36a9ae98666be3b4f34d8133fad442fa87fdbce2
2929

3030
PODFILE CHECKSUM: bb59c09c71f8777bbe79af5ae920e3d58849ab41
3131

32-
COCOAPODS: 1.0.1
32+
COCOAPODS: 1.2.0

example/catalog/Catalog.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
);
171171
runOnlyForDeploymentPostprocessing = 0;
172172
shellPath = /bin/sh;
173-
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
173+
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
174174
showEnvVarsInLog = 0;
175175
};
176176
526A63F3210C836C577F3F5D /* [CP] Copy Pods Resources */ = {

example/catalog/UnitTests.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
);
176176
runOnlyForDeploymentPostprocessing = 0;
177177
shellPath = /bin/sh;
178-
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
178+
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
179179
showEnvVarsInLog = 0;
180180
};
181181
E2A6B4BD8988E7DF3FD232F4 /* [CP] Copy Pods Resources */ = {

0 commit comments

Comments
 (0)