diff --git a/CHANGELOG.md b/CHANGELOG.md index 2680d3e9..5065b51c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Change Log All notable changes to this project will be documented in this file. +## 5.0.1 + +### Fixes + +* Remove debug code that broke the view controller's section of the Demo app. + ## 5.0.0 ### Breaking Changes diff --git a/Demo/Demo/ViewControllersViewController.swift b/Demo/Demo/ViewControllersViewController.swift index a6b0d051..6fb14eeb 100644 --- a/Demo/Demo/ViewControllersViewController.swift +++ b/Demo/Demo/ViewControllersViewController.swift @@ -13,14 +13,6 @@ class ViewControllersViewController: UIViewController { @objc @IBAction private func dismissPresented(segue: UIStoryboardSegue) { dismiss(animated: true, completion: nil) } - - override func prepare(for segue: UIStoryboardSegue, sender: Any?) { - if let segue = segue as? SwiftMessagesSegue { - segue.configure(layout: .bottomCard) - segue.dimMode = .blur(style: .dark, alpha: 0.9, interactive: true) - segue.messageView.configureNoDropShadow() - } - } } class SwiftMessagesTopSegue: SwiftMessagesSegue { diff --git a/SwiftMessages.podspec b/SwiftMessages.podspec index f8650097..e98eca5a 100644 --- a/SwiftMessages.podspec +++ b/SwiftMessages.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'SwiftMessages' - spec.version = '5.0.0' + spec.version = '5.0.1' spec.license = { :type => 'MIT' } spec.homepage = 'https://github.com/SwiftKickMobile/SwiftMessages' spec.authors = { 'Timothy Moose' => 'tim@swiftkick.it' }