Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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 NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@

1. The R version dependency has been bumped from 3.5.0 (2018) to 3.6.0 (2019).

1. R Core is considering adding native support for 64-bit integer vectors. `library(bit64)` will temporarily flash a request for use cases of 64-bit integers as posed by Luke Tierney: https://stat.ethz.ch/pipermail/r-devel/2026-July/084631.html.

# bit64 4.8.2 (2026-05-19)

## BUG FIXES
Expand Down
9 changes: 9 additions & 0 deletions R/zzz.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@
}
# nocov end

.onAttach = function(libname, pkgname) {
packageStartupMessage(
strrep("*", .7*getOption("width")), "\n",

Check warning on line 18 in R/zzz.R

View workflow job for this annotation

GitHub Actions / lint

file=R/zzz.R,line=18,col=17,[numeric_leading_zero_linter] Include the leading zero for fractional numeric constants.
"R-core is collecting use cases for 64-bit integers as they explore native support for these vectors.\n\n",
"See https://stat.ethz.ch/pipermail/r-devel/2026-July/084631.html and reach out to Luke Tierney (luke-tierney@uiowa.edu).\n",

Check warning on line 20 in R/zzz.R

View workflow job for this annotation

GitHub Actions / lint

file=R/zzz.R,line=20,col=121,[line_length_linter] Lines should not be more than 120 characters. This line is 129 characters.
strrep("*", .7*getOption("width")), "\n"

Check warning on line 21 in R/zzz.R

View workflow job for this annotation

GitHub Actions / lint

file=R/zzz.R,line=21,col=17,[numeric_leading_zero_linter] Include the leading zero for fractional numeric constants.
)
}

if (getRversion() < "4.4.0") {
# nolint next: coalesce_linter.
`%||%` = function(x, y) if (is.null(x)) y else x
Expand Down
Loading