Skip to content

Commit 4c63421

Browse files
author
Jeff Verkoeyen
committed
Merge branch 'release-candidate' into stable
2 parents 0b37d44 + 0a9081d commit 4c63421

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
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.1
2+
3+
- Fixed a crashing bug on iOS 10.3.1.
4+
15
# 2.1.0
26

37
- Add tvOS as a platform.

CatalogByConvention.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "CatalogByConvention"
3-
s.version = "2.1.0"
3+
s.version = "2.1.1"
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"

src/private/CBCRuntime.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ BOOL CBCCatalogIsPrimaryDemoFromClass(Class aClass) {
5656
NSSet *ignoredClasses = [NSSet setWithArray:@[
5757
@"SwiftObject", @"Object", @"FigIrisAutoTrimmerMotionSampleExport", @"NSLeafProxy"
5858
]];
59-
NSArray *ignoredPrefixes = @[ @"Swift.", @"_", @"JS" ];
59+
NSArray *ignoredPrefixes = @[ @"Swift.", @"_", @"JS", @"WK" ];
6060

6161
for (int ix = 0; ix < numberOfClasses; ++ix) {
6262
Class aClass = classList[ix];

0 commit comments

Comments
 (0)