Skip to content

Commit

Permalink
Merge pull request #16 from canopas/update-version
Browse files Browse the repository at this point in the history
Update version
  • Loading branch information
cp-amisha-i authored Apr 9, 2022
2 parents adb961d + 74cdef0 commit b65ee11
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Once you have your Swift package set up, adding UIPilot as a dependency is as ea

```swift
dependencies: [
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "1.1.6"))
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "1.1.7"))
]
```

Expand All @@ -47,7 +47,7 @@ dependencies: [
[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:

target 'YourAppName' do
pod 'UIPilot', '~> 1.1.6'
pod 'UIPilot', '~> 1.1.7'
end

[CocoaPods]: https://cocoapods.org
Expand Down
6 changes: 3 additions & 3 deletions Sources/UIPilot/UIPilot.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ import Combine

public class UIPilot<T: Equatable>: ObservableObject {

let logger: Logger
var state: UIPilotViewState<T>!

var paths: [Path<T>] = [] {
didSet { updateViewState() }
}

var routeMap: RouteMap<T>? {
didSet { updateViewState() }
}

let logger: Logger
var state: UIPilotViewState<T>!

public var stack: [T] {
return paths.map { $0.route }
Expand Down
2 changes: 1 addition & 1 deletion UIPilot.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "UIPilot"
s.version = "1.1.6"
s.version = "1.1.7"
s.summary = "The missing type-safe, SwiftUI navigation library."

s.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ Once you have your Swift package set up, adding UIPilot as a dependency is as ea

```swift
dependencies: [
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "1.1.6"))
.package(url: "https://github.com/canopas/UIPilot.git", .upToNextMajor(from: "1.1.7"))
]
```

Expand All @@ -332,7 +332,7 @@ dependencies: [
[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:

target 'YourAppName' do
pod 'UIPilot', '~> 1.1.6'
pod 'UIPilot', '~> 1.1.7'
end

[CocoaPods]: https://cocoapods.org
Expand Down

0 comments on commit b65ee11

Please sign in to comment.