[Setup] Basic Linux support #16

Merged
javier merged 7 commits from setup/basic-linux-support into main 2023-04-28 23:50:37 +00:00
4 changed files with 34 additions and 36 deletions
Showing only changes of commit b62c3c415b - Show all commits

View File

@ -1,34 +1,32 @@
{
"object": {
"pins" : [
{
"package": "SwiftDocCPlugin",
"repositoryURL": "https://github.com/apple/swift-docc-plugin",
"identity" : "swift-docc-plugin",
"kind" : "remoteSourceControl",
"location" : "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",
"identity" : "swift-docc-symbolkit",
"kind" : "remoteSourceControl",
"location" : "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",
"identity" : "swift-libs",
"kind" : "remoteSourceControl",
"location" : "https://github.com/rock-n-code/swift-libs.git",
"state" : {
"branch": null,
"revision" : "94a49afb6660e62f8c77035a9ea630b07b48c931",
"version" : "0.1.5"
}
}
]
},
"version": 1
],
"version" : 2
}

View File

@ -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: [

View File

@ -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!

View File

@ -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!