diff --git a/Passepartout.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Passepartout.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 40122a14..0cfd0fda 100644 --- a/Passepartout.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Passepartout.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -69,8 +69,17 @@ "repositoryURL": "https://github.com/passepartoutvpn/tunnelkit", "state": { "branch": null, - "revision": "b88f490b82d7b11310d0f36dc41c5478f753966c", - "version": "4.0.3" + "revision": "430e0e6afb6f528b4fdf4210d47017c938a4b115", + "version": null + } + }, + { + "package": "WireGuardKit", + "repositoryURL": "https://git.zx2c4.com/wireguard-apple", + "state": { + "branch": null, + "revision": "10da5cfdef362889b438cfbeff867a74e6d717fd", + "version": "1.0.15-26" } } ] diff --git a/Passepartout/App/iOS/CHANGELOG.md b/Passepartout/App/iOS/CHANGELOG.md index 1f181f37..16226587 100644 --- a/Passepartout/App/iOS/CHANGELOG.md +++ b/Passepartout/App/iOS/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Added + +- Handle `--keepalive` option. + ### Changed - Release app in the open via GitHub Actions. diff --git a/Passepartout/App/macOS/CHANGELOG.md b/Passepartout/App/macOS/CHANGELOG.md index 2983b214..5c86ea07 100644 --- a/Passepartout/App/macOS/CHANGELOG.md +++ b/Passepartout/App/macOS/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Added + +- Handle `--keepalive` option. + ### Changed - Release app in the open via GitHub Actions. diff --git a/PassepartoutCore/Package.swift b/PassepartoutCore/Package.swift index 23a0d8d4..4aec7607 100644 --- a/PassepartoutCore/Package.swift +++ b/PassepartoutCore/Package.swift @@ -21,8 +21,8 @@ let package = Package( dependencies: [ // Dependencies declare other packages that this package depends on. // .package(url: /* package url */, from: "1.0.0"), - .package(name: "TunnelKit", url: "https://github.com/passepartoutvpn/tunnelkit", from: "4.0.0"), -// .package(name: "TunnelKit", url: "https://github.com/passepartoutvpn/tunnelkit", .revision("7aa9b4571c2225f420cc0de3985737b1785f7b19")), +// .package(name: "TunnelKit", url: "https://github.com/passepartoutvpn/tunnelkit", from: "4.0.0"), + .package(name: "TunnelKit", url: "https://github.com/passepartoutvpn/tunnelkit", .revision("430e0e6afb6f528b4fdf4210d47017c938a4b115")), // .package(name: "TunnelKit", path: "../../tunnelkit"), .package(name: "Convenience", url: "https://github.com/keeshux/convenience", .revision("347105ec0ce27cd4255acf9875fd60ad1f213801")), .package(url: "https://github.com/Cocoanetics/Kvitto", from: "1.0.0")