Skip to content

Commit 6c232e1

Browse files
committed
bump version, update headers, update ChangeLog
1 parent 5718020 commit 6c232e1

File tree

7 files changed

+21
-7
lines changed

7 files changed

+21
-7
lines changed

ChangeLog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2021-01-28 Iñaki Ucar <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
* inst/include/Rcpp/config.h: Idem
5+
6+
* inst/include/Rcpp/iostream/Rstreambuf.h: Support for global Rcout/Rcerr by
7+
adding `-DRCPP_USE_GLOBAL_ROSTREAM` to `PKG_CPPFLAGS`. This behavior mimics
8+
std::cout/cerr. Required initialization code is automatically generated.
9+
* inst/include/Rcpp/routines.h: Ditto
10+
* src/api.cpp: Ditto
11+
* src/attributes.cpp: Ditto
12+
* src/rcpp_init.cpp: Ditto
13+
114
2021-01-21 Dirk Eddelbuettel <[email protected]>
215

316
* DESCRIPTION (Version, Date): Roll minor version

DESCRIPTION

Lines changed: 2 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.6.4
4-
Date: 2021-01-21
3+
Version: 1.0.6.5
4+
Date: 2021-01-28
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
66
Nathan Russell, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>

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.6"
3131

3232
// the current source snapshot
33-
#define RCPP_DEV_VERSION RcppDevVersion(1,0,6,4)
34-
#define RCPP_DEV_VERSION_STRING "1.0.6.4"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,6,5)
34+
#define RCPP_DEV_VERSION_STRING "1.0.6.5"
3535

3636
#endif

inst/include/Rcpp/iostream/Rstreambuf.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// Rstreambuf.h: Rcpp R/C++ interface class library -- stream buffer
44
//
55
// Copyright (C) 2011 - 2017 Dirk Eddelbuettel, Romain Francois and Jelmer Ypma
6+
// Copyright (C) 2021 Dirk Eddelbuettel, Romain Francois, Jelmer Ypma and Iñaki Ucar
67
//
78
// This file is part of Rcpp.
89
//

src/api.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// api.cpp: Rcpp R/C++ interface class library -- Rcpp api
44
//
5-
// Copyright (C) 2012 - 2020 Dirk Eddelbuettel and Romain Francois
5+
// Copyright (C) 2012 - 2021 Dirk Eddelbuettel, Romain Francois and Iñaki Ucar
66
//
77
// This file is part of Rcpp.
88
//

src/attributes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// attributes.cpp: Rcpp R/C++ interface class library -- Rcpp attributes
33
//
4-
// Copyright (C) 2012 - 2021 JJ Allaire, Dirk Eddelbuettel and Romain Francois
4+
// Copyright (C) 2012 - 2021 JJ Allaire, Dirk Eddelbuettel, Romain Francois and Iñaki Ucar
55
//
66
// This file is part of Rcpp.
77
//

src/rcpp_init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
// Rcpp_init.cpp : Rcpp R/C++ interface class library -- Initialize and register
33
//
4-
// Copyright (C) 2010 - 2020 John Chambers, Dirk Eddelbuettel and Romain Francois
4+
// Copyright (C) 2010 - 2021 John Chambers, Dirk Eddelbuettel, Romain Francois and Iñaki Ucar
55
//
66
// This file is part of Rcpp.
77
//

0 commit comments

Comments
 (0)