Skip to content

Commit

Permalink
init() added
Browse files Browse the repository at this point in the history
  • Loading branch information
sinarionn committed Nov 4, 2016
1 parent c82ec42 commit 9daa195
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 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 = "1.0.1"
s.version = "1.0.2"
s.summary = "UIViewController creation, navigation, utility methods for easy routing"

s.homepage = "https://github.com/MLSDev/AppRouter"
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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

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

## Bug fixes

AppRouter got init() to allow overriding


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

## Bug fixes
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>1.0.1</string>
<string>1.0.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
3 changes: 2 additions & 1 deletion Sources/Core/AppRouter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public class AppRouter {
}
}

public init() {}

/// Defines AppRouter output target
public static var debugOutput: ARDebugOutputProtocol = DebugOutput.NSLog
Expand Down Expand Up @@ -55,4 +56,4 @@ public class AppRouter {
/// AppRouter protocol used to specify proper debug outup mechanic
public protocol ARDebugOutputProtocol {
func debugOutput(str: String)
}
}

0 comments on commit 9daa195

Please sign in to comment.