diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..07c4e28 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "swift" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" diff --git a/.gitignore b/.gitignore index bb64440..8bc438f 100644 --- a/.gitignore +++ b/.gitignore @@ -10,5 +10,6 @@ build/ Docs/ # SwiftPM -Package.resolved .swiftpm +DerivedData +.DS_Store diff --git a/Package.resolved b/Package.resolved new file mode 100644 index 0000000..3794575 --- /dev/null +++ b/Package.resolved @@ -0,0 +1,42 @@ +{ + "originHash" : "85a59950ddd538ecf3df1e7094d029cc4acaaf466c7cf43d91ef09a0cf637d09", + "pins" : [ + { + "identity" : "bluetooth", + "kind" : "remoteSourceControl", + "location" : "https://github.com/PureSwift/Bluetooth.git", + "state" : { + "branch" : "7.2.0", + "revision" : "3aeeb318fd28997e0d630ddbf3c114156152c0df" + } + }, + { + "identity" : "socket", + "kind" : "remoteSourceControl", + "location" : "https://github.com/PureSwift/Socket.git", + "state" : { + "revision" : "253aef83213691b705dfeec8e20bfd7a72219fec", + "version" : "0.4.0" + } + }, + { + "identity" : "swift-syntax", + "kind" : "remoteSourceControl", + "location" : "https://github.com/swiftlang/swift-syntax.git", + "state" : { + "revision" : "0687f71944021d616d34d922343dcef086855920", + "version" : "600.0.1" + } + }, + { + "identity" : "swift-system", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-system", + "state" : { + "revision" : "61e4ca4b81b9e09e2ec863b00c340eb13497dac6", + "version" : "1.5.0" + } + } + ], + "version" : 3 +} diff --git a/Package.swift b/Package.swift index a85595f..ebdacab 100644 --- a/Package.swift +++ b/Package.swift @@ -24,11 +24,11 @@ var package = Package( dependencies: [ .package( url: "https://github.com/PureSwift/Bluetooth.git", - branch: "master" + branch: "7.2.0" ), .package( url: "https://github.com/PureSwift/Socket.git", - branch: "main" + from: "0.4.0" ) ], targets: [ @@ -80,7 +80,7 @@ var package = Package( let buildDocs = ProcessInfo.processInfo.environment["BUILDING_FOR_DOCUMENTATION_GENERATION"] != nil if buildDocs { package.dependencies += [ - .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"), + .package(url: "https://github.com/swiftlang/swift-docc-plugin.git", from: "1.0.0"), ] } #endif