Skip to content

Commit 3e539be

Browse files
committed
Bump version
1 parent f9c5398 commit 3e539be

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Mini-Swift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Pod::Spec.new do |s|
44
s.name = 'Mini-Swift'
5-
s.version = '1.0.1'
5+
s.version = '1.0.2'
66
s.swift_version = '5.0'
77
s.summary = 'The minimal expression of a Flux architecture in Swift.'
88

Sources/MiniSwift/ReducerGroup.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public protocol Group: Disposable {
2424
public class ReducerGroup: Group {
2525

2626
public let disposeBag = CompositeDisposable()
27-
27+
2828
public init(_ builder: () -> [Disposable]) {
2929
let disposable = builder()
3030
disposable.forEach { _ = disposeBag.insert($0) }

Sources/MiniSwift/Utils/Middleware/TestMiddleware.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class TestMiddleware: Middleware {
3636
return TestOnlyAction()
3737
}
3838
}
39-
39+
4040
public init() { }
4141

4242
/// Check if a given action have been intercepted before by the Middleware.

Sources/MiniSwift/Utils/Service/LoggingService.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ public class LoggingService: Service {
2525
NSLog(String(dumping: action))
2626
}
2727
}
28-
28+
2929
public init() { }
3030
}

0 commit comments

Comments
 (0)