Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify versioning policy #701

Merged
merged 5 commits into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
public
.DS_Store
README.html

/.quarto/
8 changes: 5 additions & 3 deletions content/blog/2019/r-version-support/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rmd_hash: efe6168c59ef5121

Though package-specific minimum versions of R are given in the `Depends` fields of individual `DESCRIPTION` files, our general policy is to support the **current version**, the **devel version**, and **four previous versions** of R.

**Edit 2022-11-15[^1]**
This policy applies to all packages that we support, i.e. as well as all packages in the tidyverse, it also applies the infrastructure packages that we maintain in [r-lib](https://github.com/r-lib).
hadley marked this conversation as resolved.
Show resolved Hide resolved

Over the past several years and moving forward (as described in the "Release plans" section of the [R Developer Page](https://developer.r-project.org/)), R version releases occur annually:

Expand All @@ -44,7 +44,9 @@ Tidyverse minimum R version support

</div>

[^1]: Add table with annual historic and projected R-version support.
[^1]: Note that we only update the required version on package release, so you may see older versions listed in published CRAN packages.
hadley marked this conversation as resolved.
Show resolved Hide resolved

[^2]: Note that older versions *may* be supported. For example, as of 2022, the [tidyverse package `Depends` field](https://github.com/tidyverse/tidyverse/blob/aeabcde8c6ae435f16b5173682d5667d292829fb/DESCRIPTION#LL17-L18) is R (\>= 3.3).
### Edit history

* 2022-11-15: Added table with annual historic and projected R-version support.
* 2024-07-03: Clarified that the policy also applies to r-lib.