Skip to content

Commit

Permalink
Merge branch 'release-candidate' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Verkoeyen committed May 15, 2017
2 parents 0b37d44 + 0a9081d commit 4c63421
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 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.1

- Fixed a crashing bug on iOS 10.3.1.

# 2.1.0

- Add tvOS as a platform.
Expand Down
2 changes: 1 addition & 1 deletion CatalogByConvention.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "CatalogByConvention"
s.version = "2.1.0"
s.version = "2.1.1"
s.authors = "Google Inc."
s.summary = "Tools for building a Catalog by Convention."
s.homepage = "https://github.com/material-foundation/cocoapods-catalog-by-convention"
Expand Down
2 changes: 1 addition & 1 deletion src/private/CBCRuntime.m
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ BOOL CBCCatalogIsPrimaryDemoFromClass(Class aClass) {
NSSet *ignoredClasses = [NSSet setWithArray:@[
@"SwiftObject", @"Object", @"FigIrisAutoTrimmerMotionSampleExport", @"NSLeafProxy"
]];
NSArray *ignoredPrefixes = @[ @"Swift.", @"_", @"JS" ];
NSArray *ignoredPrefixes = @[ @"Swift.", @"_", @"JS", @"WK" ];

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

0 comments on commit 4c63421

Please sign in to comment.