Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/r-hub/rversions

R versions, release dates and nicknames
https://github.com/r-hub/rversions

r r-package rstats

Last synced: 3 months ago
JSON representation

R versions, release dates and nicknames

Awesome Lists containing this project

README

        

---
output:
github_document:
html_preview: false
---

```{r, setup, echo = FALSE, message = FALSE}
knitr::opts_chunk$set(
comment = "#>",
tidy = FALSE,
error = FALSE)
```

# rversions

> Past and present R versions

[![R-CMD-check](https://github.com/r-hub/rversions/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-hub/rversions/actions/workflows/R-CMD-check.yaml)
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/rversions)](https://r-pkg.org/pkg/rversions)
[![CRAN version](https://www.r-pkg.org/badges/version/rversions)](https://r-pkg.org/pkg/rversions)
[![CRAN checks](https://cranchecks.info/badges/summary/rversions)](https://cran.r-project.org/web/checks/check_results_rversions.html)
[![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/r-hub/community)
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![Codecov test coverage](https://codecov.io/gh/r-hub/rversions/branch/master/graph/badge.svg)](https://app.codecov.io/gh/r-hub/rversions?branch=master)

The R version numbers and dates are extracted from the
main R SVN repository at https://svn.r-project.org/R/.

`rversions` is in particular useful for determining at any given moment what versions "R-release" and "R-oldrel" refer to. This is useful for e.g. [R-hub](https://docs.r-hub.io/).

## Installation

```{r eval = FALSE}
install.packages("rversions")
```

## Usage

### R-release and R-oldrel

```{r}
library(rversions)
r_release()
r_oldrel()
```

### All R versions and release dates

```{r}
r_versions()
```

## License

MIT © [Gábor Csárdi](https://github.com/gaborcsardi)