Skip to content
This repository was archived by the owner on Aug 30, 2023. It is now read-only.

Commit fcdae0c

Browse files
author
Jeff Verkoeyen
committed
Merge branch 'release-candidate' into stable
2 parents 323ac75 + 4d9e4a7 commit fcdae0c

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 1.0.1
2+
3+
This is a patch fix release to address build issues within Google's build environment.
4+
5+
## Source changes
6+
7+
* [Add missing header imports.](https://github.com/material-motion/motion-animator-objc/commit/2895dd3e586340018297041d8fce367bf29586c6) (Jeff Verkoeyen)
8+
19
# 1.0.0
210

311
Initial release.

MotionAnimator.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "MotionAnimator"
33
s.summary = "A Motion Animator creates performant, interruptible animations from motion specs."
4-
s.version = "1.0.0"
4+
s.version = "1.0.1"
55
s.authors = "The Material Motion Authors"
66
s.license = "Apache 2.0"
77
s.homepage = "https://github.com/material-motion/motion-animator-objc"

Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PODS:
22
- CatalogByConvention (2.1.1)
3-
- MotionAnimator (1.0.0):
3+
- MotionAnimator (1.0.1):
44
- MotionInterchange
55
- MotionInterchange (1.0.1)
66

@@ -14,7 +14,7 @@ EXTERNAL SOURCES:
1414

1515
SPEC CHECKSUMS:
1616
CatalogByConvention: c3a5319de04250a7cd4649127fcfca5fe3322a43
17-
MotionAnimator: 554b22116cbbcae6bf90fdad0042a87604225d0e
17+
MotionAnimator: ddf0bc7f92605c81e4d9864167bf18aab84823c6
1818
MotionInterchange: 7a7c355ba2ed5d36c5cf2ceb76cacd3d3680dbf5
1919

2020
PODFILE CHECKSUM: 634239e7b183e669593b273198da9227ed207777

src/MDMMotionAnimator.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
*/
1616

1717
#import <Foundation/Foundation.h>
18+
#import <QuartzCore/QuartzCore.h>
19+
1820
#import <MotionInterchange/MotionInterchange.h>
1921

2022
#import "MDMAnimatableKeyPaths.h"

src/MDMMotionAnimator.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
#import "MDMMotionAnimator.h"
1818

19+
#import <UIKit/UIKit.h>
20+
1921
#if TARGET_IPHONE_SIMULATOR
2022
UIKIT_EXTERN float UIAnimationDragCoefficient(void); // UIKit private drag coefficient.
2123
#endif

0 commit comments

Comments
 (0)