Skip to content

Commit 4152c6c

Browse files
committed
CRAN submission 1.17.8
1 parent 5e5b03c commit 4152c6c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.dev/CRAN_Release.cmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ checkbashisms ./configure # for portability; e.g. Solaris 10 running Bourne she
5151

5252
# Ensure no non-ASCII, other than in README.md is ok
5353
# tests.Rraw in particular have failed CRAN Solaris (only) due to this.
54-
grep -RI --exclude-dir=".git" --exclude="*.md" --exclude="*~" --color='auto' -P -n "[\x80-\xFF]" ./
54+
# grep -RI --exclude-dir=".git" --exclude="*.md" --exclude="*~" --color='auto' -P -n "[\x80-\xFF]" ./ # outdated check as Non-ASCII can be in other places
5555

5656
# Unicode is now ok. This unicode in tests.Rraw is passing on CRAN.
57-
grep -RI --exclude-dir=".git" --exclude="*.md" --exclude="*~" --color='auto' -n "[\]u[0-9]" ./
57+
# grep -RI --exclude-dir=".git" --exclude="*.md" --exclude="*~" --color='auto' -n "[\]u[0-9]" ./
5858

59-
# Ensure no calls to omp_get_max_threads() also since access should be via getDTthreads()
59+
# Ensure no calls to omp_get_max_threads() also since access should be via getDTthreads() -- shows 4 lines, in fread.c and myomp.h
6060
grep --exclude="./src/openmp-utils.c" omp_get_max_threads ./src/*
6161

62-
# Ensure all #pragama omp parallel directives include a num_threads() clause
62+
# Ensure all #pragama omp parallel directives include a num_threads() clause -- shows 8 lines, all ok
6363
grep -i "pragma.*omp parallel" ./src/*.c | grep -v getDTthreads
6464
# for each num_threads(nth) above, ensure for Solaris that the variable is not declared const, #4638
6565
grep -i "const.*int.*nth" ./src/*.c

DESCRIPTION

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

src/init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,5 +426,5 @@ SEXP initLastUpdated(SEXP var)
426426
SEXP dllVersion(void)
427427
{
428428
// .onLoad calls this and checks the same as packageVersion() to ensure no R/C version mismatch, #3056
429-
return (ScalarString(mkChar("1.17.7")));
429+
return (ScalarString(mkChar("1.17.8")));
430430
}

0 commit comments

Comments
 (0)