Skip to content

Commit 986c4db

Browse files
committed
2.0.6
1 parent ca451ea commit 986c4db

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

Sources/SystemExtensionKit/SystemExtensionKit+.swift

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -122,18 +122,6 @@ public extension SystemExtensionKit {
122122
}
123123
}
124124

125-
public extension Bundle {
126-
var extensionMachServiceName: String? {
127-
guard
128-
let networkExtensionKeys = object(forInfoDictionaryKey: "NetworkExtension") as? [String: Any],
129-
let machServiceName = networkExtensionKeys["NEMachServiceName"] as? String
130-
else {
131-
return nil
132-
}
133-
return machServiceName
134-
}
135-
}
136-
137125
// MARK: - OSSystemExtensionError Code Description
138126

139127
extension OSSystemExtensionError.Code: CustomStringConvertible {

Sources/SystemExtensionKit/SystemExtensionKit.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import SystemExtensions
1212
#error("SystemExtensionKit doesn't support Swift versions below 5.5.")
1313
#endif
1414

15-
/// Current SystemExtensionKit version 2.0.5. Necessary since SPM doesn't use dynamic libraries. Plus this will be more accurate.
16-
public let version = "2.0.5"
15+
/// Current SystemExtensionKit version 2.0.6. Necessary since SPM doesn't use dynamic libraries. Plus this will be more accurate.
16+
public let version = "2.0.6"
1717

1818
public let SystemExtension = SystemExtensionKit.shared
1919

0 commit comments

Comments
 (0)