Skip to content

Commit 5b47565

Browse files
committed
Temporarily disable the list-available command
The current WIP implementation doesn't take platform into account when listing available releases, which means it can print releases that are not actually available for a given platform.
1 parent 21ab2b4 commit 5b47565

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ Target: x86_64-unknown-linux-gnu
2525

2626
- Installing multiple toolchains, including both stable releases and snapshots
2727
- Switching which installed toolchain is active (i.e. which one is discovered via `$PATH`)
28-
- Updating installed toolchains to the latest available versions of those toolchains
28+
- Updating installed toolchains to the latest available versions of those toolchains (not yet implemented)
2929
- Uninstalling installed toolchains
30-
- Listing the toolchains that are available to install
30+
- Listing the toolchains that are available to install (not yet implemented)
3131

3232
## Current development status
3333

@@ -169,6 +169,8 @@ Update replaces a given toolchain with a later version of that toolchain. For a
169169

170170
If no version is provided, update will update the currently selected toolchain to its latest version while removing the old version. The newly installed version will be used.
171171

172+
Note that this command isn't implemented yet, but it will be included in a future release.
173+
172174
```
173175
$ swiftly update
174176
```
@@ -207,6 +209,8 @@ swiftly update main-snapshot
207209

208210
The `list-available` command can be used to list the latest toolchains that Apple has made available to install.
209211

212+
Note that this command isn't implemented yet, but it will be included in a future release.
213+
210214
```
211215
swiftly list-available
212216
```
@@ -223,6 +227,8 @@ $ swiftly list-available 5.7-snapshot
223227

224228
This command checks to see if there are new versions of `swiftly` itself and upgrades to them if so.
225229

230+
Note that this command isn't implemented yet, but it will be included in a future release.
231+
226232
`swiftly self-update`
227233

228234
### Specifying a snapshot toolchain

Sources/Swiftly/Swiftly.swift

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ public struct Swiftly: SwiftlyCommand {
1818
Use.self,
1919
Uninstall.self,
2020
List.self,
21-
ListAvailable.self,
2221
]
2322
)
2423

0 commit comments

Comments
 (0)