Skip to content

Commit 74cdef0

Browse files
committed
Update version
1 parent adb961d commit 74cdef0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Once you have your Swift package set up, adding UIPilot as a dependency is as ea
3838

3939
```swift
4040
dependencies: [
41-
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "1.1.6"))
41+
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "1.1.7"))
4242
]
4343
```
4444

@@ -47,7 +47,7 @@ dependencies: [
4747
[CocoaPods][] is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate UIPilot into your Xcode project using CocoaPods, specify it in your Podfile:
4848

4949
target 'YourAppName' do
50-
pod 'UIPilot', '~> 1.1.6'
50+
pod 'UIPilot', '~> 1.1.7'
5151
end
5252

5353
[CocoaPods]: https://cocoapods.org

Sources/UIPilot/UIPilot.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ import Combine
33

44
public class UIPilot<T: Equatable>: ObservableObject {
55

6+
let logger: Logger
7+
var state: UIPilotViewState<T>!
8+
69
var paths: [Path<T>] = [] {
710
didSet { updateViewState() }
811
}
912

1013
var routeMap: RouteMap<T>? {
1114
didSet { updateViewState() }
1215
}
13-
14-
let logger: Logger
15-
var state: UIPilotViewState<T>!
1616

1717
public var stack: [T] {
1818
return paths.map { $0.route }

UIPilot.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "UIPilot"
3-
s.version = "1.1.6"
3+
s.version = "1.1.7"
44
s.summary = "The missing type-safe, SwiftUI navigation library."
55

66
s.description = <<-DESC

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ Once you have your Swift package set up, adding UIPilot as a dependency is as ea
323323

324324
```swift
325325
dependencies: [
326-
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "1.1.6"))
326+
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "1.1.7"))
327327
]
328328
```
329329

@@ -332,7 +332,7 @@ dependencies: [
332332
[CocoaPods][] is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate UIPilot into your Xcode project using CocoaPods, specify it in your Podfile:
333333

334334
target 'YourAppName' do
335-
pod 'UIPilot', '~> 1.1.6'
335+
pod 'UIPilot', '~> 1.1.7'
336336
end
337337

338338
[CocoaPods]: https://cocoapods.org

0 commit comments

Comments
 (0)