Skip to content

Commit 1906017

Browse files
committed
release 1.0.8
1 parent fabf4cd commit 1906017

File tree

5 files changed

+18
-13
lines changed

5 files changed

+18
-13
lines changed

ChangeLog

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
2022-01-11 Dirk Eddelbuettel <[email protected]>
22

3-
* vignettes/rmd/*: Updated
3+
* DESCRIPTION (Date, Version): Release 1.0.8
4+
5+
* inst/include/Rcpp/config.h: Idem
6+
* inst/NEWS.Rd: Idem
7+
* vignettes/rmd/Rcpp.bib: Idem
8+
* inst/bib/Rcpp.bib: Idem
9+
* vignettes/pdf/*: Rebuilt
10+
11+
* inst/include/Rcpp/r/headers.h: STRICT_R_HEADERS set by default
12+
unless override RCPP_NO_STRICT_HEADERS is set (cf issue #1158)
413

514
2022-01-10 Dirk Eddelbuettel <[email protected]>
615

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: 1.0.7.6
4-
Date: 2022-01-01
3+
Version: 1.0.8
4+
Date: 2022-01-11
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]>

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 release version 1.0.8 (2022-01-xx)}{
6+
\section{Changes in Rcpp release version 1.0.8 (2022-01-11)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{

inst/include/Rcpp/config.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
#define RcppDevVersion(maj, min, rev, dev) (((maj)*1000000) + ((min)*10000) + ((rev)*100) + (dev))
2727

2828
// the currently released version
29-
#define RCPP_VERSION Rcpp_Version(1,0,7)
30-
#define RCPP_VERSION_STRING "1.0.7"
29+
#define RCPP_VERSION Rcpp_Version(1,0,8)
30+
#define RCPP_VERSION_STRING "1.0.8"
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,7,6)
34-
#define RCPP_DEV_VERSION_STRING "1.0.7.6"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,8,0)
34+
#define RCPP_DEV_VERSION_STRING "1.0.8.0"
3535

3636
#endif

inst/include/Rcpp/r/headers.h

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// headers.h: Rcpp R/C++ interface class library -- R headers
22
//
33
// Copyright (C) 2008 - 2009 Dirk Eddelbuettel
4-
// Copyright (C) 2009 - 2021 Dirk Eddelbuettel and Romain Francois
4+
// Copyright (C) 2009 - 2022 Dirk Eddelbuettel and Romain Francois
55
//
66
// This file is part of Rcpp.
77
//
@@ -25,10 +25,6 @@
2525
#define MAXELTSIZE 8192
2626
#define R_NO_REMAP
2727

28-
// until January 2022, define RCPP_NO_STRICT_R_HEADERS for transition
29-
#ifndef RCPP_NO_STRICT_R_HEADERS
30-
# define RCPP_NO_STRICT_R_HEADERS
31-
#endif
3228
// define strict headers for R to not clash on ERROR, MESSGAGE, etc
3329
#ifndef RCPP_NO_STRICT_R_HEADERS
3430
# ifndef STRICT_R_HEADERS

0 commit comments

Comments
 (0)