Updated the minimum version of the SwiftLibs package dependency in the Package file.

This commit is contained in:
Javier Cicchelli 2023-04-29 01:33:26 +02:00
parent 6518386444
commit b62c3c415b
4 changed files with 34 additions and 36 deletions

View File

@ -1,34 +1,32 @@
{ {
"object": { "pins" : [
"pins": [
{ {
"package": "SwiftDocCPlugin", "identity" : "swift-docc-plugin",
"repositoryURL": "https://github.com/apple/swift-docc-plugin", "kind" : "remoteSourceControl",
"state": { "location" : "https://github.com/apple/swift-docc-plugin",
"branch": null, "state" : {
"revision": "9b1258905c21fc1b97bf03d1b4ca12c4ec4e5fda", "revision" : "9b1258905c21fc1b97bf03d1b4ca12c4ec4e5fda",
"version": "1.2.0" "version" : "1.2.0"
} }
}, },
{ {
"package": "SymbolKit", "identity" : "swift-docc-symbolkit",
"repositoryURL": "https://github.com/apple/swift-docc-symbolkit", "kind" : "remoteSourceControl",
"state": { "location" : "https://github.com/apple/swift-docc-symbolkit",
"branch": null, "state" : {
"revision": "b45d1f2ed151d057b54504d653e0da5552844e34", "revision" : "b45d1f2ed151d057b54504d653e0da5552844e34",
"version": "1.0.0" "version" : "1.0.0"
} }
}, },
{ {
"package": "SwiftLibs", "identity" : "swift-libs",
"repositoryURL": "https://github.com/rock-n-code/swift-libs.git", "kind" : "remoteSourceControl",
"state": { "location" : "https://github.com/rock-n-code/swift-libs.git",
"branch": null, "state" : {
"revision": "94a49afb6660e62f8c77035a9ea630b07b48c931", "revision" : "94a49afb6660e62f8c77035a9ea630b07b48c931",
"version": "0.1.5" "version" : "0.1.5"
} }
} }
] ],
}, "version" : 2
"version": 1
} }

View File

@ -28,7 +28,7 @@ let package = Package(
), ),
], ],
dependencies: [ 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"), .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.1.0"),
], ],
targets: [ targets: [

View File

@ -26,7 +26,7 @@ In the intended `Package.swift` file, it is required to add the following depend
```swift ```swift
dependencies: [ 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; 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; 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; 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); 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; 9. wait for the package to be resolved and included in the project;
10. now you should be ready to start using this package! 10. now you should be ready to start using this package!

View File

@ -19,7 +19,7 @@ In the intended `Package.swift` file, it is required to add the dependency, as d
```swift ```swift
dependencies: [ 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; 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; 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; 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); 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; 9. wait for the package to be resolved and included in the project;
10. now you should be ready to start using this package! 10. now you should be ready to start using this package!