Handle --keepalive option
This commit is contained in:
parent
549cd17dbd
commit
9ecb90b8f9
|
@ -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"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue