Skip to content

Commit

Permalink
Presenter namespace-enum changed into open class to prevent weird bug…
Browse files Browse the repository at this point in the history
… with overrides.
  • Loading branch information
sinarionn committed Aug 8, 2017
1 parent 80f9e61 commit 3e04379
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AppRouter.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = "AppRouter"
s.version = "4.0.0"
s.version = "4.0.1"
s.summary = "UIViewController creation, navigation, utility methods for easy routing"

s.homepage = "https://github.com/MLSDev/AppRouter"
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@

All notable changes to this project will be documented in this file.

## [4.0.1](https://github.com/MLSDev/AppRouter/releases/tag/4.0.1)

## [4.0.0](https://github.com/MLSDev/AppRouter/releases/tag/3.0.2)
Presenter namespace-enum changed into open class to prevent weird bug with overrides.


## [4.0.0](https://github.com/MLSDev/AppRouter/releases/tag/4.0.0)

AppRouter and Presenter was refactored to provide additional flexibility

Expand Down
2 changes: 1 addition & 1 deletion Plists/AppRouter.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.0.0</string>
<string>4.0.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/Core/AppRouter+presenter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Foundation
import UIKit

extension AppRouter {
public enum Presenter {
open class Presenter {
/// Factory for Configurations construction. Can be replaced with your own.
public static var configurationFactory: ARPresentConfigurationFactory = AppRouter.Presenter.DefaultBuilder()
}
Expand Down

0 comments on commit 3e04379

Please sign in to comment.