Skip to content

Commit e4223bf

Browse files
author
Jeff Verkoeyen
committed
Merge branch 'release-candidate' into stable
2 parents 5886bf1 + 7f5467d commit e4223bf

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 2.5.1
2+
3+
Fix a runtime crash that occurred when the PhotoFoundation framework was included in an app.
4+
5+
## Source changes
6+
7+
* [Ignore PhotoFoundation classes in the runtime lookup (#31)](https://github.com/material-foundation/cocoapods-catalog-by-convention/commit/2e8866dcd15ed6a3e755c054510333438802e0a6) (featherless)
8+
19
# 2.5.0
210

311
There is now a new `NSDictionary` property in `CBCNode` called metadata. It is meant to store all the information regarding an example

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.5.0"
3+
s.version = "2.5.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
@@ -130,7 +130,7 @@ static BOOL CBCCatalogIsDebugLeaf(Class aClass) {
130130
NSSet *ignoredClasses = [NSSet setWithArray:@[
131131
@"SwiftObject", @"Object", @"FigIrisAutoTrimmerMotionSampleExport", @"NSLeafProxy"
132132
]];
133-
NSArray *ignoredPrefixes = @[ @"Swift.", @"_", @"JS", @"WK" ];
133+
NSArray *ignoredPrefixes = @[ @"Swift.", @"_", @"JS", @"WK", @"PF" ];
134134

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

0 commit comments

Comments
 (0)