From f9fd0af201ef7ae01ebc11fb7d2950fcc9116b4e Mon Sep 17 00:00:00 2001 From: featherless Date: Mon, 6 Nov 2017 09:51:59 -0500 Subject: [PATCH 1/4] Replace framework import with relative import. (#27) * Replace framework import with relative import. So that bazel dependencies can build against this project. * Remove another. --- src/MDMMotionAnimator.h | 2 +- src/private/CABasicAnimation+MotionAnimator.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MDMMotionAnimator.h b/src/MDMMotionAnimator.h index cf08b97..69019e7 100644 --- a/src/MDMMotionAnimator.h +++ b/src/MDMMotionAnimator.h @@ -17,7 +17,7 @@ #import #import -#import +#import "MotionInterchange.h" #import "MDMAnimatableKeyPaths.h" #import "MDMCoreAnimationTraceable.h" diff --git a/src/private/CABasicAnimation+MotionAnimator.h b/src/private/CABasicAnimation+MotionAnimator.h index 7c9e5b3..a555da6 100644 --- a/src/private/CABasicAnimation+MotionAnimator.h +++ b/src/private/CABasicAnimation+MotionAnimator.h @@ -14,7 +14,7 @@ limitations under the License. */ -#import +#import "MotionInterchange.h" #import #import From c52154e1ccbb42cf59d9e0b5933cf24f3f2e7534 Mon Sep 17 00:00:00 2001 From: Jeff Verkoeyen Date: Mon, 6 Nov 2017 11:16:13 -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 818a39a..7324e3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# #develop# + + TODO: Enumerate changes. + + # 2.0.0 This major release includes several new APIs, bug fixes, and internal cleanup. From b5396cec1c70967c41a417e8b165f331e8c278f5 Mon Sep 17 00:00:00 2001 From: Jeff Verkoeyen Date: Mon, 6 Nov 2017 11:17:10 -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 7324e3b..2186f87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ -# #develop# +# 2.0.1 - TODO: Enumerate changes. +This patch release includes minor fixes for bazel + kokoro continuous integration. +## Source changes + +* [Replace framework import with relative import. (#27)](https://github.com/material-motion/motion-animator-objc/commit/f9fd0af201ef7ae01ebc11fb7d2950fcc9116b4e) (featherless) # 2.0.0 From c705375bfaa333c7f6da0d3db8de14db4867e7da Mon Sep 17 00:00:00 2001 From: Jeff Verkoeyen Date: Mon, 6 Nov 2017 11:17:19 -0500 Subject: [PATCH 4/4] Bump the release. --- MotionAnimator.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MotionAnimator.podspec b/MotionAnimator.podspec index ebc4d4d..17e9cad 100644 --- a/MotionAnimator.podspec +++ b/MotionAnimator.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "MotionAnimator" s.summary = "A Motion Animator creates performant, interruptible animations from motion specs." - s.version = "2.0.0" + s.version = "2.0.1" s.authors = "The Material Motion Authors" s.license = "Apache 2.0" s.homepage = "https://github.com/material-motion/motion-animator-objc"