Skip to content

Commit f78044e

Browse files
Minimal set of changes to permit master to be 1.17.99 (#6829)
* Minimal set of changes to permit master to be 1.17.99 * bump dev version in makefile and news --------- Co-authored-by: Tyson Barrett <[email protected]>
1 parent 4b3a081 commit f78044e

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
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.16.99
2+
Version: 1.17.99
33
Title: Extension of `data.frame`
44
Depends: R (>= 3.3.0)
55
Imports: methods

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.16.99.tar.gz
21+
$(RM) data.table_1.17.99.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.16.99.tar.gz
31+
$(R) CMD INSTALL data.table_1.17.99.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.16.99.tar.gz --as-cran --ignore-vignettes --no-stop-on-test-error
43+
_R_CHECK_CRAN_INCOMING_REMOTE_=false $(R) CMD check data.table_1.17.99.tar.gz --as-cran --ignore-vignettes --no-stop-on-test-error
4444

4545
.PHONY: revision
4646
revision:

NEWS.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
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.99](https://github.com/Rdatatable/data.table/milestone/31) (in development)
3+
# data.table [v1.17.99](https://github.com/Rdatatable/data.table/milestone/35) (in development)
4+
5+
6+
7+
# data.table [v1.17.0](https://github.com/Rdatatable/data.table/milestone/34) (20 Feb 2025)
48

59
## POTENTIALLY BREAKING CHANGES
610

src/init.c

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

373373
SEXP dllVersion(void) {
374374
// .onLoad calls this and checks the same as packageVersion() to ensure no R/C version mismatch, #3056
375-
return(ScalarString(mkChar("1.16.99")));
375+
return(ScalarString(mkChar("1.17.99")));
376376
}
377377

0 commit comments

Comments
 (0)