Skip to content

Commit 3d26d32

Browse files
authored
Merge pull request #1029 from RcppCore/feature/simpler_description
Feature/simpler description
2 parents 4f438b6 + 8831e39 commit 3d26d32

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2019-12-01 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
* inst/include/Rcpp/config.h: Idem
5+
6+
* DESCRIPTION (Suggests): Remove knitr, rmarkdown, pinp
7+
* DESCRIPTION (VignetteBuilder): Remove knitr
8+
19
2019-11-26 Dirk Eddelbuettel <[email protected]>
210

311
* inst/tinytest/test_embedded_r.R: Use sink to suppress noisy output,

DESCRIPTION

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 1.0.3.2
4-
Date: 2019-11-19
3+
Version: 1.0.3.3
4+
Date: 2019-12-01
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
66
Nathan Russell, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>
@@ -16,8 +16,7 @@ Description: The 'Rcpp' package provides R functions as well as C++ classes whic
1616
<doi:10.1080/00031305.2017.1375990>); see 'citation("Rcpp")' for details.
1717
Depends: R (>= 3.0.0)
1818
Imports: methods, utils
19-
Suggests: tinytest, inline, rbenchmark, knitr, rmarkdown, pinp, pkgKitten (>= 0.1.2)
20-
VignetteBuilder: knitr
19+
Suggests: tinytest, inline, rbenchmark, pkgKitten (>= 0.1.2)
2120
URL: http://www.rcpp.org, http://dirk.eddelbuettel.com/code/rcpp.html, https://github.com/RcppCore/Rcpp
2221
License: GPL (>= 2)
2322
BugReports: https://github.com/RcppCore/Rcpp/issues

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.3"
3131

3232
// the current source snapshot
33-
#define RCPP_DEV_VERSION RcppDevVersion(1,0,3,2)
34-
#define RCPP_DEV_VERSION_STRING "1.0.3.2"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,3,3)
34+
#define RCPP_DEV_VERSION_STRING "1.0.3.3"
3535

3636
#endif

0 commit comments

Comments
 (0)