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

Commit

Permalink
Merge branch 'release-candidate' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Verkoeyen committed Aug 31, 2017
2 parents 0c34f24 + 7a3a80f commit 85208cd
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 3.2.1

This patch release resolves Xcode 9 compiler warnings.

## Source changes

* [Explicitly include void for block parameters. (#41)](https://github.com/material-motion/transitioning-objc/commit/eabe53db2a113e548c876247e2c2ff3e04afc58f) (ianegordon)

# 3.2.0

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.
Expand Down
2 changes: 1 addition & 1 deletion MotionTransitioning.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "MotionTransitioning"
s.summary = "Light-weight API for building UIViewController transitions."
s.version = "3.2.0"
s.version = "3.2.1"
s.authors = "The Material Motion Authors"
s.license = "Apache 2.0"
s.homepage = "https://github.com/material-motion/transitioning-objc"
Expand Down
4 changes: 2 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- CatalogByConvention (2.1.1)
- MotionTransitioning (3.2.0)
- MotionTransitioning (3.2.1)

DEPENDENCIES:
- CatalogByConvention
Expand All @@ -12,7 +12,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
CatalogByConvention: c3a5319de04250a7cd4649127fcfca5fe3322a43
MotionTransitioning: 93ff3fcc6a597786a01ace3232109e5075c57526
MotionTransitioning: 01e7fcd6e2974985057109e0a4c98ea546cd5947

PODFILE CHECKSUM: db2e7ac8d9d65704a2cbffa0b77e39a574cb7248

Expand Down
2 changes: 1 addition & 1 deletion src/MDMTransitionContext.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,6 @@ NS_SWIFT_NAME(TransitionContext)
Upon completion, each block of work will be executed in the order it was provided to the context.
*/
- (void)deferToCompletion:(void (^ _Nonnull)())work;
- (void)deferToCompletion:(void (^ _Nonnull)(void))work;

@end
2 changes: 1 addition & 1 deletion src/private/MDMViewControllerTransitionContext.m
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ - (void)transitionDidEnd {
[_delegate transitionDidCompleteWithContext:self];
}

- (void)deferToCompletion:(void (^)())work {
- (void)deferToCompletion:(void (^)(void))work {
[_completionBlocks addObject:[work copy]];
}

Expand Down

0 comments on commit 85208cd

Please sign in to comment.