List the available versions of a project.

listProjectVersions(project, url)

Arguments

project

String containing the project name.

url

String containing the URL to the ArtifactDB REST API.

Value

List containing versions, a character vector of available versions; and latest, a string specifying the name of the latest version.

See also

listProjects, to obtain a listing of all projects.

Author

Aaron Lun

Examples

listProjectVersions(example.project, example.url)
#> $versions
#> [1] "base"     "modified"
#> 
#> $latest
#> [1] "modified"
#>