diff --git a/Package.resolved b/Package.resolved index fe4c92a..be655d8 100644 --- a/Package.resolved +++ b/Package.resolved @@ -1,34 +1,32 @@ { - "object": { - "pins": [ - { - "package": "SwiftDocCPlugin", - "repositoryURL": "https://github.com/apple/swift-docc-plugin", - "state": { - "branch": null, - "revision": "9b1258905c21fc1b97bf03d1b4ca12c4ec4e5fda", - "version": "1.2.0" - } - }, - { - "package": "SymbolKit", - "repositoryURL": "https://github.com/apple/swift-docc-symbolkit", - "state": { - "branch": null, - "revision": "b45d1f2ed151d057b54504d653e0da5552844e34", - "version": "1.0.0" - } - }, - { - "package": "SwiftLibs", - "repositoryURL": "https://github.com/rock-n-code/swift-libs.git", - "state": { - "branch": null, - "revision": "94a49afb6660e62f8c77035a9ea630b07b48c931", - "version": "0.1.5" - } + "pins" : [ + { + "identity" : "swift-docc-plugin", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-docc-plugin", + "state" : { + "revision" : "9b1258905c21fc1b97bf03d1b4ca12c4ec4e5fda", + "version" : "1.2.0" } - ] - }, - "version": 1 + }, + { + "identity" : "swift-docc-symbolkit", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-docc-symbolkit", + "state" : { + "revision" : "b45d1f2ed151d057b54504d653e0da5552844e34", + "version" : "1.0.0" + } + }, + { + "identity" : "swift-libs", + "kind" : "remoteSourceControl", + "location" : "https://github.com/rock-n-code/swift-libs.git", + "state" : { + "revision" : "94a49afb6660e62f8c77035a9ea630b07b48c931", + "version" : "0.1.5" + } + } + ], + "version" : 2 } diff --git a/Package.swift b/Package.swift index 2d76f8e..1f97c91 100644 --- a/Package.swift +++ b/Package.swift @@ -28,7 +28,7 @@ let package = Package( ), ], dependencies: [ - .package(url: "https://github.com/rock-n-code/swift-libs.git", from: "0.1.0"), + .package(url: "https://github.com/rock-n-code/swift-libs.git", from: "0.1.5"), .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.1.0"), ], targets: [ diff --git a/README.md b/README.md index afd869f..5c4d4b6 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ In the intended `Package.swift` file, it is required to add the following depend ```swift dependencies: [ // ... - .package(url: "https://github.com/rock-n-code/amiibo-service.git", from: "1.0.1") + .package(url: "https://github.com/rock-n-code/amiibo-service.git", from: "1.0.2") // ... ], ``` @@ -55,7 +55,7 @@ In an opened Xcode project, it is required to follow these steps to install the 4. press on the *+* (plus) button to add dependencies to the project; 5. enter the URL `https://github.com/rock-n-code/amiibo-service` into the *Search or Enter Package URL* located in the upper right corner; 6. select the retrieved option; -7. define the dependency rule (the *Up to Next Major Version* option and the *1.0.1* text are recommended); +7. define the dependency rule (the *Up to Next Major Version* option and the *1.0.2* text are recommended); 8. select the target to which the dependency will be applied (if required); 9. wait for the package to be resolved and included in the project; 10. now you should be ready to start using this package! diff --git a/Sources/AmiiboService.docc/GettingStarted.md b/Sources/AmiiboService.docc/GettingStarted.md index dd5c4c0..031e942 100644 --- a/Sources/AmiiboService.docc/GettingStarted.md +++ b/Sources/AmiiboService.docc/GettingStarted.md @@ -19,7 +19,7 @@ In the intended `Package.swift` file, it is required to add the dependency, as d ```swift dependencies: [ // ... - .package(url: "https://github.com/rock-n-code/amiibo-service.git", from: "1.0.1") + .package(url: "https://github.com/rock-n-code/amiibo-service.git", from: "1.0.2") // ... ], ``` @@ -48,7 +48,7 @@ In an opened Xcode project, it is required to follow these steps to install the 4. press on the *+* (plus) button to add dependencies to the project; 5. enter the URL `https://github.com/rock-n-code/amiibo-service` into the *Search or Enter Package URL* located in the upper right corner; 6. select the retrieved option; -7. define the dependency rule (the *Up to Next Major Version* option and the *1.0.1* text are recommended); +7. define the dependency rule (the *Up to Next Major Version* option and the *1.0.2* text are recommended); 8. select the target to which the dependency will be applied (if required); 9. wait for the package to be resolved and included in the project; 10. now you should be ready to start using this package!