Skip to content

Commit 07597ba

Browse files
committedSep 3, 2018
Remove debug code that broke the view controller's section of the Demo app.
1 parent cf01c55 commit 07597ba

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## 5.0.1
5+
6+
### Fixes
7+
8+
* Remove debug code that broke the view controller's section of the Demo app.
9+
410
## 5.0.0
511

612
### Breaking Changes

‎Demo/Demo/ViewControllersViewController.swift

-8
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,6 @@ class ViewControllersViewController: UIViewController {
1313
@objc @IBAction private func dismissPresented(segue: UIStoryboardSegue) {
1414
dismiss(animated: true, completion: nil)
1515
}
16-
17-
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
18-
if let segue = segue as? SwiftMessagesSegue {
19-
segue.configure(layout: .bottomCard)
20-
segue.dimMode = .blur(style: .dark, alpha: 0.9, interactive: true)
21-
segue.messageView.configureNoDropShadow()
22-
}
23-
}
2416
}
2517

2618
class SwiftMessagesTopSegue: SwiftMessagesSegue {

‎SwiftMessages.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'SwiftMessages'
3-
spec.version = '5.0.0'
3+
spec.version = '5.0.1'
44
spec.license = { :type => 'MIT' }
55
spec.homepage = 'https://github.com/SwiftKickMobile/SwiftMessages'
66
spec.authors = { 'Timothy Moose' => 'tim@swiftkick.it' }

0 commit comments

Comments
 (0)
Please sign in to comment.