-
-
Notifications
You must be signed in to change notification settings - Fork 211
/
ChangeLog
10896 lines (7223 loc) · 410 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
2024-11-03 Marco Colombo <mar.colombo13@gmail.com>
* vignettes/rmd/Rcpp-FAQ.Rmd: Fixed typos
* vignettes/rmd/Rcpp-attributes.Rmd: Idem
* vignettes/rmd/Rcpp-extending.Rmd: Idem
* vignettes/rmd/Rcpp-introduction.Rmd: Idem
* vignettes/rmd/Rcpp-libraries.Rmd: Idem
* vignettes/rmd/Rcpp-modules.Rmd: Idem
* vignettes/rmd/Rcpp-package.Rmd: Idem
* vignettes/rmd/Rcpp-quickref.Rmd: Idem
* vignettes/rmd/Rcpp-sugar.Rmd: Idem
2024-11-02 Dirk Eddelbuettel <edd@debian.org>
* tests/tinytest.R: Minor code edit, removal of two no longer
required setters for tinytest
2024-11-01 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version to 1.0.13.5
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
2024-10-31 Kevin Ushey <kevinushey@gmail.com>
* inst/include/Rcpp/r/compat.h: Require R (>= 4.5.0) for new APIs
2024-10-26 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version to 1.0.13.4
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
* .github/workflows/ci.yaml (jobs): Roll checkout action to v4
2024-10-26 Gábor Csárdi <csardi.gabor@gmail.com>
* inst/include/Rcpp/exceptions_impl.h: check for DragonFlyBSD to fix
compilation
2024-10-07 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/Rcpp/platform/compiler.h: Uncomment
HAS_VARIADIC_TEMPLATES macro definition
* src/api.cpp: Simplify checks for variadic templates
* inst/include/Rcpp/DataFrame.h: Idem
* inst/include/Rcpp/DottedPair.h: Idem
* inst/include/Rcpp/Function.h: Idem
* inst/include/Rcpp/InternalFunctionWithStdFunction.h: Idem
* inst/include/Rcpp/Language.h: Idem
* inst/include/Rcpp/Pairlist.h: Idem
* inst/include/Rcpp/grow.h: Idem
* inst/include/Rcpp/internal/call.h: Idem
* inst/include/Rcpp/module/class.h: Idem
* inst/include/Rcpp/traits/index_sequence.h: Idem
* inst/include/Rcpp/traits/named_object.h: Idem
* inst/include/Rcpp/vector/Vector.h: Idem
* inst/include/Rcpp/Module.h: Idem + add missing is_void method
* inst/tinytest/test_module.R: Add test for void functions and
methods
2024-10-04 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version to 1.0.13.3
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
2024-09-29 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/vector/Vector.h: Remove a cast as R_xlen_t
is returned now
2024-09-17 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
2024-09-12 Iñaki Ucar <iucar@fedoraproject.org>
* vignettes/.gitignore: Refinement to ignore more files under rmd/
* vignettes/pdf/*: Rebuilt with Ghostscript 10.03.1
* vignettes/*.pdf: Idem
2024-08-31 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Authors@R): Added
2024-08-28 Dirk Eddelbuettel <edd@debian.org>
* R/Rcpp.package.skeleton.R: Create DESCRIPTION with Auhors@R file
* inst/tinytest/test_rcpp_package_skeleton.R: Adjust tests
2024-08-20 Dirk Eddelbuettel <edd@debian.org>
* inst/tinytest/test_sugar.R: Skip one more NA related test on arm64
and macOS as failure is seen at r-universe on arm64
* .github/workflows/macos.yaml: Add basic r-ci setup but dialed-down
to macOS only (as Linux is covered via multiple Docker setups)
2024-08-19 Dirk Eddelbuettel <edd@debian.org>
* Contributing.md: Refreshed content
2024-07-30 Dirk Eddelbuettel <edd@debian.org>
* vignettes/rmd/Rcpp-modules.Rmd (are): Add short two-sentence
illustration following GitHub issue #1322
2024-07-24 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
2024-07-11 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Release 1.0.13
* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Idem
* vignettes/rmd/Rcpp.bib: Idem
* inst/bib/Rcpp.bib: Idem
* vignettes/pdf/*: Rebuilt
2024-07-07 Kevin Ushey <kevinushey@gmail.com>
* inst/include/Rcpp/internal/SEXP_Iterator.h: Avoid using VECTOR_PTR
* inst/include/Rcpp/vector/Subsetter.h: Avoid using STRING_PTR
* inst/include/RcppCommon.h: Include compatibility defines
* src/barrier.cpp: Avoid using {STRING/VECTOR}_PTR
* inst/include/Rcpp/r/compat.h: Include compatibility defines
2024-07-05 Kevin Ushey <kevinushey@gmail.com>
* inst/include/Rcpp/Environment.h: Drop support for UserDefinedDatabase
[ merged 2024-07-22 after release of Rcpp 1.0.13 ]
* inst/include/Rcpp/Language.h: Avoid using SET_TYPEOF
* inst/include/Rcpp/Pairlist.h: Idem
* inst/include/Rcpp/r_cast.h: Idem
[ merged 2024-07-24 after release of Rcpp 1.0.13 ]
2024-06-22 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
2024-06-11 Kevin Ushey <kevinushey@gmail.com>
* inst/include/Rcpp/internal/r_vector.h: Use template specializations to
avoid DATAPTR usage
* inst/include/Rcpp/vector/traits.h: Implement bounds checks in
r_vector_cache access
* inst/tinytest/cpp/Vector.cpp: Add unit tests
* inst/tinytest/test_vector.R: Add unit tests
* tests/tinytest.R: Test in serial by default
2024-06-02 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/internal/export.h: More R_xlen_t switching
* inst/include/Rcpp/vector/SubMatrix.h: Idem
* inst/include/Rcpp/vector/Vector.h: Idem
2024-06-01 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/internal/Proxy_Iterator.h (Proxy_Iterator):
Switch to R_xlen_t ('clang++-17 -Wconversion -Wno-sign-conversion')
* inst/include/Rcpp/DataFrame.h: Idem
* inst/include/Rcpp/Vector.h: Idem
2024-05-28 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
2024-05-27 Dirk Eddelbuettel <edd@debian.org>
* README.md: Remove link references to StackOverflow
* inst/NEWS.Rd: Idem
* inst/include/Rcpp/Module.h (S4_CppOverloadedMethods): Add cast to int
to avoid warnings under 'clang++-17 -Wconversion -Wno-sign-conversion'
* inst/include/Rcpp/vector/Vector.h (Vector): Idem
* inst/include/Rcpp/module/class.h: Switch variable to size_t to avoid
to avoid warnings under 'clang++-17 -Wconversion -Wno-sign-conversion'
* inst/tinytest/testRcppClass/src/init.c: Add void to signature
2024-05-26 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
2024-05-23 Andrew Johnson <andrew.johnson@arjohnsonau.com>
* inst/include/Rcpp/: Added variadic templates to be used instead of
the generated code in `Rcpp/generated` and `Rcpp/module` when
compiling with C++11 or later.
2024-05-18 Dirk Eddelbuettel <edd@debian.org>
* docker/ci-4.3/Dockerfile: Add rcpp/ci-4.3 container for R 4.3.*
* .github/workflows/ci.yaml (jobs): Add rcpp/ci-4.3 to matrix
2024-05-16 Dirk Eddelbuettel <edd@debian.org>
* README.md: Use tinyverse.netlify.app for dependency badge
2024-03-05 Dirk Eddelbuettel <edd@debian.org>
* docker/ci/Dockerfile: Switch the base container to r2u
* docker/plus/Dockerfile: Given r2u, install more binaries
* README.md: Add r-universe badge
2024-02-21 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
* inst/include/Rcpp/r/headers.h: Set R_NO_REMAP (and MAXELTSIZE)
only if not already defined (as will be needed with R 4.4.0)
2024-01-09 Dirk Eddelbuettel <edd@debian.org>
* README.md: Update usage numbers
* README.md: Remove StackOverflow badge which only works for
logged-in users and is unsuitable for the README
2024-01-08 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Release 1.0.12
* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Idem
* vignettes/rmd/Rcpp.bib: Idem
* inst/bib/Rcpp.bib: Idem
* vignettes/pdf/*: Rebuilt
2024-01-01 Dirk Eddelbuettel <edd@debian.org>
* vignettes/rmd/Rcpp.bib: Updated to current versions of cited packages
* inst/bib/Rcpp.bib: Idem
2023-12-27 Dirk Eddelbuettel <edd@debian.org>
* src/api.cpp (type2name): Refine OBJSXP return
2023-12-21 Dirk Eddelbuettel <edd@debian.org>
* src/api.cpp (type2name): Recognise OBJSXP added in R 4.4.0
2023-11-28 Dirk Eddelbuettel <edd@debian.org>
* inst/tinytest/testRcppInterfaceExporter/R/RcppExports.R: Regenerated
* inst/tinytest/testRcppInterfaceExporter/src/RcppExports.cpp: Idem
2023-11-26 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
* src/attributes.cpp (generateCpp): Add a format string for Rf_error
call to not run afoul of -Wformat-security
2023-11-24 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
* inst/include/Rcpp/iostream/Rstreambuf.h: Cast streamsize to int in
two spots
* inst/include/Rcpp/print.h (warningcall): Add missing '%s' format
2023-11-11 Dirk Eddelbuettel <edd@debian.org>
* vignettes/rmd/Rcpp-FAQ.Rmd: Updated and edited
* vignettes/pdf/Rcpp-FAQ.pdf: Updated
* vignettes/rmd/Rcpp.bib: Updated
2023-10-28 Dirk Eddelbuettel <edd@debian.org>
* vignettes/rmd/Rcpp-FAQ.Rmd: Updated and edited
* vignettes/pdf/Rcpp-FAQ.pdf: Updated
* vignettes/rmd/Rcpp.bib: Updated
2023-10-27 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
* R/tools.R: Correct missing Rd macros (spotted by R-devel CMD check)
2023-10-22 Aaron Lun <infinite.monkeys.with.keyboards@gmail.com>
* inst/include/Rcpp/vector/MatrixColumn.h: Cast integer index
to R_xlen_t to avoid integer overflow with large matrices.
* inst/include/Rcpp/vector/MatrixRow.h: Ditto.
* inst/include/Rcpp/vector/Vector.h: Remove stray cast to int
that causes overflow when returning the end iterator.
2023-09-30 Dirk Eddelbuettel <edd@debian.org>
* vignettes/rmd/Rcpp-introduction.Rmd (Rcpp): Correct caption of
third figure (cf GitHub issue #1276)
* vignettes/pdf/Rcpp-introduction.pdf: Rebuilt
2023-08-31 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
2023-08-29 Iñaki Ucar <iucar@fedoraproject.org>
* R/Attributes.R: Ad-hoc fix for testthat's C entrypoint in
RcppExports.cpp
2023-08-03 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
2023-08-03 Michael Chirico <chiricom@google.com>
* src/attributes.cpp: Directly `#include <ostream>` for `std::endl`
* src/date.cpp: Directly `#include <R_ext/Booelan.h>` for `TRUE` and
`FALSE`
2023-07-03 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Release 1.0.11
* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Idem
* vignettes/rmd/Rcpp.bib: Idem
* inst/bib/Rcpp.bib: Idem
* vignettes/pdf/*: Rebuilt
2023-07-02 Dirk Eddelbuettel <edd@debian.org>
* README.md: Update usage numbers in Examples section
2023-07-01 Dirk Eddelbuettel <edd@debian.org>
* docker/ci-dev/Dockerfile: Make 'rm' more robust as 'rm -f'
* docker/ci-4.2/Dockerfile: Add new container for R 4.2.3
* .github/workflows/ci.yaml (jobs): Add entry for R 4.2.3
2023-06-12 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
* README.md: Two URL updates for appease R CMD check
* DESCRIPTION (Encoding): Somewhat belated addition
2023-04-18 Dirk Eddelbuettel <edd@debian.org>
* README.md: Use app.codecov.io as base for codecov link
2023-04-12 Dirk Eddelbuettel <edd@debian.org>
* .github/workflows/ci.yaml: Simplified container use
2023-03-27 Dirk Eddelbuettel <edd@debian.org>
* .github/workflows/stale.yaml: Roll to v8
2023-03-27 Iñaki Ucar <iucar@fedoraproject.org>
* R/Attributes.R: Remove command quoting, not needed anymore for system2()
* inst/tinytest/test_xptr.R: Update copyright
2023-03-26 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
* inst/tinytest/test_stats.R: Revisit change from PR #1252; we now
use a slightly smaller tolerance to accomodate old and new value
* inst/tinytest/test_sugar.R: Protect a small number of tests on NA
propagation from running on arm64/Darwin which requires special care
2023-03-25 Iñaki Ucar <iucar@fedoraproject.org>
* R/Attributes.R: Switch to system2 to be able to capture stderr on error
2023-03-24 Dirk Eddelbuettel <edd@debian.org>
* docker/ci-dev/Dockerfile: During Debian freeze experimental repo is
renamed which leads to a hickup here so temporarily remove list file
2023-03-24 Iñaki Ucar <iucar@fedoraproject.org>
* inst/tinytest/test_xptr.R: Skip some tests on Windows
2023-03-19 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
* src/attributes.cpp (RExportsGenerator::writeEnd): Replace a pair of
apostrophes with backticks in generated .Call() statemente
2023-02-07 Dirk Eddelbuettel <edd@debian.org>
* inst/tinytest/test_stats.R: Use more accurate value in R 4.3.0
2023-02-06 Dirk Eddelbuettel <edd@debian.org>
* inst/CITATION: Update to new format preferred by r-devel
2023-02-02 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
* inst/include/Rcpp/sugar/functions/sapply.h: Enable compilation
under C++20 (using clang++ and its C++ library) via invoke_result
2023-01-29 Iñaki Ucar <iucar@fedoraproject.org>
* inst/tinytest/test_xptr.R: Fix a couple of tests writing to stdout
2023-01-24 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
2023-01-24 Lukasz Laniewski-Wollk <llaniewski@meil.pw.edu.pl>
* R/RcppLdpath.R: CxxFlags() now quotes only non-standard paths on linux
2023-01-22 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Release 1.0.10
* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Idem
2023-01-08 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/String.h: Address clang++-14 conversion warning
* inst/include/Rcpp/sugar/functions/mean.h: Idem
* inst/include/Rcpp/vector/Vector.h: Idem
* src/attributes.cpp: Idem
* src/date.cpp: Idem
2022-12-29 Dirk Eddelbuettel <edd@debian.org>
* .github/workflows/docker.yaml (jobs): Update several actions
2022-12-26 Dirk Eddelbuettel <edd@debian.org>
* .github/workflows/stale.yaml (jobs): Update actions/stale@v6
2022-11-14 Dirk Eddelbuettel <edd@debian.org>
* .github/workflows/ci.yaml (jobs): Update to actions/checkout@v3
2022-10-27 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
2022-10-27 Kevin Ushey <kevinushey@gmail.com>
* inst/tinytest/cpp/coerce.cpp: add coerce unit tests
* inst/tinytest/test_coerce.R: idem
2022-10-25 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/internal/r_coerce.h (coerce_to_string<RAWSXP >):
Replace last remaining sprintf with snprintf
2022-10-12 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
* R/Attributes.R (sourceCpp): Protect path to binary from spaces
2022-10-06 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
* inst/tinytest/test_dataframe.R (test.DataFrame.PushZeroLength): Add
new test
* inst/tinytest/cpp/DataFrame.cpp (DataFrame_PushOnEmpty): C++
support for new test
2022-10-04 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/DataFrame.h (set_type_after_push): Allow zero-row
data.frame objects to be grown by push_{back,front}()
2022-09-25 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
2022-09-23 Kevin Ushey <kevinushey@gmail.com>
* R/Module.R: Force 'finalize' method to be materialized
2022-09-20 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
* R/Attributes.R: Support C++20, C++23 and C++2b (for experimental /
incomplete support) via new plugins
2022-07-27 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
2022-07-23 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/Rcpp/r/headers.h: Unwind protection is enabled by default
unless `RCPP_NO_UNWIND_PROTECT` is defined (`RCPP_USE_UNWIND_PROTECT` is
not checked anymore and has no effect)
* inst/include/Rcpp/vector/Vector.h: Switch evaluation to `Rcpp_eval`
* R/Attributes.R: `[[Rcpp::plugins(unwindProtect)]]` is deprecated
* inst/tinytest/cpp/stack.cpp: Adapted
* inst/tinytest/test_exceptions.R: Adapted
* inst/tinytest/test_interface.R: Adapted
* inst/tinytest/testRcppInterfaceExporter/src/config.h: Removed
2022-07-10 Dirk Eddelbuettel <edd@debian.org>
* docker/ci-4.1/Dockerfile: Add Dockerfile for 4.1 series
* .github/workflows/ci.yaml: Add 4.1 to CI matrix
* .github/workflows/docker.yaml: Do not rebuild versioned ones
2022-07-02 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Release 1.0.9
* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Idem
* vignettes/rmd/Rcpp.bib: Idem
* inst/bib/Rcpp.bib: Idem
* vignettes/pdf/*: Rebuilt
2022-07-01 Dirk Eddelbuettel <edd@debian.org>
* man/dependsAttribute.Rd: Use https in URL
* man/exportAttribute.Rd: Idem
* man/interfacesAttribute.Rd: Idem
* DESCRIPTION (URL): Idem
* README.md: Idem, use Amazon page for Rcpp book
2022-05-26 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
2022-05-25 Dirk Eddelbuettel <edd@debian.org>
* inst/tinytest/test_string.R: Add C++11 conditioning for new unit tests
2022-05-23 Dean Scarff <dos@scarff.id.au>
* inst/include/Rcpp/String.h: Make less copies of strings via move
semantics and preserving the buffer/SEXP representation when copying
* inst/include/RcppCommon.h: include <utility> for std::move
* inst/tinytest/cpp/String.cpp: Add unit tests
* inst/tinytest/test_string.R: Add unit tests
2022-05-12 Dirk Eddelbuettel <edd@debian.org>
* docker/ci/Dockerfile: Added xml2, also use more r-cran-* binaries
2022-05-12 Marco Colombo <mar.colombo13@gmail.com>
* vignettes/rmd/Rcpp-FAQ.Rmd: Fixed typo
2022-04-03 Dirk Eddelbuettel <edd@debian.org>
* vignettes/rmd/Rcpp-FAQ.Rmd: Add paragraph about Date(time) not
being aimed at parsing large quantities at once
* vignettes/pdf/Rcpp-FAQ.pdf: Idem
* vignettes/rmd/Rcpp.bib: Add four entries
* inst/bib/Rcpp.bib: Idem
2022-03-14 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
2022-03-13 Iñaki Ucar <iucar@fedoraproject.org>
* src/barrier.cpp: Untag tokens upon removal from the precious list,
so that the internal reference counter can be safely decremented by R
2022-03-13 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
* tests/tinytest.R: Disable full tests on four-digits release to not
exceed CRAN test time preference
2022-03-10 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
* inst/tinytest/cpp/sugar.cpp: Also conditionally replace
std::unary_function with std::function
* vignettes/rmd/Rcpp-sugar.Rmd: Replace std::unary_function example
with std::function (implicitly requiring C++ in vignette example)
* vignettes/rmd/Rcpp-FAQ.Rmd: Idem
2022-03-09 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/Language.h: To quieten compilations, replace
std::(unary|binary)_function with std::function for C++11 or later
* inst/include/Rcpp/StringTransformer.he: Idem
2022-01-21 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
2022-01-20 Dirk Eddelbuettel <edd@debian.org>
* src/attributes.cpp: Make three small changes to permit compilation
under C++98 now (while we consider just turning to C++11 overall)
2022-01-14 Dirk Eddelbuettel <edd@debian.org>
* inst/tinytest/test_packageversion.R: Comparison to 'dev' revision
version now tolerant of optional trailing zero (e.g. 1.0.8.0)
2022-01-11 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Release 1.0.8
* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Idem
* vignettes/rmd/Rcpp.bib: Idem
* inst/bib/Rcpp.bib: Idem
* vignettes/pdf/*: Rebuilt
* inst/include/Rcpp/r/headers.h: STRICT_R_HEADERS set by default
unless override RCPP_NO_STRICT_HEADERS is set (cf issue #1158)
2022-01-10 Dirk Eddelbuettel <edd@debian.org>
* vignettes/rmd/Rcpp.bib: Updated CRAN and R references
* inst/bib/Rcpp.bib: Idem
* vignettes/rmd/getCurrentVersionsOfCitedPackages.R: Updated
2022-01-01 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/NEWS.Rd: Added entries for a few PRs since last release
* vignettes/rmd/Rcpp.bib: Provide both url and doi entries
* inst/bib/Rcpp.bib: Idem
2021-12-28 Dirk Eddelbuettel <edd@debian.org>
* README.md: Add section on performance
2021-12-24 Dirk Eddelbuettel <edd@debian.org>
* README.md: Update usage counts
2021-12-16 Dirk Eddelbuettel <edd@debian.org>
* vignettes/rmd/Rcpp.bib: Update JSS references to new doi scheme,
update http URL links to https
* inst/bib/Rcpp.bib: Idem
2021-12-10 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
2021-12-08 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/Rcpp: Added as new entry point
* inst/include/Rcpp/Light: Added as lighter-weight entry point
* inst/include/Rcpp/Lighter: Idem
* inst/include/Rcpp/Lightest: Idem
2021-11-30 Dirk Eddelbuettel <edd@debian.org>
* README.md: Remove Travis badge
* .travis.yml: Removed
2021-11-15 Dirk Eddelbuettel <edd@debian.org>
* docker/ci/Dockerfile: Minor cleanup
2021-11-14 Dirk Eddelbuettel <edd@debian.org>
* R/RcppLdpath.R: Simplified as we no longer need to worry about CXX0X
2021-11-11 Kevin Ushey <kevinushey@gmail.com>
* R/RcppLdpath.R: CxxFlags() now quotes its include path
2021-10-15 Travers Ching <traversc@gmail.com>
* inst/tinytest/testRcppAttributePackage: Tests `signature` attribute
* inst/tinytest/test_attribute_package.R: Tests `signature` attribute
2021-10-13 Dirk Eddelbuettel <edd@debian.org>
* README.md: Switch JSS url to doi form per JSS request
* man/Rcpp-package.Rd: Idem
* man/RcppLdFlags.Rd: Idem
* inst/CITATION: Only use doi entries in three citEntry blocks
2021-10-11 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
* .codecov.yml (comment): Disable codecov comments on PRs
2021-10-10 Travers Ching <traversc@gmail.com>
* src/attributes.cpp: Add `signature` attribute and syntax checks
2021-10-02 Dirk Eddelbuettel <edd@debian.org>
* .github/workflows/docker.yaml (jobs): Add container builder action
2021-10-01 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Updated
2021-09-29 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/Rcpp/XPtr.h: Check for new define
`RCPP_USE_FINALIZE_ON_EXIT` to flip the value of XPtr's `finalizeOnExit`
parameter from false (default) to true.
* inst/tinytest/test_xptr.R: Added test for this functionality.
2021-09-27 Dirk Eddelbuettel <edd@debian.org>
* README.md: Added total downloads badge
2021-09-06 Dirk Eddelbuettel <edd@debian.org>
* docker/ci-4.0/Dockerfile: Using R 4.0.5 to build ci-4.0
* .github/workflows/ci.yaml (jobs): Also run against R 4.0.*
2021-09-05 Dirk Eddelbuettel <edd@debian.org>
* inst/examples/Misc/piSugar.cpp (piSugar): Remove spurious call to
RNGScope we do not need with Rcpp Attributes
* inst/examples/RcppGibbs/RcppGibbs.R (Rgibbs): Comment on two uses
of RNGScope as historical in pre-Attributes code
* inst/examples/RcppGibbs/timeRNGs.R: Idem for one more
2021-08-05 Dirk Eddelbuettel <edd@debian.org>
* inst/bib/Rcpp.bib: Use https for CRAN URLs
* vignettes/rmd/Rcpp.bib: Idem
2021-07-25 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
2021-07-24 Dirk Eddelbuettel <edd@debian.org>
* vignettes/rmd/Rcpp-FAQ.Rmd: New entry on growing vectors
2021-07-08 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
* cleanup: Check for optional vignettes/rmd before trying to access it
2021-07-06 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Release 1.0.7
* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Idem
* vignettes/rmd/Rcpp.bib: Idem
* inst/bib/Rcpp.bib: Idem
* vignettes/pdf/*: Rebuilt
2021-07-05 Iñaki Ucar <iucar@fedoraproject.org>
* src/barrier.cpp (Rcpp_precious_remove): Protect from call with
wrong token when unloading modules compiled under earlier version
2021-07-02 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/r/headers.h: Update notice as January 2022
release will remove protection for STRICT_R_HEADERS making it default
2021-05-27 Dirk Eddelbuettel <edd@debian.org>
* inst/tinytest/cpp/rcppversion.cpp (checkVersion): Allow for more
than four components of a development version number
* inst/tinytest/test_packageversion.R: Idem
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Clarify in comment
2021-05-13 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
2021-05-09 Dirk Eddelbuettel <edd@debian.org>
* inst/include/RcppCommon.h: Add cfloat header
2021-04-09 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/hash/IndexHash.h: Silence one comparison, update
use of unsigned int to uint32_t throughout
2021-03-22 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
2021-03-21 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/api/meat/message.h: Add wrapper for base::message
* inst/include/Rcpp/api/meat/meat.h: Include new file
* inst/tinytest/test_misc.R: Simple test
* inst/tinytest/cpp/misc.cpp (messageWrapper): Test support
2021-02-23 Dirk Eddelbuettel <edd@debian.org>
* Contributing.md: Update unit test link to tinytest
2021-02-08 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Author): Add Inaki to the team
2021-02-01 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
* README.md: Mention the Rcpp drap repo and its release candidates in
installation section
2021-01-30 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/test_global_rostream.R: Added test new (optionally)
global Rcout and Rcerr objects
2021-01-28 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/Rcpp/iostream/Rstreambuf.h: Support for global
Rcout/Rcerr by defining `-DRCPP_USE_GLOBAL_ROSTREAM`; this mimics
std::cout/cerr; initialization code is automatically generated.
* inst/include/Rcpp/routines.h: Ditto
* src/api.cpp: Ditto
* src/attributes.cpp: Ditto
* src/rcpp_init.cpp: Ditto
2021-01-21 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
* inst/include/Rcpp/DataFrame.h: Remove unused variable
* R/Attributes.R (sourceCpp): Support argument echo to be passed to
source() to silence optional R evaluation
2021-01-19 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
* inst/include/RcppCommon.h: Preverse existing API and offer new
token-based API alongside via Rcpp_Precious{Preserve,Release}
* inst/include/Rcpp/String.h: Use Rcpp_Precious{Preserve,Release}
* inst/include/Rcpp/storage/PreserveStorage.h: Ditto
2021-01-17 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/Rcpp/String.h: Use Rcpp_{Preserve,Release}Object
throughout which connects to Rcpp_precious_* routines
* inst/include/Rcpp/exceptions.h: Use Rcpp_ReleaseObject
* inst/include/Rcpp/routines.h: Several corrections and refinements
* inst/include/Rcpp/storage/PreserveStorage.h: Ditto
* inst/include/Rcpp/traits/named_object.h: Ditto
* inst/include/Rcpp/unwuindProtect.h: Ditto
* inst/include/RcppCommon.h: Ditto
* src/barrier.cpp: Ditto
2021-01-17 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
[ these were originally committed 17 May 2020 and have been rebased ]
* src/barrier.cpp: Implement Rcpp_precious_{init,teardown,preserve,remove}
* src/rcpp_init.c: Register cpp_precious_{init,teardown,preserve,remove}
and call from R_{init,unload}_Rcpp
* inst/include/Rcpp/routines.h: Declare Rcpp_precious_{init,teardown,
preserve,remove}
* inst/include/Rcpp/exceptions.h: Use Rcpp_precious_remove
* inst/include/Rcpp/traits/named_object.h: Use
Rcpp_precious_{preserve,remove}
* inst/include/Rcpp/unwuindProtect.h: Use Rcpp_precious_preserve
* inst/include/RcppCommon.h: Use Rcpp_precious_{preserve,remove}
2021-01-16 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
* tests/tinytest.R: Test for CODECOV when deciding to run extensive
tests or just a subset, and set CI=true to enable run full set
* .github/workflows/stale.yaml: Run weekly instead of daily
* src/attributes.cpp: Additional #nocov tag(s)
* R/Attributes.R: Idem
* R/Module.R: Idem
* R/Rcpp.package.skeleton.R: Idem
* R/RcppClass.R: Idem
* R/RcppLdpath.R: Idem
* src/attributes.cpp: Support include files with dots in package name
2021-01-14 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Release 1.0.6
* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Idem
* vignettes/rmd/Rcpp.bib: Idem
* inst/bib/Rcpp.bib: Idem
2021-01-13 Dirk Eddelbuettel <edd@debian.org>
* vignettes/rmd/Rcpp.bib: Updated package versions
* inst/bib/Rcpp.bib: Idem
2021-01-02 Dirk Eddelbuettel <edd@debian.org>
* R/Rcpp.package.skeleton.R: Wrap any() around grepl()
2020-12-22 Dirk Eddelbuettel <edd@debian.org>
* .github/workflows/stale.yaml: Adding a staleness monitor labeling
and ultimately closing issues and PRs after suitably long windows
2020-12-16 Dirk Eddelbuettel <edd@debian.org>
* inst/NEWS.Rd: Updated for recent activity
* .github/workflows/ci.yaml: Add container-based CI runner
* README.md: Add new badge
2020-11-06 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION: More URL updates, e.g. http -> https
* README.md: Ditto
* inst/CITATION: Ditto
* man/Rcpp-package.Rd: Ditto
* inst/CITATION: Change from PeerJ Preprint to TAS
2020-10-25 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem
* inst/include/Rcpp/generated/InternalFunction__ctors.h: Switch XPtr
finalizer argument from false to true
2020-10-22 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/lang.h: Remove spurious whitespace
* vignettes/.gitignore: Refined to no longer ignore pdf files
* vignettes/pdf/*: Added
* inst/NEWS.Rd: Updated for two PRs
2020-10-21 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem