Skip to contents

Queries the GitHub API to get a list of all available version tags for the OSRM backend that have binaries for the current platform.

Usage

osrm_check_available_versions(prereleases = FALSE)

Arguments

prereleases

A logical value. If TRUE, include pre-release versions in the returned list. Defaults to FALSE.

Value

A character vector of available version tags.

Examples

# \donttest{
if (identical(Sys.getenv("OSRM_EXAMPLES"), "true")) {
  # Get all stable versions with binaries for this platform
  osrm_check_available_versions()
}
# }