Skip to content

Commit 938ddf9

Browse files
committed
Merge branch 'release-candidate' into stable
2 parents 1387294 + 180e92e commit 938ddf9

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.3.1
2+
3+
minor bug fix introduced in 2.3.0 that returns wrong boolean values.
4+
5+
## Source changes
6+
7+
* [PR fixes introduced a minor bug, need to update release (#20)](https://github.com/material-foundation/cocoapods-catalog-by-convention/commit/6be4d710a05dbe981728af00700e20268ca548a9) (Yarden Eitan)
8+
19
# 2.3.0
210

311
This minor release adds two new functionalities that support our new Dragons app.

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.3.0"
3+
s.version = "2.3.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
@@ -36,7 +36,7 @@ void CBCCatalogInvokeFromClassAndSelector(Class aClass, SEL selector, void *retV
3636
invocation.selector = selector;
3737
invocation.target = aClass;
3838
[invocation invoke];
39-
[invocation getReturnValue:&retValue];
39+
[invocation getReturnValue:retValue];
4040
}
4141
}
4242

0 commit comments

Comments
 (0)