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
yarneo committed Dec 15, 2017
2 parents 1387294 + 180e92e commit 938ddf9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 2.3.1

minor bug fix introduced in 2.3.0 that returns wrong boolean values.

## Source changes

* [PR fixes introduced a minor bug, need to update release (#20)](https://github.com/material-foundation/cocoapods-catalog-by-convention/commit/6be4d710a05dbe981728af00700e20268ca548a9) (Yarden Eitan)

# 2.3.0

This minor release adds two new functionalities that support our new Dragons app.
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.3.0"
s.version = "2.3.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 @@ -36,7 +36,7 @@ void CBCCatalogInvokeFromClassAndSelector(Class aClass, SEL selector, void *retV
invocation.selector = selector;
invocation.target = aClass;
[invocation invoke];
[invocation getReturnValue:&retValue];
[invocation getReturnValue:retValue];
}
}

Expand Down

0 comments on commit 938ddf9

Please sign in to comment.