Skip to content

Commit

Permalink
release 0.12.18
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Jul 21, 2018
1 parent c014aee commit 172ab72
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
14 changes: 10 additions & 4 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
2018-07-21 Dirk Eddelbuettel <edd@debian.org>

* DESCRIPTION: Release 0.12.18
* inst/NEWS.Rd: Idem
* inst/bib/Rcpp.bib: Idem
* vignettes/Rcpp.bib: Idem
* inst/include/Rcpp/config.h: Idem

* vignettes/Rcpp.bib: Updated other references
* inst/bib/Rcpp.bib: Idem

* inst/unitTests/runit.sugar.R: Additional unit tests
* inst/unitTests/runit.sugar.R: Additional min, max unit tests
* inst/unitTests/cpp/sugar.cpp: Idem

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

* inst/include/Rcpp/sugar/functions/max.h (Rcpp): Also consider case
of an empty vector
* inst/include/Rcpp/sugar/functions/min.h (Rcpp): Idem
* inst/include/Rcpp/sugar/functions/max.h: Also consider case of an
empty vector
* inst/include/Rcpp/sugar/functions/min.h: Idem

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

Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: Rcpp
Title: Seamless R and C++ Integration
Version: 0.12.17.4
Date: 2018-07-13
Version: 0.12.18
Date: 2018-07-21
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
Nathan Russell, Douglas Bates and John Chambers
Maintainer: Dirk Eddelbuettel <edd@debian.org>
Expand Down
2 changes: 1 addition & 1 deletion inst/NEWS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
\newcommand{\ghpr}{\href{https://github.com/RcppCore/Rcpp/pull/#1}{##1}}
\newcommand{\ghit}{\href{https://github.com/RcppCore/Rcpp/issues/#1}{##1}}

\section{Changes in Rcpp version 0.12.18 (2018-07-xx)}{
\section{Changes in Rcpp version 0.12.18 (2018-07-21)}{
\itemize{
\item Changes in Rcpp API:
\itemize{
Expand Down
4 changes: 2 additions & 2 deletions inst/include/Rcpp/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
#define RcppDevVersion(maj, min, rev, dev) (((maj)*1000000) + ((min)*10000) + ((rev)*100) + (dev))

// the currently released version
#define RCPP_VERSION Rcpp_Version(0,12,17)
#define RCPP_VERSION Rcpp_Version(0,12,18)

// the current source snapshot
#define RCPP_DEV_VERSION RcppDevVersion(0,12,17,4)
#define RCPP_DEV_VERSION RcppDevVersion(0,12,18,0)

#endif

0 comments on commit 172ab72

Please sign in to comment.