Skip to content

Commit 95668a7

Browse files
committed
minor improvement to cleanup script, roll version and date
1 parent 42df734 commit 95668a7

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2021-07-08 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
* inst/include/Rcpp/config.h: Idem
5+
6+
* cleanup: Check for optional vignettes/rmd before trying to access it
7+
18
2021-07-06 Dirk Eddelbuettel <[email protected]>
29

310
* DESCRIPTION (Date, Version): Release 1.0.7

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 1.0.7
3+
Version: 1.0.7.1
44
Date: 2021-07-06
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
66
Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers

cleanup

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ rm -rf autom4te.cache inst/lib/ inst/doc/man/ inst/doc/html/ inst/doc/latex/ \
3535
find . -name \*~ -exec rm {} \;
3636
find . -name \*.flc -exec rm {} \;
3737

38-
(cd vignettes/ && make clean && cd -) >/dev/null
39-
(cd vignettes/rmd/ && make clean && cd -) >/dev/null
38+
(test -d vignettes/ && cd vignettes/ && make clean && cd -) >/dev/null
39+
(test -d vignettes/rmd && cd vignettes/rmd/ && make clean && cd -) >/dev/null

inst/include/Rcpp/config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#define RCPP_VERSION_STRING "1.0.7"
3131

3232
// the current source snapshot (using four components, if a fifth is used in DESCRIPTION we ignore it)
33-
#define RCPP_DEV_VERSION RcppDevVersion(1,0,7,0)
34-
#define RCPP_DEV_VERSION_STRING "1.0.7"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,7,1)
34+
#define RCPP_DEV_VERSION_STRING "1.0.7.1"
3535

3636
#endif

0 commit comments

Comments
 (0)