Skip to content

Commit

Permalink
Merge branch 'release-candidate'
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Gordon committed Mar 22, 2017
2 parents 06b523c + 43cdf5e commit 0b37d44
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.1.0

- Add tvOS as a platform.

# 2.0.1

- Fixed some warnings.
Expand Down
6 changes: 4 additions & 2 deletions CatalogByConvention.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
Pod::Spec.new do |s|
s.name = "CatalogByConvention"
s.version = "2.0.1"
s.version = "2.1.0"
s.authors = "Google Inc."
s.summary = "Tools for building a Catalog by Convention."
s.homepage = "https://github.com/material-foundation/cocoapods-catalog-by-convention"
s.license = 'Apache 2.0'
s.source = { :git => "https://github.com/material-foundation/cocoapods-catalog-by-convention.git", :tag => "v#{s.version}" }
s.platform = :ios, '8.0'
s.platform = :ios,:tvos
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true

s.public_header_files = "src/*.h"
Expand Down
6 changes: 3 additions & 3 deletions example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- CatalogByConvention (2.0.1)
- CatalogByConvention (2.1.0)
- CatalogExamples (1.0.0)
- CatalogUnitTests (1.0.0):
- Resistor
Expand All @@ -22,11 +22,11 @@ EXTERNAL SOURCES:
:path: components/Resistor

SPEC CHECKSUMS:
CatalogByConvention: 7427d8ac03d5bc1eebcf2898de2b6e27a5876310
CatalogByConvention: ef0913973b86b4234bcadf22aa84037c4a47cbbd
CatalogExamples: cafe3e4eae3abc948d96beb626657455c1dfb327
CatalogUnitTests: b7a746f12abb31a905654521ee926ea007ab7275
Resistor: 36a9ae98666be3b4f34d8133fad442fa87fdbce2

PODFILE CHECKSUM: bb59c09c71f8777bbe79af5ae920e3d58849ab41

COCOAPODS: 1.0.1
COCOAPODS: 1.2.0
2 changes: 1 addition & 1 deletion example/catalog/Catalog.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
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";
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";
showEnvVarsInLog = 0;
};
526A63F3210C836C577F3F5D /* [CP] Copy Pods Resources */ = {
Expand Down
2 changes: 1 addition & 1 deletion example/catalog/UnitTests.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
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";
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";
showEnvVarsInLog = 0;
};
E2A6B4BD8988E7DF3FD232F4 /* [CP] Copy Pods Resources */ = {
Expand Down

0 comments on commit 0b37d44

Please sign in to comment.