Skip to content

Commit 172ab72

Browse files
committed
release 0.12.18
1 parent c014aee commit 172ab72

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

ChangeLog

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
2018-07-21 Dirk Eddelbuettel <edd@debian.org>
22

3+
* DESCRIPTION: Release 0.12.18
4+
* inst/NEWS.Rd: Idem
5+
* inst/bib/Rcpp.bib: Idem
6+
* vignettes/Rcpp.bib: Idem
7+
* inst/include/Rcpp/config.h: Idem
8+
39
* vignettes/Rcpp.bib: Updated other references
410
* inst/bib/Rcpp.bib: Idem
511

6-
* inst/unitTests/runit.sugar.R: Additional unit tests
12+
* inst/unitTests/runit.sugar.R: Additional min, max unit tests
713
* inst/unitTests/cpp/sugar.cpp: Idem
814

915
2018-07-20 Dirk Eddelbuettel <edd@debian.org>
1016

11-
* inst/include/Rcpp/sugar/functions/max.h (Rcpp): Also consider case
12-
of an empty vector
13-
* inst/include/Rcpp/sugar/functions/min.h (Rcpp): Idem
17+
* inst/include/Rcpp/sugar/functions/max.h: Also consider case of an
18+
empty vector
19+
* inst/include/Rcpp/sugar/functions/min.h: Idem
1420

1521
2018-07-19 Jack Wasey <jack@jackwasey.com>
1622

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 0.12.17.4
4-
Date: 2018-07-13
3+
Version: 0.12.18
4+
Date: 2018-07-21
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
66
Nathan Russell, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <edd@debian.org>

inst/NEWS.Rd

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
\newcommand{\ghpr}{\href{https://github.com/RcppCore/Rcpp/pull/#1}{##1}}
44
\newcommand{\ghit}{\href{https://github.com/RcppCore/Rcpp/issues/#1}{##1}}
55

6-
\section{Changes in Rcpp version 0.12.18 (2018-07-xx)}{
6+
\section{Changes in Rcpp version 0.12.18 (2018-07-21)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{

inst/include/Rcpp/config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
#define RcppDevVersion(maj, min, rev, dev) (((maj)*1000000) + ((min)*10000) + ((rev)*100) + (dev))
2828

2929
// the currently released version
30-
#define RCPP_VERSION Rcpp_Version(0,12,17)
30+
#define RCPP_VERSION Rcpp_Version(0,12,18)
3131

3232
// the current source snapshot
33-
#define RCPP_DEV_VERSION RcppDevVersion(0,12,17,4)
33+
#define RCPP_DEV_VERSION RcppDevVersion(0,12,18,0)
3434

3535
#endif

0 commit comments

Comments
 (0)