From 6be4d710a05dbe981728af00700e20268ca548a9 Mon Sep 17 00:00:00 2001 From: Yarden Eitan Date: Fri, 15 Dec 2017 17:15:22 -0500 Subject: [PATCH 1/4] PR fixes introduced a minor bug, need to update release (#20) --- src/private/CBCRuntime.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/private/CBCRuntime.m b/src/private/CBCRuntime.m index 42df2f4..044bfa8 100644 --- a/src/private/CBCRuntime.m +++ b/src/private/CBCRuntime.m @@ -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]; } } From 47ac648b567cdea2ea71a8cbabc0863a49efe5e5 Mon Sep 17 00:00:00 2001 From: Yarden Eitan Date: Fri, 15 Dec 2017 17:17:30 -0500 Subject: [PATCH 2/4] Automatic changelog preparation for release. --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fea21bc..47d3333 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# #develop# + + TODO: Enumerate changes. + + # 2.3.0 This minor release adds two new functionalities that support our new Dragons app. From d6ed397db534d87c85342ffcc5b18f9d9002f81d Mon Sep 17 00:00:00 2001 From: Yarden Eitan Date: Fri, 15 Dec 2017 17:20:17 -0500 Subject: [PATCH 3/4] update changelog --- CHANGELOG.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47d3333..41169a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ -# #develop# +# 2.3.1 - TODO: Enumerate changes. + 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 From 180e92e2c605678c14853e2cf45e544d6ff97974 Mon Sep 17 00:00:00 2001 From: Yarden Eitan Date: Fri, 15 Dec 2017 17:20:40 -0500 Subject: [PATCH 4/4] bump version --- CatalogByConvention.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CatalogByConvention.podspec b/CatalogByConvention.podspec index db4e60d..3b99b11 100644 --- a/CatalogByConvention.podspec +++ b/CatalogByConvention.podspec @@ -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"