Skip to content

Commit f16111e

Browse files
committed
patch release on cran
1 parent 9de2567 commit f16111e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: data.table
2-
Version: 1.16.1
2+
Version: 1.16.2
33
Title: Extension of `data.frame`
44
Depends: R (>= 3.3.0)
55
Imports: methods

NEWS.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
**If you are viewing this file on CRAN, please check [latest news on GitHub](https://github.com/Rdatatable/data.table/blob/master/NEWS.md) where the formatting is also better.**
22

3-
# data.table [v1.16.1](https://github.com/Rdatatable/data.table/milestone/35)
3+
# data.table [v1.16.2](https://github.com/Rdatatable/data.table/milestone/35) (9 October 2024)
44

55
## BUG FIXES
66

77
1. Using `print.data.table()` with character truncation using `datatable.prettyprint.char` no longer errors with `NA` entries, [#6441](https://github.com/Rdatatable/data.table/issues/6441). Thanks to @r2evans for the bug report, and @joshhwuu for the fix.
8-
ex
8+
99
2. Fixed a segfault in `fcase()`, [#6448](https://github.com/Rdatatable/data.table/issues/6448). Thanks @ethanbsmith for reporting with reprex, @aitap for finding the root cause, and @MichaelChirico for the PR.
1010

1111
3. `fread()` automatically detects timestamps with sub-second accuracy again, [#6440](https://github.com/Rdatatable/data.table/issues/6440). This was a regression due to interference with new `dec='auto'` support. Thanks @kav2k for the concise report and @MichaelChirico for the fix.

src/init.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,6 @@ SEXP initLastUpdated(SEXP var) {
369369

370370
SEXP dllVersion(void) {
371371
// .onLoad calls this and checks the same as packageVersion() to ensure no R/C version mismatch, #3056
372-
return(ScalarString(mkChar("1.16.1")));
372+
return(ScalarString(mkChar("1.16.2")));
373373
}
374374

0 commit comments

Comments
 (0)