Skip to content

Commit 3456999

Browse files
authored
Merge pull request #1267 from RcppCore/feature/small_polishes
Update URLs, set Encoding, roll versions
2 parents 71e64b0 + 80db785 commit 3456999

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

ChangeLog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2023-06-12 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll micro version
4+
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
5+
6+
* README.md: Two URL updates for appease R CMD check
7+
8+
* DESCRIPTION (Encoding): Somewhat belated addition
9+
110
2023-04-18 Dirk Eddelbuettel <[email protected]>
211

312
* README.md: Use app.codecov.io as base for codecov link

DESCRIPTION

Lines changed: 3 additions & 2 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.10.4
4-
Date: 2023-03-26
3+
Version: 1.0.10.5
4+
Date: 2023-06-12
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
66
Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>
@@ -21,3 +21,4 @@ License: GPL (>= 2)
2121
BugReports: https://github.com/RcppCore/Rcpp/issues
2222
MailingList: [email protected]
2323
RoxygenNote: 6.1.1
24+
Encoding: UTF-8

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ represented as instances of `Rcpp::Environment`, functions are represented as
3030
`Rcpp::Function`, etc ... The
3131
[Rcpp-introduction](https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-introduction.pdf)
3232
vignette (now published as a
33-
[TAS paper](https://amstat.tandfonline.com/doi/abs/10.1080/00031305.2017.1375990); an
33+
[TAS paper](https://doi.org/10.1080/00031305.2017.1375990); an
3434
[earlier introduction](https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-jss-2011.pdf)
3535
was also published as a [JSS paper](https://doi.org/10.18637/jss.v040.i08)
3636
provides a good entry point to Rcpp as do the [Rcpp
@@ -68,7 +68,7 @@ See the [Rcpp-atttributes](https://cran.r-project.org/package=Rcpp/vignettes/Rcp
6868
The package ships with ten pdf vignettes, including a [recent introduction to
6969
Rcpp](https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-introduction.pdf) now
7070
published as a [paper in
71-
TAS](https://amstat.tandfonline.com/doi/abs/10.1080/00031305.2017.1375990) (and as a
71+
TAS](https://doi.org/10.1080/00031305.2017.1375990) (and as a
7272
[preprint in PeerJ](https://peerj.com/preprints/3188/)). Also available is an
7373
[earlier
7474
introduction](https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-jss-2011.pdf)

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.10"
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,10,4)
34-
#define RCPP_DEV_VERSION_STRING "1.0.10.4"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,10,5)
34+
#define RCPP_DEV_VERSION_STRING "1.0.10.5"
3535

3636
#endif

0 commit comments

Comments
 (0)