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

Commit 85208cd

Browse files
author
Jeff Verkoeyen
committed
Merge branch 'release-candidate' into stable
2 parents 0c34f24 + 7a3a80f commit 85208cd

5 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 3.2.1
2+
3+
This patch release resolves Xcode 9 compiler warnings.
4+
5+
## Source changes
6+
7+
* [Explicitly include void for block parameters. (#41)](https://github.com/material-motion/transitioning-objc/commit/eabe53db2a113e548c876247e2c2ff3e04afc58f) (ianegordon)
8+
19
# 3.2.0
210

311
This minor release introduces new features for presentation, view snapshotting, and defered transition work. There is also a new photo album example demonstrating how to build a contextual transition in which the context may change.

MotionTransitioning.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 = "MotionTransitioning"
33
s.summary = "Light-weight API for building UIViewController transitions."
4-
s.version = "3.2.0"
4+
s.version = "3.2.1"
55
s.authors = "The Material Motion Authors"
66
s.license = "Apache 2.0"
77
s.homepage = "https://github.com/material-motion/transitioning-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-
- MotionTransitioning (3.2.0)
3+
- MotionTransitioning (3.2.1)
44

55
DEPENDENCIES:
66
- CatalogByConvention
@@ -12,7 +12,7 @@ EXTERNAL SOURCES:
1212

1313
SPEC CHECKSUMS:
1414
CatalogByConvention: c3a5319de04250a7cd4649127fcfca5fe3322a43
15-
MotionTransitioning: 93ff3fcc6a597786a01ace3232109e5075c57526
15+
MotionTransitioning: 01e7fcd6e2974985057109e0a4c98ea546cd5947
1616

1717
PODFILE CHECKSUM: db2e7ac8d9d65704a2cbffa0b77e39a574cb7248
1818

src/MDMTransitionContext.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,6 @@ NS_SWIFT_NAME(TransitionContext)
9191
9292
Upon completion, each block of work will be executed in the order it was provided to the context.
9393
*/
94-
- (void)deferToCompletion:(void (^ _Nonnull)())work;
94+
- (void)deferToCompletion:(void (^ _Nonnull)(void))work;
9595

9696
@end

src/private/MDMViewControllerTransitionContext.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ - (void)transitionDidEnd {
9696
[_delegate transitionDidCompleteWithContext:self];
9797
}
9898

99-
- (void)deferToCompletion:(void (^)())work {
99+
- (void)deferToCompletion:(void (^)(void))work {
100100
[_completionBlocks addObject:[work copy]];
101101
}
102102

0 commit comments

Comments
 (0)