forked from RcppCore/Rcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
6898 lines (4618 loc) · 269 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2015-12-29 Joshua Pritikin <[email protected]>
* inst/include/Rcpp/Module.h: Initialize base class in copy ctor
* inst/include/Rcpp/macros/interface.h: Idem
2015-12-12 Qiang Kou <[email protected]>
* inst/include/Rcpp/String.h: std::hash<Rcpp::String>
* inst/unitTests/cpp/wrap.cpp: Unit tests
* inst/unitTests/runit.wrap.R: Unit tests
2015-12-04 Qiang Kou <[email protected]>
* inst/include/Rcpp/vector/Matrix.h: Add math operators between matrix
and scalar
* inst/unitTests/runit.Matrix.R: Unit tests
* inst/unitTests/cpp/Matrix.cpp: Unit tests
2015-11-27 Daniel C. Dillon <[email protected]>
* inst/include/Rcpp/vector/proxy.h: const_iterators for CharacterVector
now work analogously to iterators
* inst/include/Rcpp/vector/const_generic_proxy.h: Idem
* inst/include/Rcpp/vector/const_string_proxy.h: Idem
* inst/include/Rcpp/vector/traits.h: Idem
* inst/unitTests/cpp/Vector.cpp: Tests for above
* inst/unitTests/runit.Vector.R: Idem
[ All this was commited on Sep 5 but only merged Nov 27 ]
2015-11-25 JJ Allaire <[email protected]>
* src/attributes.cpp: Avoid invalid function names when
generating C++ interfaces.
2015-11-15 Kazuki Fukui <[email protected]>>
* src/attributes.cpp: Insert extra space around & in interface
2015-11-14 Dirk Eddelbuettel <[email protected]>
* .travis.yml: Add token for secure Slack & Travis integration
2015-11-14 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Release 0.12.2
* inst/NEWS.Rd: Release 0.12.2
* vignettes/Rcpp.bib: Release 0.12.2
* inst/include/Rcpp/config.h: Release 0.12.2
* debian/*: Changes for Debian release of 0.12.2
* vignettes/Rcpp.bib: Updated all CRAN reference to current versions
2015-11-13 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/complex.h: Define a header guard for dplyr to
prevent errorneous redefinition of operator<<() via dplyr
2015-11-11 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/vector/Matrix.h: Further simplification
2015-11-11 Qiang Kou <[email protected]>
* include/Rcpp/complex.h: operator<< for Rcomplex
2015-11-10 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/vector/Matrix.h: Added transpose for character
matrices as well
* inst/unitTests/runit.Matrix.R: New unit tests
* inst/unitTests/cpp/Matrix.cpp: Ditto
2015-11-08 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/vector/Matrix.h: Matrix transpose is now a free
function for both INTSXP and REALSXP
* inst/unitTests/runit.Matrix.R: New unit tests
* inst/unitTests/cpp/Matrix.cpp: Ditto
2015-11-08 Daniel C. Dillon <[email protected]>
* inst/include/Rcpp/Nullable.h: No longer prevent assignment of
R_NilValue to Nullable<> in function signatures
* inst/include/Rcpp/vector/Matrix.h: Use showpoint in operator<<()
2015-11-07 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/vector/Matrix.h: Beginnings of a Matrix transpose
2015-11-06 Kevin Ushey <kevinushey@gmailcom>
* inst/include/Rcpp/vector/Subsetter.h: Add sugar math operators
* inst/unitTests/runit.subset.R: Unit tests
* inst/unitTests/cpp/Subset.cpp: Unit tests
* inst/NEWS.Rd: NEWS entry
2015-11-01 Qiang Kou <[email protected]>
* inst/include/Rcpp/vector/MatrixColumn.h: Fix overflow
2015-11-01 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Roll Version: to 0.12.1.4
2015-10-30 Nathan Russell <[email protected]>
* inst/include/Rcpp/sugar/functions/cummax.h: New sugar function
* inst/include/Rcpp/sugar/functions/cummin.h: New sugar function
* inst/include/Rcpp/sugar/functions/cumprod.h: New sugar function
* inst/unitTests/cpp/sugar.cpp: Unit test support for new functions
* inst/unitTests/runit.sugar.R: Ditto
2015-10-08 Tianqi Chen <[email protected]>
* inst/include/Rcpp/api/meat/is.h: Enhance the check for Rcpp Module
objects (PR #381 fixing #380)
2015-10-01 JJ Allaire <[email protected]>
* src/attributes.cpp: Enable export of C++ interface for functions that
return void
2015-09-28 Dirk Eddelbuettel <[email protected]>
* inst/NEWS.Rd: GitHub pull requests and issues are now linked
* src/barrier.cpp: Use SET_STRING_ELT() on LHS (with thanks to Luke)
2015-09-21 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/String.h: Before assigning ensure we received
exactly one string argument
2015-09-10 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Release 0.12.1
* inst/NEWS.Rd: Release 0.12.1
* vignettes/Rcpp.bib: Release 0.12.1
* inst/include/Rcpp/config.h: Release 0.12.1
* debian/*: Changes for Debian release of 0.12.1
2015-09-09 Dirk Eddelbuettel <[email protected]>
* vignettes/Rcpp-attributes.Rnw: Less harsh grey border around code
* vignettes/Rcpp-*.Rnw: Ditto
* inst/include/Rcpp/String.h: More comparison operators
2015-09-08 Daniel C. Dillon <[email protected]>
* inst/include/Rcpp/vector/string_proxy.h: More comparison operators
* inst/include/Rcpp/vector/const_string_proxy.h: More comparison operators
2015-09-08 Florian Plaza Onate <[email protected]>
* inst/include/Rcpp/Dimension.h: Correct creation and access of large
matrices
* inst/include/Rcpp/vector/Matrix.h: Ditto
2015-09-07 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/Nullable.h: New class for objects which may be NULL
* inst/unitTests/cpp/Vector.cpp: Unit tests for Nullable
* inst/unitTests/runit.Vector.R: Ditto
2015-09-06 Daniel C. Dillon <[email protected]>
* inst/include/Rcpp/String.h: Make strings and string_proxies comparable
* inst/unitTests/cpp/String.cpp: Unit tests for above
* inst/unitTests/runit.String.R: Ditto
2015-09-05 Daniel C. Dillon <[email protected]>
* inst/include/Rcpp/vector/Matrix.h: Matrix now has appropriate operator<<
* inst/include/Rcpp/vector/Vector.h: Vector now has appropriate operator<<
* inst/unitTests/cpp/Vector.cpp: Unit tests for above
2015-09-01 Florian Plaza Onate <[email protected]>
* inst/include/Rcpp/vector/Subsetter.h: Allow logical subsets to be
assigned to a vector of size 1
(pull request #349, discussed in issue #345)
* inst/unitTests/cpp/Subset.cpp: Add unit test for above
* inst/unitTests/runit.subset.R: Ditto
2015-08-31 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll Version and Date
2015-08-30 Dirk Eddelbuettel <[email protected]>
* vignettes/Rcpp.bib: Updated RcppGSL entry
2015-08-29 Dirk Eddelbuettel <[email protected]>
* vignettes/Rcpp.bib: Add RcppZiggurat entry
* inst/include/Rcpp/utils/tinyformat.h: Updated to current upstream
version keeping our local modifications / adaptations (PR #357)
2015-08-29 Qiang Kou <[email protected]>
* inst/include/Rcpp/vector/Subsetter.h: Enable logical subsetting on
both LHS and RHS, eg 'a[b > 3] = b[b > 3]' (pull request #352 addressing
issue #345)
* inst/unitTests/cpp/Subset.cpp: Ditto
* inst/unitTests/runit.subset.R: Unit tests for above
2015-08-26 Dirk Eddelbuettel <[email protected]>
* inst/unitTests/testRcppClass/src/rcpp_module.cpp: Renamed Module
'World' to 'RcppClassWorld' to avoid multiple modules with same name
(pull request #351, fixed issue #350)
* inst/unitTests/testRcppClass/man/Rcpp_class_examples.Rd: Ditto
* inst/unitTests/testRcppClass/R/load.R: Ditto
* inst/unitTests/testRcppClass/NAMESPACE: Ditto
* inst/unitTests/runit.Module.client.package.R: Re-enable test
* inst/unitTests/testRcppModule/src/rcpp_module.cpp: Renamed Module
'World' to 'RcppModuleWorld' to avoid multiple modules with same name
* inst/unitTests/cpp/modref.cpp: Rename 'World' to 'ModRefWorld'
* inst/unitTests/runit.modref.R (test.modRef): Ditto
* inst/unitTests/cpp/Module.cpp: Rename 'World' to 'ModuleWorld'
* inst/unitTests/runit.Module.R (test.Module): Ditto
2015-08-25 Kurt Hornik <[email protected]>
* R/loadModule.R: For now=TRUE, always set .botched to FALSE which
corresponds to the case of the methods package being in the search path
* inst/include/Rcpp/Reference.h: Call call with the internal Namespace
2015-08-24 Dirk Eddelbuettel <[email protected]>
* vignettes/Rcpp.bib: Updated R / R Core references
2015-08-23 Romain Francois <[email protected]>
* inst/include/Rcpp/Benchmark/Timer.h: Silence 'g++ -pedantic' by
replaceing one R_xlen_t by size_t (pull request #348)
2015-08-19 Florian Plaza Onate <[email protected]>
* inst/include/Rcpp/vector/Vector.h: Add 'at' methods which implement
accessors with bounds cheking (pull request #342, fixes issue #341)
* inst/include/Rcpp/vector/Matrix.h: Ditto
* inst/unitTests/cpp/Vector.cpp: Add unit tests for at acessors
* inst/unitTests/cpp/Matrix.cpp: Ditto
* inst/unitTests/runit.Vector.R: Ditto
* inst/unitTests/runit.Matrix.R: Ditto
2015-08-18 Dirk Eddelbuettel <[email protected]>
* inst/unitTests/runit.Module.client.package.R: Disabled for bad
interaction of Rcpp Modules and R 3.2.2
2015-08-15 Florian Plaza Onate <[email protected]>
* inst/include/Rcpp/vector/converter.h: Correct conversion from const
char argument (pull request #344, fixes issue #343)
2015-08-14 Florian Plaza Onate <[email protected]>
* inst/include/Rcpp/vector/DimNameProxy.h: Add assignment operator,
refactor code, update error message formatting (pull request #339)
2015-08-05 Kevin Ushey <[email protected]>
* src/api.cpp: use `_WIN32` instead of `WIN32`
2015-08-02 Dirk Eddelbuettel <[email protected]>
* R/Attributes.R (sourceCpp): In no-rebuild-needed case, also set a
default directory restoration via on.exit() (pull request #335,
addressing issue #309)
2015-07-24 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Release 0.12.0
* inst/NEWS.Rd: Release 0.12.0
* vignettes/Rcpp.bib: Release 0.12.0
* inst/include/Rcpp/config.h: Release 0.12.0
* debian/*: Changes for Debian release of 0.12.0
2015-07-23 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/Symbol.h: Use Rf_installChar(x) instead of
Rf_install(CHAR(X)) if R 3.2.0 or later is used
2015-07-07 Qiang Kou <[email protected]>
* src/include/Rcpp/String.h: Ensure proper initialization of String
objects from two constructors
* inst/unitTests/cpp/String.cpp: New unit test
* inst/unitTests/runit.String.R: Ditto
2015-07-21 Kevin Ushey <[email protected]>
* inst/include/Rcpp/api/meat/Rcpp_eval.h: don't use 'CDDDR'
2015-07-20 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Rolled minor Date and Version
* R/Attributes.R: Use explicit 'utils::assignInMyNamespace'
* R/Rcpp.package.skeleton.R: Use explicit 'utils::package.skeleton'
2015-07-17 JJ Allaire <[email protected]>
* Rcpp.Rproj: don't use devtools mode in RStudio (enables the
Test Package command to invoke the RUnit based test-suite)
* src/attributes.cpp: Correctly handle signature termination
characters ('{' or ';') contained in quotes
2015-07-16 Kevin Ushey <[email protected]>
* inst/include/Rcpp/api/meat/Rcpp_eval.h: Don't use 'R_ToplevelExec';
ensure Rcpp_eval respects previously established handlers. Capture
errors + interrupts with R-level 'tryCatch'.
* inst/NEWS.Rd: Add news entry
2015-07-14 JJ Allaire <[email protected]>
* src/attributes.cpp: fix crash on second call to sourceCpp
2015-07-07 Qiang Kou <[email protected]>
* src/include/Rcpp/String.h: Use Rcpp_PreserveObject and
Rcpp_ReplaceObject to protect underlying SEXP inside String objects
2015-07-07 Matt P. Dziubinski <[email protected]>
* inst/include/Rcpp/sugar/functions/var.h: Variance -- changed from
the unstable formula back to the stable (two-pass) formula, fixed
support for complex numbers (formula correction).
* inst/unitTests/runit.sugar.var.R: Added tests for complex variance
computation, applied simple code refactoring.
2015-07-04 Dirk Eddelbuettel <[email protected]>
* vignettes/Rcpp.bib: Updated reference to several CRAN packages
2015-07-02 Kevin Ushey <[email protected]>
* .clang_format: Added
2015-06-25 Kevin Ushey <[email protected]>
* inst/include/Rcpp/api/meat/Rcpp_eval.h: reset error after Rcpp_eval
* inst/unitTests/cpp/Function.cpp: unit tests
* inst/unitTests/runit.Function.R: unit tests
* inst/include/Rcpp/Function.h: catch empty error messages
* inst/include/Rcpp/api/meat/Rcpp_eval.h: protect call
2015-06-24 Qiang Kou <[email protected]>
* inst/include/Rcpp/String.h: Support encodings
* src/String.cpp: Ditto
* inst/unitTests/runit.String.R: Add unit tests
2015-06-18 Dirk Eddelbuettel <[email protected]>
* R/Attributes.R (evalCpp): Add support for plugings argument
* man/evalCpp.Rd: Document argument
2015-06-07 JJ Allaire <[email protected]>
* src/attributes.cpp: Don't load sourceCpp dynamic library if it's
already been loaded
2015-06-05 Dirk Eddelbuettel <[email protected]>
* R/Rcpp.package.skeleton.R (Rcpp.package.skeleton): Remove
`character.only=TRUE` from `requireNamespace()` as it happens to flip
the boolean value too
2015-06-03 Qiang Kou <[email protected]>
* inst/include/Rcpp/*: Finish changing R_len_t to R_xlen_t
* src/*: Ditto
2014-05-27 Romain Francois <[email protected]>
* inst/include/Rcpp/DataFrame.h: Safe DataFram constructor
2015-05-16 Qiang Kou <[email protected]>
* inst/include/Rcpp/*: Begin changing R_len_t to R_xlen_t
* src/*: Ditto
2015-05-17 Matt P. Dziubinski <[email protected]>
* inst/include/Rcpp/platform/compiler.h: Added RCPP_USING_CXX0X_OR_LATER
* inst/include/Rcpp/sugar/functions/sapply.h: Updated to support lambda functions
2015-05-01 Kevin Ushey <[email protected]>
* vignettes/Rcpp-FAQ.Rnw: Notes on installing gfortran
2015-05-01 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Release 0.11.6
* inst/NEWS.Rd: Release 0.11.6
* inst/include/Rcpp/config.h: Release 0.11.6
* debian/*: Changes for Debian release of 0.11.6
2015-04-27 JJ Allaire <[email protected]>
* src/Module.cpp: Revert parts of PR291 pertaining to Modules and {BEGIN/END}_RCPP
* inst/include/Rcpp/api/meat/module/Module.h: Ditto
* inst/include/Rcpp/InternalFunctionWithStdFunction.h: Ditto
* inst/include/Rcpp/module/Module_generated_CppFunction.h: Ditto
* inst/include/Rcpp/module/class.h: Ditto
2014-04-25 Romain Francois <[email protected]>
* inst/include/Rcpp/vector/Vector.h: update the parameterization of Vector cache
* inst/include/Rcpp/vector/traits.h: ...
* inst/include/Rcpp/vector/00_forward_proxy.h: ...
* inst/unitTests/runit.Vector.R: test for above changes
* inst/unitTests/cpp/Vector.cpp: ...
2015-04-22 Kevin Ushey <[email protected]>
* inst/include/Rcpp/utils/tinyformat.h: don't use C++11 features
2015-04-14 Dirk Eddelbuettel <[email protected]>
* .travis.yml (sudo): Adding 'sudo: required' to force older Travis backend
2014-04-14 Romain Francois <[email protected]>
* inst/include/Rcpp/api/meat/is.h: added is__simple<Rcomplex>
* inst/include/Rcpp/config.h: not using floating point arithmetic in preprocessor
2015-04-12 Dirk Eddelbuettel <[email protected]>
* vignettes/Rcpp-FAQ.Rnw: Also load Rcpp to make cppFunction visible
2014-04-11 Romain Francois <[email protected]>
* inst/include/Rcpp/macros/macros.h: Reworked BEGIN_RCPP and END_RCPP
* inst/include/Rcpp/*: Removed BEGIN_RCPP and END_RCPP from a few files
* src/Module.cpp: But added here
2015-04-19 Jonathan Marshall <[email protected]>
* inst/include/Rcpp/vector/string_proxy.h: Adds empty() constructor
* inst/include/Rcpp/vector/const_string_proxy.h: Ditto
2015-03-18 Dmitrii Meleshko <[email protected]>
* inst/include/Rcpp/vector/Matrix.h: Added default ctor for 0x0 matrix
2015-03-18 JJ Allaire <[email protected]>
* R/Attributes.R: Revert to use of gcc 4.6.3 with Rtools 3.3
2015-03-16 JJ Allaire <[email protected]>
* src/attributes.cpp: Fix failing local include test (normalize path of
base source file so comparisons work on Windows).
2015-03-15 Dirk Eddelbuettel <[email protected]>
* R/Attributes.R (.rtoolsPath): Replace trimws() use with a local variant
2015-03-11 JJ Allaire <[email protected]>
* R/Attributes.R: Rtools 3.3 is now located and used for compilation under R 3.2.
2015-03-11 Kevin Ushey <[email protected]>
* inst/include/RcppCommon.h: Move headers into major/minor protection
* inst/include/Rcpp/r/headers.h: New file
2015-03-04 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Release 0.11.5
* inst/NEWS.Rd: Release 0.11.5
* inst/include/Rcpp/config.h: Release 0.11.5
* debian/*: Changes for Debian release of 0.11.5
2015-03-03 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/routines.h: Additional application of the
'attribute_hidden' macro for a number of routines in Rcpp::internal
2015-03-02 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/print.h (Rcpp): New inline function Rcpp::print()
* inst/include/RcppCommon.h: Include new header
* src/api.cpp: Commented-out print() in global namespace
* src/Rcpp_init.cpp: Commented-out registration of print()
* inst/include/Rcpp/routines.h: Commented-out initialization
2015-03-01 Dirk Eddelbuettel <[email protected]>
* src/api.cpp: New function print() as a wrapper around Rf_PrintValue()
* src/Rcpp_init.cpp: Corresponding registration for print()
* inst/include/Rcpp/routines.h: Corresponding initialization
2015-02-25 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/routines.h: Use the 'attribute_hidden' define from
the R header R_ext/Visibility.h to protect symbols (cf #264)
* inst/include/RcppCommon.h: Also include R_ext/Visibility.h
2015-02-24 JJ Allaire <[email protected]>
* src/attributes.cpp: Guard against includes referencing themselves
(and thus creating an endless loop of include processing); Process
attributes in included files; Automatically build implementation files
(*.cc; *.cpp) corresponding to local header files if they exist.
2015-02-20 Lionel Henry <[email protected]>
* inst/include/Rcpp/Function.h New Function constructors that will
perform function-lookup in an environment or in a namespace.
2015-02-19 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Bump Version: and Date:
2015-02-19 Lionel Henry <[email protected]>
* inst/include/Rcpp/Environment.h Allow new_env() to create an
environment with a specified parent
2015-02-19 JJ Allaire <[email protected]>
* vignettes/Rcpp-attributes.Rnw: Add note on using inline
keyword from shared header files.
2015-02-17 JJ Allaire <[email protected]>
* vignettes/Rcpp-attributes.Rnw: Update attributes vignette
with docs on new features.
2015-02-14 JJ Allaire <[email protected]>
* src/attributes.cpp: Allow includes of local files
(e.g. #include "foo.hpp") in sourceCpp
* Rcpp.Rproj: Specify Sweave as Rnw handler for RStudio
* vignettes/*.Rnw: Add driver magic comment and turn off
Sweave concordance.
* vignettes/.gitignore: Ignore artifacts of PDF preview
2015-02-13 Dirk Eddelbuettel <[email protected]>
* .travis.yml (install): Switch to using ppa:edd/misc to install all the
R packages needed for the Travis CI run as r-cran-* binary packages
2015-02-13 JJ Allaire <[email protected]>
* src/attributes.cpp: Allow 'R' to come immediately after '***'
for defining embedded R code chunks in sourceCpp
2015-02-12 JJ Allaire <[email protected]>
* DESCRIPTION: bump version
* src/attributes.cpp: Add rng parameter to Rcpp::export to
prevent inclusion of RNGScope in generated code; recognize
Rtools 3.2
2015-02-06 Kevin Ushey <[email protected]>
* inst/include/Rcpp/vector/Subsetter.h: compare CHARSXP pointers
rather than string contents in subsetter
2015-02-03 JJ Allaire <[email protected]>
* src/attributes.cpp: Simplify generated attributes code for
RNGScope (use RObject and it's destructor rather than SEXP
protect/unprotect).
* vignettes/Rcpp-package.Rnw: Update docs on generated code.
2015-02-03 JJ Allaire <[email protected]>
* inst/include/Rcpp/exceptions.h: Add Rcpp::warning function as
wrapper for Rf_warning
2014-02-03 JJ Allaire <[email protected]>
* inst/include/Rcpp/XPtr.h: Improvements to XPtr including new
checked_get and release functions and improved behavior (throw
an exception rather than crash) when a NULL external pointer is
dereferenced.
* inst/unitTests/runit.XPTr.R: tests for XPtr improvements.
* inst/unitTests/cpp/XPtr.cpp: tests for XPtr improvements.
2014-02-03 JJ Allaire <[email protected]>
* R/Attributes.R: Include pkg_types.h file in RcppExports.cpp
if it's present in inst/include or src
* src/attributes.cpp: Include pkg_types.h file in generated
C++ interface file if it's present in inst/include or src
2015-02-02 JJ Allaire <[email protected]>
* R/exceptions.R: Evaluate R code within an R_toplevelExec block
* include/Rcpp/api/meat/Rcpp_eval.h: Evaluate R code within an
R_toplevelExec block
2015-01-25 Kevin Ushey <[email protected]>
* inst/include/Rcpp/utils/tinyformat.h: define an error handler for
tinyformat (using ::Rcpp::stop) to not spill assert
2015-01-20 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Release 0.11.4
* inst/NEWS.Rd: Release 0.11.4
* inst/include/Rcpp/config.h: Release 0.11.4
* debian/*: Changes for Debian release of 0.11.4
2015-01-19 Kevin Ushey <[email protected]>
* inst/include/Rcpp/r/headers.h: move R headers inclusion to own file;
move sysmacros.h workarounds to here
* inst/include/RcppCommon.h: idem
* inst/include/Rcpp/platform/sysmacros.h: idem
2015-01-19 Dirk Eddelbuettel <[email protected]>
* vignettes/Rcpp.bib: Updated to current package versions
* vignettes/getCurrentVersionsOfCitedPackages.R: New helper function
* .Rbuildignore: Added vignettes/getCurrentVersionsOfCitedPackages.R
* R/unit.tests.R (test): Use requireNamespace() instead of require()
* R/unit.tests.R (test): Ditto
2015-01-19 Wush Wu <[email protected]>
* inst/include/Rcpp/sugar/functions/var.h: Support four vector types
* inst/unitTests/runit.sugar.var.R: Added corresponding tests
2015-01-16 Kevin Ushey <[email protected]>
* inst/include/Rcpp/String.h: fix push_front()
* inst/unitTests/runit.String.R: test
* inst/unitTests/cpp/String.cpp: test
2015-01-15 Kevin Ushey <[email protected]>
* inst/include/Rcpp/platform/sysmacros.h: remove leaked macros
'major', 'minor', 'makedev' from <sys/sysmacros.h>
* inst/include/RcppCommon.h: ditto
* inst/unitTests/cpp/Vector.cpp: simple test
2015-01-08 Dirk Eddelbuettel <[email protected]>
* inst/examples/OpenMP/GNUmakefile: Renamed from Makefile because it
contains GNU make extentions (which we happen to like)
* inst/examples/ConvolveBenchmarks: Ditto
2015-01-02 Kevin Ushey <[email protected]>
* inst/include/Rcpp/sugar/functions/setdiff.h: fix for setequals
* inst/unitTests/cpp/sugar.cpp: unit tests
* inst/unitTests/runit.sugar.R: unit tests
2015-01-01 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/sugar/functions/mean.h: Return type is double, not
storage type; also added logical vector case; also added integer case
to correctly deal with NA values
* inst/unitTests/runit.sugar.R: Added unit tests for new sugar mean()
* inst/unitTests/cpp/sugar.cpp: C++ side of new unit tests
2014-12-31 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/sugar/functions/mean.h: Support int and complex
2014-12-30 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/sugar/functions/mean.h: Use two-pass method
2014-12-29 Kevin Ushey <[email protected]>
* inst/include/Rcpp/macros/macros.h: reformat for legibility
2014-12-11 Yixuan Qiu <[email protected]>
* inst/include/Rcpp/internal/r_vector.h: Internal functions to
help detect unqualified vector types for sorting, with the help
of Romain Francois
* inst/include/Rcpp/vector/Vector.h: Disallow sorting on List,
RawVector and ExpressionVector, from the discussion with
Dirk Eddelbuettel and Kevin Ushey
2014-11-30 Romain Francois <[email protected]>
* inst/include/Rcpp/vector/proxy.h: Const iteration correction
* inst/include/Rcpp/sugar: Ditto in three files
2014-11-25 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/grow.h: Apply additional Shield<> use around tail
object as suggested by Martin Morgan on the rcpp-devel list
2014-11-24 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/config.h: Release version is still 0.11.3
2014-11-23 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/config.h: New macro RcppDevVersion to account for
four-part development versions such as the current 0.11.3.2
* DESCRIPTION: Version incremented to 0.11.3.2
2014-11-23 Romain Francois <[email protected]>
* inst/include/Rcpp/exceptions.h: Richer formatting for Rcpp::stop
* inst/include/Rcpp/utils/tinyformat.h: Backend for formattinh
* inst/unitTests/runit.misc.R: Added new unit test
* inst/unitTests/cpp/misc.cpp: C++ backend for test
2014-11-19 Dirk Eddelbuettel <[email protected]>
* .travis.yml: Temporary stop-gap measure of setting CRAN to something
other than the RStudio CDN which currently has DNS issue
* inst/include/Rcpp/internal/NAComparator.h: Support sorting of complex
numbers, thanks to patch by Yixuan Qiu (in PR #202)
2014-11-08 Kevin Ushey <[email protected]>
* R/Attributes.R: Fix regular expression used to find source files for
compileAttributes
2014-11-02 Dirk Eddelbuettel <[email protected]>
* inst/unitTests/RcppTestA: Rename to inst/unitTests/testRcppPackage
* inst/unitTests/testRcppPackage: Updated throughout
* inst/include/Rcpp/Rmath.h: As suggested by Kevin, test for R_VERSION
via #define to conditon on R >= 3.1.2 -- this does not require a hard
constraint in DESCRIPTION yet on newer R will get R::[dpq]nbinom_mu()
2014-11-01 Dirk Eddelbuettel <[email protected]>
* src/api.cpp: Do not include execinfo.h on AIX, per r-devel discussion
with Mike Beddo, and http://sf.net/p/predef/wiki/OperatingSystems/
2014-10-29 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/Rmath.h: Comment out R::[dpqr]nbinom_mu functions as
not declared by R with Rf_* name-mapping prefixes
2014-10-17 Chenliang Xu <[email protected]>
* R/Attributes: Enable scanning of header files
2014-10-03 JJ Allaire <[email protected]>
* R/Attributes.R: Only look for plugins in the package's namespace
(rather than entire search path)
2014-10-01 Kevin Ushey <[email protected]>
* inst/include/Rcpp/vector/ListOf.h ListOf<T> inherits relevant proxies
* inst/unitTests/cpp/ListOf.cpp: Idem
* inst/unitTests/runit.ListOf.R: Idem
2014-09-29 Dirk Eddelbuettel <[email protected]>
* debian/*: Changes for Debian release of 0.11.3
* inst/NEWS.Rd: Removed a double entry
2014-09-27 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Release 0.11.3
* inst/NEWS.Rd: Release 0.11.3
* inst/include/Rcpp/config.h: Release 0.11.3
* ChangeLog: Added a few more entries based on commit log
* inst/NEWS.Rd: Idem
2014-09-26 JJ Allaire <[email protected]>
* DESCRIPTION: Bump version to enable checking for dryRun.
2014-09-23 JJ Allaire <[email protected]>
* R/Attributes.R: Add dryRun parameter to sourceCpp.
2014-09-21 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Shorten Description: to single paragraph
2014-09-21 Kevin Ushey <[email protected]>
* inst/unitTests/runit.environments.R: Use 'checkIdentical' as it's a
more appropriate expression of intent
2014-09-15 Dirk Eddelbuettel <[email protected]>
* R/Rcpp.package.skeleton.R: Use more neutral default name, email settings
* man/Rcpp.package.skeleton.Rd: Document these
2014-09-14 Dirk Eddelbuettel <[email protected]>
* inst/unitTests/testRcppClass/man/Rcpp_class_examples.Rd: Similar
update to yesterday's update for testRcppModule
2014-09-14 Kevin Ushey <[email protected]>
* inst/include/Rcpp/vector/Vector.h: Alternate strategy using SFINAE
* inst/include/Rcpp/traits/traits.h: Idem
* inst/include/Rcpp/traits/enable_if.h: Idem
2014-09-13 Kevin Ushey <[email protected]>
* inst/include/Rcpp/vector/Vector.h: Allow logical vectors to be created
from bools
* inst/unitTests/runit.Vector.R: Idem
* inst/unitTests/cpp/Vector.cpp: Idem
2014-09-13 Dirk Eddelbuettel <[email protected]>
* inst/skeleton/Rcpp_modules_examples.Rd: Added to document modules examples
* inst/unitTests/testRcppModule/NAMESPACE: Updated for current Modules use
* inst/unitTests/testRcppModule/R/zzz.R: Updated for current Modules use
* inst/unitTests/testRcppModule/man/Rcpp_modules_examples.Rd: Also added here
2014-09-10 Dirk Eddelbuettel <[email protected]>
* R/R/Rcpp.package.skeleton.R: If available, pkgKitten used for skeleton pkg
2014-09-09 Dirk Eddelbuettel <[email protected]>
* R/unit.tests.R: Fully qualify three functions from RUnit via ::
2014-09-03 Kevin Ushey <[email protected]>
* inst/include/Rcpp/Environment.h: make new_env a free function
2014-09-02 Kevin Ushey <[email protected]>
* inst/include/Rcpp/api/meat/proxy.h: Finish meat reintroduction + tests
* inst/unitTests/runit.wrap.R: Idem
* inst/unitTests/cpp/wrap.cpp: Idem
* inst/include/Rcpp/proxy/FieldProxy.h: Idem
2014-09-02 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/vector/Vector.h: Reversing change from Aug 30: the
Vector ctor from char* and string are used for CharacterVector()
2014-09-02 JJ Allaire <[email protected]>
* R/Attributes.R: Include LinkingTo in DESCRIPTION fields scanned
to confirm that C++ dependencies are referenced by package.
2014-09-01 Yixuan Qiu <[email protected]>
* inst/include/Rcpp/vector/Vector.h: fix return value of range eraser
2014-09-01 Kevin Ushey <[email protected]>
* inst/include/Rcpp/vector/ListOf.h: `size()` member function should
return `R_len_t` rather than `int`
2014-08-30 Kevin Ushey <[email protected]>
* inst/include/Rcpp/Environment.h: Add 'new_env' function
2014-08-30 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/vector/Vector.h: Mark two 'from string' ctors as
deprecated following a suggestion by Yixuan Qiu [reversed on 2014-09-02]
2014-08-18 Dirk Eddelbuettel <[email protected]>
* vignettes/Rcpp-FAQ.Rnw: Added a new entry regarding licensing of
packages stressing that any combined work linking to the GPL-ed R will
also be under the terms of the GNU General Public License.
2014-08-13 Kevin Ushey <[email protected]>
* inst/include/Rcpp/api/meat/meat.h: Reintroduce meat
* inst/include/Rcpp/api/meat/proxy.h: Idem
* inst/include/Rcpp/proxy/AttributeProxy.h: Idem
* inst/include/Rcpp/proxy/Binding.h: Idem
* inst/include/Rcpp/proxy/NamesProxy.h: Idem
* inst/include/Rcpp/proxy/SlotProxy.h: Idem
* inst/include/Rcpp/proxy/TagProxy.h: Idem
* inst/include/Rcpp/proxy/proxy.h: Idem
2014-08-08 Christian Authmann <[email protected]>
* inst/unitTests/cpp/InternalFunction.cpp: New unit test support
* inst/unitTests/cpp/InternalFunctionCPP11.cpp: Idem
* inst/unitTests/runit.InternalFunction.R: Idem
* inst/unitTests/runit.InternalFunctionCPP11.R: Idem
2014-08-06 Christian Authmann <[email protected]>
* inst/include/Rcpp/InternalFunctionWithStdFunction.h: Extend the
existing Rcpp::InternalFunction interface to work with std::function,
conditional on a sufficient C++11 support by the compiler
2014-08-05 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/Date.h: Remove a const qualifier which triggers a
warnings as 'type qualifiers ignored on function return type'
2014-08-03 Dirk Eddelbuettel <[email protected]>
* vignettes/Rcpp-FAQ.Rnw: Updated with respect to OS X installations
requiring Fortran (to e.g. build against RcppArmadillo)
2014-07-29 Kevin Ushey <[email protected]>
* inst/include/Rcpp/vector/no_init.h: Add no_init for matrices
* inst/include/Rcpp/vector/Matrix.h: Idem
* inst/include/Rcpp/vector/Vector.h: Idem
* inst/unitTests/runit.Matrix.R: Idem
* inst/unitTests/cpp/Matrix.cpp: Idem
2014-07-29 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/vector/proxy.h: Removed operator bool() cast as
discussed by Christian Authmann on rcpp-devel
2014-07-28 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/generated/InternalFunction__ctors.h: Updated from
corrected creator script
2014-07-25 Romain Francois <[email protected]>
* inst/include/Rcpp/Benchmark/Timer.h: Added new static method
get_timers() to return a vector of timers useful for multithreaded
contexts; also removed two unused old member functions (cf #157)
2014-07-14 Kevin Ushey <[email protected]>
* inst/unitTests/runit.Matrix.R: DimNames Proxy
* inst/unitTests/cpp/Matrix.cpp: Idem
* inst/include/Rcpp/vector/Matrix.h: Idem
* inst/include/Rcpp/vector/DimNameProxy.h: Idem
2014-07-12 Kevin Ushey <[email protected]>
* R/Attributes.R: Strip version in .parseLinkingTo
2014-07-12 Dirk Eddelbuettel <[email protected]>
* inst/include/Rcpp/generated/InternalFunction__ctors.h: Regenerated
with tighter whitespace and updated header information from updated
generator script in corresponding rcpp-scripts repo
* inst/include/Rcpp/module/Module_generated_CppFunction.h: Idem
* inst/include/Rcpp/module/Module_generated_CppMethod.h: Idem
* inst/include/Rcpp/module/Module_generated_Pointer_CppMethod.h: Idem
* inst/include/Rcpp/module/Module_generated_Pointer_method.h: Idem
* inst/include/Rcpp/module/Module_generated_function.h: Idem
* inst/include/Rcpp/module/Module_generated_get_signature.h: Idem
* inst/include/Rcpp/module/Module_generated_method.h: Idem
2014-07-09 Kevin Ushey <[email protected]>
* inst/include/Rcpp/Language.h: OUT -> RESULT_TYPE
* inst/include/Rcpp/generated/InternalFunction__ctors.h: Idem
* inst/include/Rcpp/module/Module_generated_CppFunction.h: Idem
* inst/include/Rcpp/module/Module_generated_CppMethod.h: Idem
* inst/include/Rcpp/module/Module_generated_Pointer_CppMethod.h: Idem
* inst/include/Rcpp/module/Module_generated_Pointer_method.h: Idem
* inst/include/Rcpp/module/Module_generated_function.h: Idem
* inst/include/Rcpp/module/Module_generated_get_signature.h: Idem
* inst/include/Rcpp/module/Module_generated_method.h: Idem
* inst/include/Rcpp/module/get_return_type.h: Idem
* inst/include/Rcpp/sugar/block/SugarBlock_1.h: Idem
* inst/include/Rcpp/sugar/block/SugarBlock_2.h: Idem
* inst/include/Rcpp/sugar/block/SugarBlock_3.h: Idem
* inst/include/Rcpp/sugar/block/SugarMath.h: Idem
* inst/include/Rcpp/sugar/functions/complex.h: Idem
2014-07-08 Dirk Eddelbuettel <[email protected]>