Title: | Query 'R' Versions, Including 'r-release' and 'r-oldrel' |
---|---|
Description: | Query the main 'R' 'SVN' repository to find the versions 'r-release' and 'r-oldrel' refer to, and also all previous 'R' versions and their release dates. |
Authors: | Gábor Csárdi [aut, cre], Jeroen Ooms [ctb], R Consortium [fnd] |
Maintainer: | Gábor Csárdi <[email protected]> |
License: | MIT + file LICENSE |
Version: | 2.1.2.9000 |
Built: | 2025-01-24 02:38:14 UTC |
Source: | https://github.com/r-hub/rversions |
R-oldrel is the latest version of the previous minor version. We extract version numbers from the R SVN repository tags.
r_oldrel(dots = TRUE)
r_oldrel(dots = TRUE)
dots |
Whether to use dots instead of dashes in the version number. |
A one row data frame, with columns ‘version’, ‘date’ and ‘nickname’.
r_oldrel()
r_oldrel()
The latest tag in the SVN repository (in terms of version numbers, not dates).
r_release(dots = TRUE)
r_release(dots = TRUE)
dots |
Whether to use dots instead of dashes in the version number. |
A one row data frame, with columns ‘version’, ‘date’ and ‘nickname’.
r_release()
r_release()
r_release()
works based on the SVN tags in the main R source code
repository. However, an SVN tag does not mean that the same version
is available for download. r_release_macos
returns the latest
version for which a macOS installer is available.
r_release_macos()
r_release_macos()
A one row data frame, with columns ‘version’, ‘date’, ‘URL’ and ‘nickname’.
Other R downloads:
r_release_tarball()
,
r_release_win()
r_release() r_release_macos()
r_release() r_release_macos()
r_release()
works based on the SVN tags in the main R source code
repository. However, an SVN tag does not mean that the same version
is available for download. r_release_tarball
returns the latest
version for which a source tarball is available.
r_release_tarball()
r_release_tarball()
A one row data frame, with columns ‘version’, ‘date’, ‘URL’ and ‘nickname’.
Other R downloads:
r_release_macos()
,
r_release_win()
r_release() r_release_tarball()
r_release() r_release_tarball()
r_release()
works based on the SVN tags in the main R source code
repository. However, an SVN tag does not mean that the same version
is available for download. r_release_win
returns the latest
version for which a Windows installer is available.
r_release_win()
r_release_win()
A one row data frame, with columns ‘version’, ‘date’, ‘URL’ and ‘nickname’.
Other R downloads:
r_release_macos()
,
r_release_tarball()
r_release() r_release_win()
r_release() r_release_win()
R version numbers consist of three numbers (since version 1.4.1): major, minor and patch.
r_versions(dots = TRUE)
r_versions(dots = TRUE)
dots |
Whether to use dots instead of dashes in the version number. |
We extract the version numbers from the tags in the SVN repository.
A data frame with three columns: ‘version’, ‘date’ and ‘nickname’.
r_versions()
r_versions()