forked from RcppCore/Rcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
8170 lines (5471 loc) · 317 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
2017-06-17 Krill Müller <krlmlr@mailbox.org>
* inst/include/Rcpp/Dimension.h: Explicit cast to int
* inst/include/Rcpp/exceptions.h: Don't declare unused arguments
* src/attributes.cpp: Ditto
2017-06-14 JJ Allaire <jj@rstudio.com>
* src/attributes.cpp: Add Shield around parameters in Rcpp::interfaces
2017-06-07 Dirk Eddelbuettel <edd@debian.org>
* README.md: Use alternates for img.shields.io GPL-2+ badges
2017-06-06 Yu Gong <armgong@yahoo.com>
* src/api.cpp: Also permit compilation under Haiku-OS
2017-06-04 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* man/Rcpp.plugin.maker.Rd: Update manual page to additional Imports
argument
2017-06-02 JJ Allaire <jj@rstudio.com>
* src/attributes.cpp: Automatically register init functions for
RcppModules
* R/Rcpp.package.skeleton.R: compileAttributes only after all code is
generated
2017-06-01 JJ Allaire <jj@rstudio.com>
* src/attributes.cpp: Fix registration for exports with name attribute.
2017-05-30 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/utils/tinyformat.h: Added missing newline
2017-05-23 JJ Allaire <jj@rstudio.com>
* R/Attributes.R: Execute tools::package_native_routine_registration_skeleton
within package rather than current working directory.
* src/attributes.cpp: Execute tools::package_native_routine_registration_skeleton
within package rather than current working directory.
2017-05-22 Dirk Eddelbuettel <edd@debian.org>
* R/inline.R (Rcpp.plugin.maker): Whitespace changes
2017-05-20 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Release 0.12.11
* inst/NEWS.Rd: Release 0.12.11
* inst/bib/Rcpp.bib: Release 0.12.11
* inst/include/Rcpp/config.h: Release 0.12.11
* README.md: Updated counts for dependents and tests
* debian/*: Changes for Debian release of 0.12.10
2017-05-19 Dirk Eddelbuettel <edd@debian.org>
* inst/NEWS.Rd: Removed one duplicate entry
* inst/include/Rcpp/api/meat/Rcpp_eval.h (Rcpp): Minor whitespace changes
2017-05-18 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll Date and Version once more
* inst/NEWS.Rd: Updated
* R/Attributes.R (.plugins[["openmp"]]): Fix typo in comment
* src/attributes.cpp (Rcpp): Use size_t (twice) to suppress nags from g++
2017-05-16 JJ Allaire <jj@rstudio.com>
* R/Attributes.R: Automatically generate native routine registrations.
* src/attributes.cpp: Automatically generate native routine registrations.
* R/Rcpp.package.skeleton.R: Don't generate native routines when creating
a package using attributes.
2017-05-09 Dirk Eddelbuettel <edd@debian.org>
* R/Rcpp.package.skeleton.R (Rcpp.package.skeleton): Under R 3.4.0, run
tools::package_native_routine_registration_skeleton to create src/init.c
2017-05-07 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version again
* inst/include/Rcpp/module/Module_Property.h: Remove two typed exception
specifications which upset g++ 7.1 or higher
2017-05-05 Kirill Müller <krlmlr@mailbox.org>
* inst/include/Rcpp/date_datetime/Date.h: Suppress -Wconversion warnings
* inst/include/Rcpp/date_datetime/Datetime.h: Idem
* inst/include/Rcpp/date_datetime/newDateVector.h: Idem
* inst/include/Rcpp/date_datetime/newDatetimeVector.h: Idem
* inst/include/Rcpp/sugar/functions/rowSums.h: Idem
* inst/include/Rcpp/sugar/functions/sample.h: Idem
* inst/include/Rcpp/sugar/functions/strings/trimws.h: Idem
2017-04-26 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/exceptions.h (string_to_try_error): Protect result
from Rf_mkString
2017-04-25 Dirk Eddelbuettel <edd@debian.org>
* R/Attributes.R (.plugins[["cpp11"]]): If R 3.4.0 or newer is used, set
USE_CXX11 (instead of the older USE_CXX1X);
(.plugins[["cpp14"]]): similarly updated for C++14
(.plugins[["cpp17"]]): similarly updated for C++17
(.plugins[["cpp98"]]): added
2017-04-22 Nathan Russell <russell.nr2012@gmail.com>
* inst/include/Rcpp/sugar/functions/strings/trimws.h: Added sugar
function trimws with unit tests
* inst/include/Rcpp/sugar/functions/strings/strings.h: Idem
* inst/unitTests/cpp/sugar.cpp: Idem
* inst/unitTests/runit.sugar.R: Idem
2017-04-20 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
* inst/include/Rcpp/exceptions/cpp98/exceptions.h
(RCPP_ADVANCED_EXCEPTION_CLASS): Suppressing some warnings
2017-04-20 James J Balamuta <balamut2@illinois.edu>
* inst/include/Rcpp/api/meat/DottedPairImpl.h: Corrected format
specifier from '%s' to '%i'.
2017-04-18 James J Balamuta <balamut2@illinois.edu>
* inst/include/Rcpp/vector/Matrix.h: Corrected exception throws from
not_compatible to not_a_matrix.
* inst/include/Rcpp/S4.h: Fixed documentation detailing exception class
throw.
* inst/include/Rcpp/Environment.h: Improved error handling messages
* inst/include/Rcpp/Function.h: idem
* inst/include/Rcpp/Promise.h: idem
* inst/include/Rcpp/String.h: idem
* inst/include/Rcpp/Symbol.h: idem
* inst/include/Rcpp/XPtr.h: idem
* inst/include/Rcpp/as.h: idem
* inst/include/Rcpp/r_cast.h: idem
* inst/include/Rcpp/api/meat/DottedPairImpl.h: idem
* inst/include/Rcpp/internal/export.h: idem
* inst/include/Rcpp/proxy/DottedPairProxy.h: idem
* inst/include/Rcpp/proxy/SlotProxy.h: idem
* inst/include/Rcpp/vector/MatrixColumn.h: idem
* inst/include/Rcpp/vector/MatrixRow.h: idem
* inst/include/Rcpp/vector/Vector.h: idem
2017-04-17 James J Balamuta <balamut2@illinois.edu>
* inst/include/Rcpp/Rcpp/exceptions/cpp11/exceptions.h: Removed
semicolons from RCPP_ADVANCED_EXCEPTION_CLASS to quiet 'extra ;'
-Wpedantic
OB* inst/include/Rcpp/exceptions.h: Modified exceptions macros to support
a default string and removed generated stop, warning from file.
* inst/include/Rcpp/Rcpp/exceptions/cpp98/exceptions.h: Contains
generated RCPP_ADVANCED_EXCEPTION_CLASS macro, stop & warning.
* inst/include/Rcpp/Rcpp/exceptions/cpp11/exceptions.h: idem but
for variadic versions.
* inst/include/Rcpp/utils/tinyformat.h: Enabled ability to use variadic
tinyformat function if c++11 is detected.
2017-04-14 James J Balamuta <balamut2@illinois.edu>
* inst/include/Rcpp/utils/tinyformat.h: Refreshed tinyformat.h against
May 13, 2016 upstream, retained local mods.
2017-04-14 Kirill Müller <krlmlr@mailbox.org>
* inst/include/Rcpp/macros/macros.h: Remove unused variable warning in
BEGIN_RCPP macro
* inst/include/Rcpp/DataFrame.h: Explicitly call parent constructor
* inst/include/Rcpp/sugar/functions/rep.h: Remove variable name in
function declaration to suppress unused argument warning
* src/Rcpp_init.cpp: Ditto
* src/attributes.cpp: Ditto
2017-04-11 Dirk Eddelbuettel <edd@debian.org>
* inst/inst/unitTests/testRcppClass/src/init.c (R_init_testRcppClass): Call
R_registerRoutines() and R_useDynamicSymbols(); also ensure
_rcpp_module_boot_* is registered for each module
* inst/unitTests/testRcppClass/NAMESPACE: Added registration
* inst/unitTests/testRcppClass/DESCRIPTION (Title): Title case
* inst/unitTests/testRcppClass/R/rcpp_hello_world.R (rcpp_hello_world):
Call the renamed C++ function
* inst/unitTests/testRcppClass/src/rcpp_hello_world.cpp (rcpp_hello_world_cpp):
Renamed C++ function to be distinct from R function calling it
* inst/unitTests/testRcppClass/src/rcpp_hello_world.h: Ditto
* inst/unitTests/testRcppClass/man/rcpp_hello_world.Rd: Alias renamed
C++ function
2017-04-09 Dirk Eddelbuettel <edd@debian.org>
* inst/unitTests/testRcppModule/src/init.c (R_init_testRcppModule): Call
R_registerRoutines() and R_useDynamicSymbols(); also ensure
_rcpp_module_boot_* is registered for each module
* inst/unitTests/testRcppModule/NAMESPACE: Added registration
* inst/unitTests/testRcppModule/DESCRIPTION (Title): Title case
* inst/unitTests/testRcppModule/R/rcpp_hello_world.R (rcpp_hello_world):
Call the renamed C++ function
* inst/unitTests/testRcppModule/src/rcpp_hello_world.cpp (rcpp_hello_world_cpp):
Renamed C++ function to be distinct from R function calling it
* inst/unitTests/testRcppModule/src/rcpp_hello_world.h: Ditto
* inst/unitTests/testRcppModule/man/rcpp_hello_world.Rd: Alias renamed
C++ function
* inst/unitTests/testRcppModule/man/Rcpp_modules_examples.Rd: Alias
renamed modules
* inst/unitTests/testRcppModule/tests/modules.R: Call renamed module
2017-04-03 Jim Hester <james.f.hester@gmail.com>
* inst/include/Rcpp/exceptions.h: Added support for throwing
exceptions without call stacks.
* inst/include/Rcpp/macros/macros.h: Idem
* inst/unitTests/cpp/exceptions.cpp: Idem
* inst/unitTests/runit.exceptions.R: Idem
2017-03-28 James J Balamuta <balamut2@illinois.edu>
* inst/vignettes/Rcpp-FAQ.Rnw: Added "Known Issues" section to FAQ
2017-03-25 Dirk Eddelbuettel <edd@debian.org>
* LICENSE: Added
* .Rbuildignore: Do not include LICENSE in package
2017-03-17 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Release 0.12.10
* inst/NEWS.Rd: Release 0.12.10
* inst/bib/Rcpp.bib: Release 0.12.10
* inst/include/Rcpp/config.h: Release 0.12.10
* README.md: Updated counts for dependents and tests
* debian/*: Changes for Debian release of 0.12.10
2017-03-15 Jeroen Ooms <jeroenooms@gmail.com>
* inst/include/Rcpp/XPtr.h: added finalizeOnExit parameter
2017-02-28 Dirk Eddelbuettel <edd@debian.org>
* src/Rcpp_init.cpp (R_init_Rcpp): Call R_useDynamicSymbols()
* DESCRIPTION (Version, Date): New minor version
2017-02-25 Dirk Eddelbuettel <edd@debian.org>
* vignettes/Rcpp-FAQ.Rnw: New subsection on C++11, C++14, C++17
2017-02-17 Dirk Eddelbuettel <edd@debian.org>
* R/tools.R: More #nocov
* inst/include/Rcpp/internal/r_vector.h: Idem
2017-02-15 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): New minor version
2017-02-14 Iñaki Ucar <i.ucar86@gmail.com>
* inst/include/Rcpp/iostream/Rstreambuf.h: Fixed single-character handling
(pull request #649, fixes issue #647)
2017-02-13 Dirk Eddelbuettel <edd@debian.org>
* R/Attributes.R (.plugins[["cpp17"]]): New plugin
(.plugins[["cpp1z"]]): Idem
2017-02-04 Daniel C. Dillon <dcdillon@gmail.com>
* inst/include/Rcpp/algorithm.h: Improved setup for Intel's icc
2017-01-31 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Roll minor version
* inst/include/Rcpp/algorithm.h: Allow algorithm.h to be compiler under
Intel's compiler, add copyright header and include guard
2017-01-31 Nathan Russell <russell.nr2012@gmail.com>
* inst/include/Rcpp/sugar/matrix/upper_tri.h: Inherit from MatrixBase
and use correct comparators in get() to fix segfault
* inst/include/Rcpp/sugar/matrix/lower_tri.h: Idem
* inst/unitTests/cpp/sugar.cpp: Added unit tests for upper_tri and
lower_tri
* inst/unitTests/runit.sugar.R: Idem
2017-01-23 James J Balamuta <balamut2@illinois.edu>
* inst/include/Rcpp/DataFrame.h: Corrected return type for column size.
2017-01-22 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/DataFrame.h: Simplified and removed deprecation language.
2017-01-21 James J Balamuta <balamut2@illinois.edu>
* inst/include/Rcpp/DataFrame.h: Added alias for column and row size
* inst/unitTests/runit.DataFrame.R: Added unit tests for aliases
* inst/unitTests/cpp/DataFrame.cpp: Idem
2017-01-17 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version and Date
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Roll minor
* src/Date.cpp (Rcpp): Do not access tm_gmtoff on Solaris
2017-01-14 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Release 0.12.9
* inst/NEWS.Rd: Release 0.12.9
* inst/bib/Rcpp.bib: Release 0.12.9
* inst/include/Rcpp/config.h: Release 0.12.9
* README.md: Updated counts for dependents and tests
* debian/*: Changes for Debian release of 0.12.9
2017-01-13 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/exceptions.h: Added more #nocov tags
* inst/include/Rcpp/api/bones/wrap_extra_steps.h: Idem
* inst/include/Rcpp/iostream/Rstreambuf.h: Idem
* inst/include/Rcpp/traits/named_object.h: Idem
* inst/include/Rcpp/r_cast.h: Idem
* src/Module.cpp: Idem
2017-01-12 Dirk Eddelbuettel <edd@debian.org>
* inst/bib/Rcpp.bib: Moved from vignettes/ directory
* R/bib.R (bib): Idem
* vignettes/Rcpp-FAQ.Rnw: Evaluate \Sexpr{Rcpp:::bib()}
* vignettes/Rcpp-attributes.Rnw: Idem
* vignettes/Rcpp-extending.Rnw: Idem
* vignettes/Rcpp-introduction.Rnw: Idem
* vignettes/Rcpp-modules.Rnw: Idem
* vignettes/Rcpp-packages.Rnw: Idem
* vignettes/Rcpp-sugar.Rnw: Idem
* inst/unitTests/runit.misc.R (test.bib): New test
* R/exceptions.R: Added #nocov
2017-01-11 Dirk Eddelbuettel <edd@debian.org>
* vignettes/Rcpp.bib: Updated references
* src/attributes.cpp (Rcpp): Correct typos in #nocov tags, added tags
2017-01-07 James J Balamuta <balamut2@illinois.edu>
* inst/include/Rcpp/sugar/functions/complex.h: Added Arg() function
* inst/unitTests/runit.sugar.R: Added Arg() unit test to complex list
* inst/unitTests/cpp/sugar.cpp: Idem
2017-01-06 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Mark new minor version
* src/attributes.cpp: Additional nocov tags
2017-01-04 Dirk Eddelbuettel <edd@debian.org>
* src/Date.cpp (Rcpp): Protect assignment to tm_gmtoff to not being
under MinGW; could potentially bite other too-limited systems
* inst/unitTests/runit.Date.R (test.Datetime.formating): Do not set TZ
when running test, only set digits option
2017-01-01 Dirk Eddelbuettel <edd@debian.org>
* inst/unitTests/runit.Date.R (test.mktime, test.gmtime): New tests
* inst/unitTests/cpp/dates.cpp (test_mktime, test_gmtime): Idem
2016-12-31 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/vector/Matrix.h: Minor simplification
2016-12-31 James J Balamuta <balamut2@illinois.edu>
* inst/include/Rcpp/vector/Matrix.h: Fixed non-symmetric case of matrix
fills by switching to a loop based solution from iterator.
* inst/unitTests/runit.Matrix.R: Added unit tests for diagonally
filling matrices.
* inst/unitTests/cpp/Matrix.cpp: Idem
2016-12-30 Dirk Eddelbuettel <edd@debian.org>
* src/Date.cpp: Synchronized internal code with R
* inst/unitTests/cpp/dates.cpp (gmtime_mktime): New test
* inst/unitTests/runit.Date.R (test.mktime_gmtime): Idem
2016-12-26 Dirk Eddelbuettel <edd@debian.org>
* R/Attributes.R: Added #nocov markers
* R/Module.R: Idem
* R/exposeClass.R: Idem, added copyright header
2016-12-25 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Roll minor version
* src/api.cpp: Added #nocov markers
* src/Rcpp_init.cpp: Idem
* src/Date.cpp: Date
2016-12-14 Nathan Russell <russell.nr2012@gmail.com>
* inst/include/Rcpp/sugar/functions/sample.h: Use vector instead of
manual memory management.
2016-12-13 Nathan Russell <russell.nr2012@gmail.com>
* inst/include/Rcpp/sugar/functions/sample.h: Use malloc.h instead of
alloca.h when building on Windows
* inst/include/Rcpp/date_datetime/Date.h: Include time.h when building
on Windows
* inst/include/Rcpp/date_datetime/Datetime.h: Idem
2016-12-12 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/sugar/functions/sample.h: In case sample.h from the
RcppArmadillo extensions was included, skip this file
2016-12-10 Nathan Russell <russell.nr2012@gmail.com>
* inst/include/Rcpp/sugar/functions/sample.h: New function
sample()
* inst/include/Rcpp/sugar/functions/functions.h: Idem
* inst/unitTests/cpp/sugar.cpp: Unit tests for sample()
* inst/unitTests/runit.sugar.R: Idem
2016-12-10 Dirk Eddelbuettel <edd@debian.org>
* R/loadRcppModules.R: Added #nocov tags
* R/loadModule.R: Ditto
* R/unit.tests.R (test): Adjusted one #nocov tag
2016-12-09 Dirk Eddelbuettel <edd@debian.org>
* R/00_classes.R: Added #nocov tags
* R/01_show.R: Ditto
* R/02_completion.R: Ditto
* R/03_prompt.R: Ditto
2016-12-07 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/vector/Matrix.h: Add 'using ...' to disambiguate size()
2016-12-04 Dirk Eddelbuettel <edd@debian.org>
* .codecov.yml (comment): Enable more verbose codecov.io reports
2016-12-03 Dirk Eddelbuettel <edd@debian.org>
* inst/unitTests/cpp/dates.cpp (Datetime_format): Additional ostream tests
* inst/unitTests/runit.Date.R (test.Date.formating): Ditto
* inst/unitTests/runit.system.R (test.RcppCxx): New tests
* R/RcppLdpath.R (canUseCXX0X): Simplified as we can now rely on more
modern compilers; underlying C++ code has not been present for a while
* R/compilerCheck.R (compilerCheck): Added some #nocov tags
* R/unit.tests.R (test, gctortureRUnitTest): Ditto
* R/zzz.R (.onLoad): Ditto
2016-11-29 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version to 0.12.8.2
2016-11-28 Dirk Eddelbuettel <edd@debian.org>
* inst/unitTests/cpp/dates.cpp (Date_format, Datetime_format): New tests
* inst/unitTests/runit.Date.R (test.Date.formating): Ditto
(test.Datetime.formating): Ditto
* inst/unitTests/runit.sugar.R (test.intersect): Added sort() around
call to Sugar's intersect to ensure sorted output with g++-6.*
2016-11-27 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/date_datetime/Date.h (format, operator<<): Added
* inst/include/Rcpp/date_datetime/Datetime.h (format, operator<<): Ditto
* inst/include/Rcpp/date_datetime/newDateVector.h (operator<<): Ditto
* inst/include/Rcpp/date_datetime/newDatetimeVector.h (operator<<): Ditto
2016-11-23 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Set minor version
2016-11-22 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Roll minor version
* inst/include/Rcpp/date_datetime/newDatetimeVector.h (Rcpp): Small
correction concerning timezone attribute to ctor from RTYPE
2016-11-22 Jim Hester <james.f.hester@gmail.com>
* inst/src/api.cpp: Cleanup to stack message parseing
* inst/unitTests/cpp/exceptions.cpp: Unit tests for cleanup
* inst/unitTests/runit.exceptions.R: Ditto
2016-11-19 James J Balamuta <balamut2@illinois.edu>
* inst/unitTests/runit.environments.R: Added environment find unit tests
as well as a symbol access test for environment get.
* inst/unitTests/cpp/Environment.cpp: Idem
2016-11-18 James J Balamuta <balamut2@illinois.edu>
* vignettes/Rcpp-extending: Switched to attributes and
added external class pointer macro notes by MathurinD
2016-11-16 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Release 0.12.8
* inst/NEWS.Rd: Release 0.12.8
* vignettes/Rcpp.bib: Release 0.12.8
* inst/include/Rcpp/config.h: Release 0.12.8
* README.md: Updated counts for dependents and tests
* debian/*: Changes for Debian release of 0.12.8
2016-11-15 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Nathan Russell added to Authors
2016-11-14 Jim Hester <james.f.hester@gmail.com>
* inst/include/Rcpp/exceptions.h: Improved exception call stack
* inst/include/Rcpp/routines.h: Ditto
* inst/src/api.cpp: Ditto
* R/exections.R: Print and format method for stack straces
* inst/unitTests/runit.exceptions.R: Unit tests
* inst/unitTests/cpp/exceptions.cpp: Ditto
2016-11-13 Dirk Eddelbuettel <edd@debian.org>
* R/Attributes.R (mergeIntoBuildEnv): Correct 'empty' return
2016-11-10 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/date_datetime/newDateVector.h: Added constructor
using VectorBase<>
2016-11-05 Daniel C. Dillon <dcdillon@gmail.com>
* inst/include/Rcpp/date_datetime/newDatetimeVector.h: Added constructor
to instantiate newDatetimeVector from VectorBase.
2016-11-04 Nathan Russell <russell.nr2012@gmail.com>
* inst/include/Rcpp/macros/dispatch.h: Modify variadic macros
to not use GNU extensions
* DESCRIPTION: roll minor version
2016-11-03 Nathan Russell <russell.nr2012@gmail.com>
* inst/include/Rcpp/hash/IndexHash.h: Add casts to eliminate
signed / unsigned comparison warning
* inst/include/Rcpp/hash/SelfHash.h: Idem
* inst/unitTests/cpp/sugar.cpp: Added unit tests for sugar function
unique()
* inst/unitTests/runit.sugar.R: Idem
2016-10-30 Dirk Eddelbuettel <edd@debian.org>
* src/api.cpp: New capabilities field for new date(time) vectors
* inst/unitTests/runit.Date.R (test.DatetimeVector.ctor): Differentiate
in test as case of 'Inf' is handling differently by new and old datetime
classes (and passed through as is by new ones which is better)
* inst/unitTests/runit.InternalFunctionCPP11.R: Small cosmetic edit
2016-10-24 Qiang Kou <qkou@umail.iu.edu>
* inst/include/Rcpp/sugar/Range.h : fix range sugar ambiguity
* inst/unitTests/cpp/sugar.cpp: range sugar unit test
* inst/unitTests/runit.sugar.R: range sugar unit test
2016-10-24 Nathan Russell <russell.nr2012@gmail.com>
* inst/include/Rcpp/vector/MatrixBase.h: Change sugar
functions eye(), ones(), and zeros() into static methods
in MatrixBase
* inst/include/Rcpp/traits/one_type.h: Idem
* inst/include/Rcpp/traits/traits.h: Idem
* inst/unitTests/cpp/Matrix.cpp: Idem
* inst/unitTests/runit.Matrix.R: Idem
2016-10-24 Qiang Kou <qkou@umail.iu.edu>
* inst/include/Rcpp/sugar/Range.h: Range sugar uses R_xlen_t as start/end type
2016-10-23 Nathan Russell <russell.nr2012@gmail.com>
* inst/include/Rcpp/sugar/matrix/eye.h: New functions
eye(), ones(), and zeros()
* inst/include/Rcpp/sugar/matrix/matrix_functions.h: Idem
* inst/unitTests/cpp/sugar.cpp: Unit tests for new functions
* inst/unitTests/runit.sugar.R: Idem
* inst/unitTests/runit.dispatch.R (test.ExpressionVector): Use
expression rather than parse, correct typo
2016-10-22 Qiang Kou <qkou@umail.iu.edu>
* inst/include/Rcpp/hash/IndexHash.h: change hashing function to return unsigned int
* inst/include/Rcpp/hash/SelfHash.h: Ditto
2016-10-21 Qiang Kou <qkou@umail.iu.edu>
* inst/include/Rcpp/barrier.h: Change string_elt/vector_elt to accept R_xlen_t
* inst/include/Rcpp/routines.h: Ditto
* src/barrier.cpp: Ditto
2016-10-19 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/date_datetime/Datetime.h (Rcpp): Additional
operator+ for int argument
2016-10-18 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/date_datetime/Date.h (Rcpp): Add operator double()
* inst/include/Rcpp/date_datetime/Datetime.h (Rcpp): Ditto
2016-10-17 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/date_datetime/newDatetimeVector.h (Rcpp): Allow
setting of timezone attribute; default not-set leads to local as in R
2016-10-16 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp.h (RCPP_NEW_DATE_DATETIME_VECTORS): Add a new
compile-time #define to switch between 'old' (existing) and 'new'
DateVector and DatimeVector classes. Currently uses 'new' for testing
plan to switch to proper deprecation schedule.
* inst/include/Rcpp/date_datetime/date_datetime.h: New header file (and
directory) regrouping all Date and Datetime headers, scalar and vector
* inst/include/Rcpp/date_datetime/Date.h: Moved one directory down
* inst/include/Rcpp/date_datetime/Datetime.h: Ditto
* inst/include/Rcpp/date_datetime/oldDateVector.h: Moved and renamed
* inst/include/Rcpp/date_datetime/oldDatetimeVector.h: Ditto
* inst/include/Rcpp/date_datetime/newDateVector.h: New implementation
inheriting from NumericVector, still optional
* inst/include/Rcpp/date_datetime/newDatetimeVector.h: Ditto
2016-09-05 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version): Roll minor version
* cleanup: Clean two more file type from vignettes/
2016-09-04 Nathan Russell <russell.nr2012@gmail.com>
* inst/include/Rcpp/sugar/functions/rowSums.h: New functions
rowSums(), colSums(), rowMeans(), and colMeans()
* inst/include/Rcpp/sugar/functions/functions.h: Idem
* inst/unitTests/cpp/sugar.cpp: Unit tests for new functions
* inst/unitTests/runit.sugar.R: Idem
2016-09-04 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Release 0.12.7
* inst/NEWS.Rd: Release 0.12.7
* vignettes/Rcpp.bib: Release 0.12.7
* inst/include/Rcpp/config.h: Release 0.12.7
* README.md: Updated counts for dependents and tests
* debian/*: Changes for Debian release of 0.12.7
2016-09-02 Simon Dirmeier <simon.dirmeier@bsse.ethz.ch>
* src/attributes.cpp: Remove leading underscore in header guard
2016-08-14 James J Balamuta <balamut2@illinois.edu>
* inst/examples/FastLM/lmGSL.R: Updated example to use new GSL templates
2016-08-11 Dirk Eddelbuettel <edd@debian.org>
* .travis.yml: Switch to using run.sh for Travis CI
2016-08-09 Artem Klevtsov <a.a.klevtsov@gmail.com>
* inst/include/Rcpp/macros/dispatch.h: Add variadic conditional macro
when C++11 compiler used
* ints/include/unitTests/cpp/dispatch.cpp: Add unit tests for
RCPP_RETURN_VECTOR and RCPP_RETURN_MATRIX macro
* ints/include/unitTests/runit.dispatch.R: Idem
2016-08-05 James J Balamuta <balamut2@illinois.edu>
* inst/examples/FastLM/fastLMviaArmadillo.r: format fix
* inst/examples/FastLM/lmGSL.R: Updated example to use
Rcpp attributes instead of cxxfunction
* inst/examples/FastLM/lmArmadillo.R: Idem
* inst/examples/functionCallback/newApiExample.r: Idem
* inst/examples/RcppInline/RcppInlineExample.r: Idem
* inst/examples/RcppInline/RcppInlineWithLibsExamples.r: Idem
* inst/examples/RcppInline/UncaughtExceptions.r: Idem
* inst/examples/RcppInline/external_pointer.r: Idem
2016-08-04 James J Balamuta <balamut2@illinois.edu>
* src/attributes.cpp: Correct variable re-declaration
* inst/examples/RcppGibbs/RcppGibbs.R: Updated example to use Rcpp
attributes instead of cxxfunction
* inst/examples/RcppGibbs/timeRNGs.R: Idem
2016-08-03 Dirk Eddelbuettel <edd@debian.org>
* .gitattributes: Added to have ChangeLog and NEWS.Rd merge via union
2016-08-02 James J Balamuta <balamut2@illinois.edu>
* R/Rcpp.package.skeleton.R: Added autogeneration warning
* src/attributes.cpp: Fixed invalid C++ Identifiers and modified export
header to warn against hand edits
* vignettes/Rcpp-package.Rnw: Updated code generation snippets
* man/Rcpp.package.skeleton.Rd: Add warning on hand edits to the
autogenerated RcppExports files.
* man/compileAttributes.Rd: Idem
2016-08-02 Qiang Kou <qkou@umail.iu.edu>
* inst/include/Rcpp/String.h: CE_UTF8 as default encoding
* inst/unitTests/cpp/String.cpp: Update unit test
* inst/unitTests/runit.String.R: Idem
2016-08-01 Nathan Russell <russell.nr2012@gmail.com>
* inst/include/Rcpp/vector/Vector.h: Added decreasing option for Vector
sort
* inst/include/Rcpp/internal/NAComparator.h: Idem
* inst/unitTests/cpp/Vector.cpp: Idem
* inst/unitTests/runit.Vector.R: Idem
2016-07-31 Qiang Kou <qkou@umail.iu.edu>
* inst/examples/SugarPerformance/sugarBenchmarks.R: Remove usage of Rf_eval
* inst/include/Rcpp/Environment.h: Idem
* inst/include/Rcpp/Module.h: Idem
* inst/include/Rcpp/exceptions.h: Idem
* inst/include/Rcpp/proxy/FieldProxy.h: Idem
* inst/include/Rcpp/r_cast.h: Idem
* inst/unitTests/cpp/language.cpp: Idem
* src/barrier.cpp: Idem
2016-07-24 Dirk Eddelbuettel <edd@debian.org>
* inst/unitTests/cpp/rmath.cpp: Added RNG unit tests for sugar variants
* inst/unitTests/runit.rmath.R: Idem
2016-07-22 James J Balamuta <balamut2@illinois.edu>
* inst/unitTests/cpp/rmath.cpp: Added unit tests for Rmath RNGs
* inst/unitTests/runit.rmath.R: idem
* inst/include/Rcpp/Environment.h: Added get() & find() that accept
a symbol
* inst/include/Rcpp.h: Modified header load order so that Symbol.h
is now placed before Environment.h
2016-07-21 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version): Roll minor release
2016-07-18 Kevin Ushey <kevin@rstudio.com>
* inst/include/Rcpp/r/headers.h: Ensure NORET macro is set appropriately
2016-07-18 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Release 0.12.6
* inst/NEWS.Rd: Release 0.12.6
* vignettes/Rcpp.bib: Release 0.12.6, RProtoBuf updates
* inst/include/Rcpp/config.h: Release 0.12.6
* README.md: Updated counts for dependents and tests
* debian/*: Changes for Debian release of 0.12.5
2016-07-17 James J Balamuta <balamut2@illinois.edu>
* vignettes/Rcpp-quickref.Rnw: Added sections on Rcpp attributes and
plugins. Facelifts on important notes, inline, environments, and calling
R functions.
2016-07-16 Daniel C. Dillon <dcdillon@gmail.com>
* Added a const_interator typedef to VectorBase
2016-07-15 James J Balamuta <balamut2@illinois.edu>
* vignettes/Rcpp-FAQ.Rnw: Added section on default function parameters
2016-07-15 Dirk Eddelbuettel <edd@debian.org>
* vignettes/Rcpp-FAQ.Rnw: Also point to Rcpp-attributes in Question 1
2016-07-13 Dirk Eddelbuettel <edd@debian.org>
* NAMESPACE: Add import for glob2rx to please R CMD check
* man/cppFunction.Rd: line break below 90 columns to please R CMD check
2016-07-11 J.J. Allaire <jj@rstudio.org>
* R/Attributes.R Add cacheDir argument to sourceCpp to enable caching of
shared libraries across R sessions
* src/attributes.cpp Add cacheDir argument to sourceCpp to enable caching of
shared libraries across R sessions
* man/sourceCpp.Rd: Document new cacheDir option
* man/cppFunction.Rd: Idem
* man/evalFunction.Rd: Idem
2016-07-10 Nathan Russell <russell.nr2012@gmail.com>
* inst/include/Rcpp/algorithm.h: Accomodate clang compiler
2016-07-03 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version): Rolling minor version
2016-07-02 Qiang Kou <qkou@umail.iu.edu>
* src/attributes.cpp: Replace '.' in package names
2016-06-23 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version): Rolling minor version
* inst/include/Rcpp/exceptions.h (Rcpp): Also expose Rf_warningcall()
within Rcpp namespace (without leading Rf_)
2016-06-20 Qin Wenfeng <mail@qinwenfeng.com>
* inst/include/Rcpp/exceptions.h: add RCPP_USING_UTF8_ERROR_STRING macro
to use UTF-8 encoding exception string in R
2016-06-14 Artem Klevtsov <a.a.klevtsov@gmail.com>
* inst/include/Rcpp/sugar/functions/na_omit.h: Improve na_omit for
vectors without NA
* inst/unitTests/cpp/sugar.cpp: Add unit test for the na_omit
* inst/unitTests/runit.sugar.R: Ditto
2016-06-02 Kirill Müller <krlmlr@mailbox.org>
* inst/include/Rcpp/algorithm.h: Use "long long" only if available
* inst/include/Rcpp/exceptions.h: Annotate stop() with NORET
2016-05-18 Daniel C. Dillon <dcdillon@gmail.com>
* inst/include/Rcpp/algorithm.h: New approach for sugar
* inst/unitTests/cpp/algorithm.cpp: Unit test support
* inst/unitTests/runit.algorithm.R: Ditto
2016-05-17 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version): Rolling minor version
2016-05-16 Qiang Kou <qkou@umail.iu.edu>
* inst/include/Rcpp/String.h: Correct string replacement
* inst/unitTests/runit.String.R: Unit test
2016-05-16 Daniel C. Dillon <dcdillon@gmail.com>
* inst/include/Rcpp/sugar/functions/max.h: Fixing constness
* inst/include/Rcpp/sugar/functions/min.h: Ditto
2016-05-15 Daniel C. Dillon <dcdillon@gmail.com>
* inst/include/Rcpp/vector/Matrix.h: Correcting ambiguities in
Vector/Matrix and scalar operations
* inst/include/Rcpp/sugar/operators/divides.h: Ditto
* inst/include/Rcpp/sugar/operators/minus.h: Ditto
* inst/include/Rcpp/sugar/operators/plus.h: Ditto
* inst/include/Rcpp/sugar/operators/times.h: Ditto
2016-05-14 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Release 0.12.5
* inst/NEWS.Rd: Release 0.12.5
* vignettes/Rcpp.bib: Release 0.12.5
* inst/include/Rcpp/config.h: Release 0.12.5
* debian/*: Changes for Debian release of 0.12.5
* vignettes/Rcpp.bib: Updated references
2016-05-13 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Rolled minor version
* R/compilerCheck.R: Minimal R function to check g++ version sufficiency
* man/compilerCheck.Rd: Documentation
2016-05-11 Dirk Eddelbuettel <edd@debian.org>
* R/Rcpp.package.skeleton.R: Modified to create a package without notes,
warnings, or error even pkgKitten is not available
* R/Rcpp.package.skeleton.R (.playWithPerPackageHelpPage): Added new
helper function to be used when pkgKitten is not available
* inst/skeleton/manual-page-stub.Rd: Stub for per-package help page used
when pkgKitten is not available
2016-05-10 Dirk Eddelbuettel <edd@debian.org>
* R/Rcpp.package.skeleton.R: Also correct Title: and Description: to
satisfy R CMD check in R-release and (current) R-devel
2016-05-08 Dirk Eddelbuettel <edd@debian.org>
* inst/unitTests/cpp/Matrix.cpp: Made four scalar/matrix tests less
ambiguous for overloads by using double as scalar
2016-05-06 Dirk Eddelbuettel <edd@debian.org>
* R/loadRcppModules.R (loadRcppModules): Add call to .Deprecated
pointing out that loadModule is preferred
* man/Rcpp-deprecated.Rd: Added to list deprecated functions
* man/loadRcppModules-deprecated.Rd: Renamed to -deprecated, added link
to loadModule which is the preferred method
* vignettes/Rcpp-modules.Rnw: Updated with respect to loadRcppModules
deprecation and loadModule being preferred
2016-04-15 Kevin Ushey <kevinushey@gmail.com>
* src/attributes.cpp: Add a missing 'winslash = "/"'
2016-04-14 J.J. Allaire <jj@rstudio.org>
* src/attributes.cpp: Correct handling of dependent file paths on
Windows (use winslash = "/")
2016-04-13 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version): Rolling minor version and Date
2016-04-11 Ben Goodrich <goodrich.ben@gmail.com>
* R/Module.R: Avoid calling as.character() on C++Object to prevent race
2016-04-02 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: Rolled to minor version 0.12.4.3
* inst/include/Rcpp/config.h: Ditto
* ChangeLog: Added entries for PRs 453 and 454
* inst/NEWS.Rd: Add two missing \item uses
* R/Module.R: Rename copy to copyObject to avoid function name collisions
* inst/unitTests/runit.Module.R: Ditto
* man/copyObject.Rd: Ditto
* inst/NEWS.Rd: Ditto
* NAMESPACE: Ditto
* inst/unitTests/runit.environments.R: Skip test.environment.child test