Skip to content

Commit f2964c1

Browse files
committed
1.14.3 => 1.14.5; 1.14.4 will be backported patch to resolve current CRAN issues
1 parent 80692fb commit f2964c1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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.14.3
2+
Version: 1.14.5
33
Title: Extension of `data.frame`
44
Authors@R: c(
55
person("Matt","Dowle", role=c("aut","cre"), email="[email protected]"),

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ some:
1818

1919
.PHONY: clean
2020
clean:
21-
$(RM) data.table_1.14.3.tar.gz
21+
$(RM) data.table_1.14.5.tar.gz
2222
$(RM) src/*.o
2323
$(RM) src/*.so
2424

@@ -28,7 +28,7 @@ build:
2828

2929
.PHONY: install
3030
install:
31-
$(R) CMD INSTALL data.table_1.14.3.tar.gz
31+
$(R) CMD INSTALL data.table_1.14.5.tar.gz
3232

3333
.PHONY: uninstall
3434
uninstall:
@@ -40,7 +40,7 @@ test:
4040

4141
.PHONY: check
4242
check:
43-
_R_CHECK_CRAN_INCOMING_REMOTE_=false $(R) CMD check data.table_1.14.3.tar.gz --as-cran --ignore-vignettes --no-stop-on-test-error
43+
_R_CHECK_CRAN_INCOMING_REMOTE_=false $(R) CMD check data.table_1.14.5.tar.gz --as-cran --ignore-vignettes --no-stop-on-test-error
4444

4545
.PHONY: revision
4646
revision:

src/init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,6 @@ SEXP initLastUpdated(SEXP var) {
433433

434434
SEXP dllVersion() {
435435
// .onLoad calls this and checks the same as packageVersion() to ensure no R/C version mismatch, #3056
436-
return(ScalarString(mkChar("1.14.3")));
436+
return(ScalarString(mkChar("1.14.5")));
437437
}
438438

0 commit comments

Comments
 (0)