Skip to content

Commit 73c59b7

Browse files
committed
release 0.12.3
1 parent 7d70f87 commit 73c59b7

File tree

6 files changed

+31
-7
lines changed

6 files changed

+31
-7
lines changed

ChangeLog

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2016-01-10 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION: Release 0.12.3
4+
* inst/NEWS.Rd: Release 0.12.3
5+
* vignettes/Rcpp.bib: Release 0.12.3
6+
* inst/include/Rcpp/config.h: Release 0.12.3
7+
8+
* debian/*: Changes for Debian release of 0.12.3
9+
10+
* vignettes/Rcpp.bib: Updated all CRAN reference to current versions
11+
112
2016-01-09 Dirk Eddelbuettel <[email protected]>
213

314
* Contributing.md: Added to GitHub repo

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.2.2
4-
Date: 2015-12-05
3+
Version: 0.12.3
4+
Date: 2016-01-10
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey,
66
Qiang Kou, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>

debian/changelog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
rcpp (0.12.3-1) unstable; urgency=low
2+
3+
* New upstream release
4+
5+
* debian/control: Set Build-Depends: to current R version
6+
7+
-- Dirk Eddelbuettel <[email protected]> Sun, 10 Jan 2016 08:43:36 -0600
8+
19
rcpp (0.12.2-1) unstable; urgency=low
210

311
* New upstream release

debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Source: rcpp
22
Section: gnu-r
33
Priority: optional
44
Maintainer: Dirk Eddelbuettel <[email protected]>
5-
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.2.2), cdbs, r-cran-codetools, r-cran-pkgkitten
5+
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.2.3), cdbs, r-cran-codetools, r-cran-pkgkitten
66
Standards-Version: 3.9.6
77
Homepage: http://dirk.eddelbuettel.com/code/rcpp.html
88

inst/NEWS.Rd

+7-2
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.3 (Unreleased)}{
6+
\section{Changes in Rcpp version 0.12.3 (2016-01-10)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{
@@ -25,7 +25,12 @@
2525
\item Changes in Rcpp Modules:
2626
\itemize{
2727
\item The copy constructor now initialized the base class (PR \ghpr{411}
28-
by Joshua Pritikin fixing \ghit{410})
28+
by Joshua Pritikin fixing \ghit{410})
29+
}
30+
\item Changes in Rcpp Repository:
31+
\itemize{
32+
\item Added a file \code{Contributing.md} providing some points to
33+
potential contributors (PR \ghpr{414} closing issue \ghit{413})
2934
}
3035
}
3136
}

inst/include/Rcpp/config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
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,2)
30+
#define RCPP_VERSION Rcpp_Version(0,12,3)
3131

3232
// the current source snapshot
33-
#define RCPP_DEV_VERSION RcppDevVersion(0,12,2,0)
33+
#define RCPP_DEV_VERSION RcppDevVersion(0,12,3,0)
3434

3535
#endif
3636

0 commit comments

Comments
 (0)