You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, solc-select install only accepts a specific version number or the word all. solc-select use only accepts a specific version.
It would be convenient if these commands accepted latest as an alias for the latest version of Solidity. For example (assuming 0.8.17 is the latest version of Solidity):
$ solc-select install latest
Installing '0.8.17'...
Version '0.8.17' installed.
And:
$ solc-select use latest
Switched global version to 0.8.17
The text was updated successfully, but these errors were encountered:
I am also looking for this feature, as I am implementing this in a CI job that needs to check that the contracts compile to multiple versions including the latest one.
Currently,
solc-select install
only accepts a specific version number or the wordall
.solc-select use
only accepts a specific version.It would be convenient if these commands accepted
latest
as an alias for the latest version of Solidity. For example (assuming0.8.17
is the latest version of Solidity):And:
The text was updated successfully, but these errors were encountered: