-
-
Notifications
You must be signed in to change notification settings - Fork 220
Expand file tree
/
Copy pathChangeLog
More file actions
11503 lines (7649 loc) · 431 KB
/
ChangeLog
File metadata and controls
11503 lines (7649 loc) · 431 KB
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
2026-02-27 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/Rcpp/sugar/functions/max.h: Fix UB for empty integer
* inst/include/Rcpp/sugar/functions/min.h: Idem
* inst/tinytest/test_sugar.R: Adapt tests
2026-02-17 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Updated
2026-02-17 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/Rcpp/sugar/operators/Comparator_With_One_Value.h: Fix UB
for non-integer RTYPEs in comparator
2026-01-23 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/DataFrame.h (nrow): Use R_nrow() with R >= 4.6.0
* inst/include/Rcpp/proxy/AttributeProxy.h (attributeNames): Use
R_getAttribNames() with R >= 4.6.0;
* inst/include/Rcpp/proxy/AttributeProxy.h (hasAttribute): Use
R_hasAttrib with R >= 4.6.0
2026-01-22 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
2026-01-21 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/date_datetime/Datetime.h: Fractional seconds type
switched to 'int' for consistency, print format string re-adjusted
2026-01-20 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/date_datetime/Datetime.h (format): Correct a
format string reflecting 'unsigned int' rather than 'int'
2026-01-13 Dirk Eddelbuettel <edd@debian.org>
* inst/tinytest/cpp/attributes_extended.cpp: New unit tests
* inst/tinytest/test_attributes_extended.R: Idem
* inst/tinytest/test_compile_attributes_errors.R: Idem
* inst/tinytest/test_cppfunction_errors.R: Idem
* inst/tinytest/test_sourcecpp_errors.R: Idem
* R/Attributes.R: Remove #nocov tags
* src/attributes.cpp: Idem
2026-01-12 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* inst/include/Rcpp/exceptions_impl.h: Combine previous and current
methods enabling when 'execinfo.h' is found on selected platforms
2026-01-08 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Release 1.1.1
* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Idem
2026-01-07 Dirk Eddelbuettel <edd@debian.org>
* vignettes/pdf/*: Rebuilt
* vignettes/rmd/Rcpp.bib: Updates to several URLs
* inst/bib/Rcpp.bib: Idem
* vignettes/rmd/*: Idem
* README.md: Idem
2026-01-06 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* vignettes/rmd/Rcpp.bib: Update package versions dates
* inst/bib/Rcpp.bib: Idem
2026-01-04 Dirk Eddelbuettel <edd@debian.org>
* inst/include/RcppCommon.h: No longer require RCPP_USING_UNWIND_PROTECT
* inst/include/Rcpp/r/headers.h: Idem
* inst/include/Rcpp/api/meat/Rcpp_eval.h: Idem
* inst/tinytest/cpp/stack.cpp: No longer test with RCPP_USING_UNWIND_PROTECT
* inst/tinytest/test_interface.R: Idem
2026-01-01 Dirk Eddelbuettel <edd@debian.org>
* R/Attributes.R: Additional or adjusted #nocov tags
* R/Rcpp.package.skeleton.R: Idem
* R/RcppLdpath.R: Idem
* R/asis.R: Idem
* R/inline.R: Idem
* inst/include/Rcpp/api/meat/Rcpp_eval.h: Idem
* inst/include/Rcpp/internal/caster.h: Idem
* inst/include/Rcpp/internal/export.h: Idem
* inst/include/Rcpp/proxy/NamesProxy.h: Idem
* inst/include/Rcpp/proxy/SlotProxy.h: Idem
* inst/include/Rcpp/vector/Vector.h: Idem
* inst/include/Rcpp/vector/proxy.h: Idem
* inst/include/Rcpp/vector/traits.h: Idem
* inst/include/Rcpp/Environment.h: Idem
* inst/include/Rcpp/Function.h: Idem
* inst/include/Rcpp/Module.h: Idem
* inst/include/Rcpp/S4.h: Idem
* inst/include/Rcpp/as.h: Idem
* inst/include/Rcpp/exceptions.h: Idem
* inst/include/Rcpp/r_cast.h: Idem
* src/attributes.cpp: Idem
* src/barrier.cpp: Idem
2025-12-30 Dirk Eddelbuettel <edd@debian.org>
* tests/tinytest.R: Refine decision of when not to run all tests even
when development version number is seen
2025-12-28 Dirk Eddelbuettel <edd@debian.org>
* README.md: Replace installation from drat section with r-universe
2025-12-22 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* inst/include/Rcpp/DataFrame.h (nrow): Simplified per #1430 discussion
relying on compact sequence representation removing use of ATTRIB
* inst/include/Rcpp/proxy/AttributeProxy.h (hasAttribute): For R
4.6.0, rewritten using R_mapAttrib() avoiding to-be-removed ATTRIB()
2025-12-21 Dirk Eddelbuettel <edd@debian.org>
* .github/workflows/docker.yaml: Add workflow_dispatch, update
checkout action
2025-12-19 Dirk Eddelbuettel <edd@debian.org>
* man/RcppUnitTests.Rd: Removed outdated help page
2025-12-17 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* DESCRIPTION (Depends): Add 'R (>= 3.5.0)'
2025-12-16 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* src/barrier.cpp (dataptr): Remove check for 'R (>= 3.5.0)'
* inst/include/Rcpp/Rmath.h: Remove check for 'R (>= 3.1.2)'
* inst/include/Rcpp/Symbol.h: Remove check for 'R (>= 3.2.0)'
* inst/include/Rcpp/exceptions.h: Remove check for 'R (>= 3.5.0)'
* inst/include/Rcpp/r/headers.h: Idem
* R/Attributes.R: Remove multiple checks for R version < 3.5.0
* R/Rcpp.package.skeleton.R: Idem
* inst/tinytest/testRcppInterfaceUser/tests/tests.R: Remove one check
2025-12-12 Dirk Eddelbuettel <edd@debian.org>
* inst/tinytest/test_system.R: Wrap suppressMessages() around three
tests for long-obsolete linker and compiler flags
* inst/include/Rcpp/Environment.h: Replace use of Rf_findVarInFrame
with R_getVarEx (or R_getVar) if R 4.5.0 or later is used
* inst/include/Rcpp/Function.h: Idem
* src/barrier.cpp: Idem
2025-12-10 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* inst/include/Rcpp/Rmath.h: Do not access Rf_rnbeta
* inst/include/Rcpp/sugar/undoRmath.h: Remove #undef
2025-12-06 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Updated
2025-12-04 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/Rcpp/r/headers.h: Include <R_ext/Visibility.h>
* inst/include/RcppCommon.h: Drop <R_ext/Callbacks.h>, not used anymore
and dropped from the API; drop <R_ext/Visibility.h>, included above
* src/api.cpp: Drop <R_ext/PrtUtil.h>, dropped from the API
2025-12-03 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
2025-12-02 Dirk Eddelbuettel <edd@debian.org>
* R/loadRcppModules.R: Remove file with function deprecated years ago
* man/loadRcppModules-deprecated.Rd: Idem
* NAMESPACE: Remove reference to loadRcppModules()
* man/loadModule.Rd: Idem
* man/Rcpp-deprecated.Rd: Idem
* vignettes/rmd/Rcpp-modules.Rmd: Idem
2025-12-01 Kevin Ushey <kevinushey@gmail.com>
* R/Attributes.R: Update OpenMP plugin for macOS
2025-11-29 Dirk Eddelbuettel <edd@debian.org>
* R/RcppLdpath.R: Revisit deprecation warnings via 'message()' to be
turned into warning or deprecation in 12 or more months 'when suitable'
2025-11-24 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/r/check_r_headers.h: Add RCPP_NO_R_HEADERS_CHECK
override to skip new check
2025-11-23 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/r/check_r_headers.h: New header to check if R.h
or related R headers were installed first
* inst/include/RcppCommon.h: Call new header as first thing
2025-11-12 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/Rcpp/macros/mask.h: Lay the ground for Rf_error masking
with a warning at compilation time unless RCPP_NO_MASK_RF_ERROR is defined
* inst/include/RcppCommon.h: Include the previous file in the last place
* src/attributes.cpp: Use parentheses to protect call to Rf_error
* inst/tinytest/cpp/stack.cpp: Idem
* inst/tinytest/testRcppInterfaceExporter/src/RcppExports.cpp: Idem
2025-11-04 Dirk Eddelbuettel <edd@debian.org>
* .github/workflows/macos.yaml (jobs): Roll macos-13 to macos-14
2025-11-01 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/Rcpp/hash/IndexHash.h: Normalize values for all comparisons
* inst/include/Rcpp/hash/SelfHash.h: Idem
* inst/tinytest/test_sugar.R: Add test for signed zeroes
2025-10-21 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/Rcpp/exceptions_impl.h: Use __has_include to simplify checks
to enable demangling, making them robust for more platforms
2025-10-13 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* inst/tinytest/test_sugar.R: Simplify and generalize the August fix
as we no longer need to control for R-devel which has been corrected
2025-09-04 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* inst/include/Rcpp/internal/wrap.h (make_charsexp__impl__cstring):
Avoid a narrowing warning by casting explicitly
2025-08-26 Dirk Eddelbuettel <edd@debian.org>
* inst/tinytest/test_sugar.R: For r-devel, use apply(x, DIM, mean,
na.rm=TRUE) instead of (row|col)Means for complex NA valued matrices
2025-08-24 Dirk Eddelbuettel <edd@debian.org>
* .github/workflows/ci.yaml (jobs): Re-enable coverage, roll checkout
action to v5
* inst/tinytest/test_sugar.R: For now, park two tests of complex
matrix row and col means under R-devel, this could be a R-devel issue
2025-07-20 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* R/compilerCheck.R: Remove unused function
* man/compilerCheck.Rd: Remove its documentation
2025-07-19 Dirk Eddelbuettel <edd@debian.org>
* vignettes/rmd/Rcpp.bib: Use DOI for R citation
* inst/bib/Rcpp.bib: Idem
2025-07-18 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* R/asis.R (asisWeave, asisTangle): Borrowed with thanks from R.rsp
and shortened / simplified to provide 'asis' vignette processor
* R/zzz.R (.onLoad): Register new vignette processor
* vignettes/*.asis: New files with vignette info from .Rnw files
* vignettes/pdf/*.pdf: Moved to directory vignettes/
* vignettes/*.Rnw: Removed
* man/asisWeave.Rd: Documentation
2025-07-01 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Release 1.1.0
* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Idem
* vignettes/rmd/Rcpp.bib: Idem
* inst/bib/Rcpp.bib: Idem
* vignettes/pdf/*: Rebuilt
2025-06-25 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
2025-06-18 Dirk Eddelbuettel <edd@debian.org>
* vignettes/rmd/Rcpp.bib: Use doi references for CRAN packages,
update versions, update some package titles
* inst/bib/Rcpp.bib: Idem
* vignettes/pdf/*: Re-rendered
2025-06-05 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
2025-06-02 Kevin Ushey <kevinushey@gmail.com>
* inst/include/Rcpp.h: Avoid copy when creating Language objects
* inst/include/Rcpp/Language.h: Idem
* inst/include/Rcpp/lgrow.h: Idem
* inst/tinytest/cpp/language.cpp: Idem
* inst/tinytest/test_language.R: Idem
2025-05-27 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
2025-05-23 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/date_datetime/newDateVector.h: Add default
constructor
* inst/include/Rcpp/date_datetime/newDatetimeVector.h: Idem
* inst/tinytest/test_date.R: Add tests
* inst/tinytest/cpp/dates.cpp: Idem
2025-05-06 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* R/Attributes.R: Support C++26 via plugin
2025-05-05 Dirk Eddelbuettel <edd@debian.org>
* inst/tinytest/test_sugar.R: Condition four NA-related tests away on
arm64 on Linux too
* .github/workflows/linuxarm.yaml (jobs): Add ubuntu-24.04-arm as
optional workflow_dispatch run
2025-04-15 Dirk Eddelbuettel <edd@debian.org>
* docker/ci-4.4/Dockerfile: Added based on r-base:4.4.3
* .github/workflows/ci.yaml (jobs): Add rcpp/ci-4.4 to matrix
2025-03-31 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
2025-03-29 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/Rcpp/traits/result_of.h: Reimplement traits::result_of using
std::result_of (up to C++14) or std::invoke_result (C++17 or later), which
supports previous use cases and enables lambdas
* inst/include/Rcpp/sugar/functions/sapply.h: Use new result_of interface
* inst/include/Rcpp/sugar/functions/lapply.h: Idem
* inst/include/Rcpp/sugar/functions/mapply/mapply_2.h: Idem
* inst/include/Rcpp/sugar/functions/mapply/mapply_3.h: Idem
* inst/include/Rcpp/sugar/matrix/outer.h: Idem
* inst/tinytest/cpp/sugar.cpp: New tests for previous sugar functions
* inst/tinytest/test_sugar.R: Idem
2025-03-26 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
2025-03-26 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/Rcpp/platform/compiler.h: Remove definitions of
RCPP_USING_UNORDERED_MAP and RCPP_USING_UNORDERED_SET
* inst/include/Rcpp/sugar/sets.h: Remove redefinition of macros
* inst/include/Rcpp/sugar/functions/self_match.h: Replace macros with
std::unordered_map and std::unordered_set respectively
* inst/include/Rcpp/sugar/functions/setdiff.h: Idem
* inst/include/Rcpp/sugar/functions/table.h: Idem
* inst/tinytest/cpp/wrap.cpp: Idem
2025-03-24 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
2025-03-24 Iñaki Ucar <iucar@fedoraproject.org>
* inst/include/Rcpp/exceptions.h: Include C+11 variadic template definitions
unconditionally
* inst/include/Rcpp/exceptions/cpp11/exceptions.h: Removed
* inst/include/Rcpp/exceptions/cpp98/exceptions.h: Idem
* src/attributes.cpp: Remove obsolete pre-C+11 paths based on __cplusplus
define checks
* inst/tinytest/cpp/sugar.cpp: Idem
* inst/include/Rcpp/Language.h: Idem
* inst/include/Rcpp/StringTransformer.h: Idem
* inst/include/Rcpp/algorithm.h: Idem
* inst/include/Rcpp/utils/tinyformat.h: Idem
* inst/include/Rcpp/longlong.h: Idem, unconditional RCPP_HAS_LONG_LONG_TYPES
* src/api.cpp: Remove explicit RCPP_HAS_LONG_LONG_TYPES as availability is
both implicit and ensured
* inst/include/Rcpp/algorithm.h: Idem
* inst/include/Rcpp/traits/is_arithmetic.h: Idem
* inst/include/Rcpp/traits/longlong.h: Idem
2025-03-21 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* inst/include/Rcpp/String.h: Remove explicit RCPP_USING_CXX11 as
use of C++11 (or newer) is both implicit and ensured
* inst/include/Rcpp/macros/dispatch.h: Idem
* inst/include/Rcpp/platform/compiler.h: Idem
* inst/include/Rcpp/unwindProtect.h: Idem
* inst/tinytest/cpp/wrap.cpp: Idem
* src/api.cpp: Idem
2025-03-18 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* inst/include/Rcpp/module/class.h: Use variadic templates unconditionally
* inst/include/Rcpp/grow.h: Idem
* inst/include/Rcpp/DottedPair.h: Idem
* inst/include/Rcpp/Vector.h: Idem
* inst/include/Rcpp/Function.h: Idem
* inst/include/Rcpp/internal/call.h: Idem
* inst/include/Rcpp/InternalFunctionWithStdFunction.h: Idem
* inst/include/Rcpp/Module.h: Idem
* inst/include/Rcpp/traits/index_sequence.h: Idem
* inst/include/Rcpp/traits/named_object.h: Idem
* inst/include/Rcpp/Language.h: Idem
* inst/include/Rcpp/DataFrame.h: Idem
* inst/include/Rcpp/PairList.h: Idem
* inst/include/Rcpp/InternalFunction.h: Idem
* inst/include/Rcpp/module/Module_generated_class_constructor.h: Removed
* inst/include/Rcpp/module/Module_generated_class_factory.h: Idem
* inst/include/Rcpp/module/Module_generated_method.h: Idem
* inst/include/Rcpp/module/Module_generated_Pointer_method.h: Idem
* inst/include/Rcpp/generated/grow__pairlist.h: Idem
* inst/include/Rcpp/generated/DottedPair__ctors.h: Idem
* inst/include/Rcpp/generated/Vector__create.h: Idem
* inst/include/Rcpp/generated/Function__operator.h: Idem
* inst/include/Rcpp/generated/InternalFunctionWithStdFunction_call.h: Idem
* inst/include/Rcpp/module/Module_generated_Constructor.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_Factory.h: Idem
* inst/include/Rcpp/module/Module_generated_Pointer_CppMethod.h: Idem
* inst/include/Rcpp/module/Module_generated_class_signature.h: Idem
* inst/include/Rcpp/module/Module_generated_ctor_signature.h: Idem
* inst/include/Rcpp/module/Module_generated_function.h: Idem
* inst/include/Rcpp/module/Module_generated_get_signature.h: Idem
* inst/include/Rcpp/generated/Language__ctors.h: Idem
* inst/include/Rcpp/generated/DataFrame_generated.h: Idem
* inst/include/Rcpp/generated/Pairlist__ctors.h: Idem
* inst/include/Rcpp/generated/InternalFunction__ctors.h: Idem
* inst/include/Rcpp/platform/compiler.h: No longer define HAS_VARIADIC_TEMPLATES
* src/api.cpp (rcpp_can_use_cxx0x): Return true unconditionally
2025-03-15 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* inst/include/Rcpp/platform/compiler.h: Simplified and shortened
establishing C++11 as baseline; further PRs to complete this
* inst/include/Rcpp/String.h: Unconditionally use std::hash with C++11
* inst/include/Rcpp/wrap.h: Unconditionally use static_assert
* inst/include/Rcpp/sugar/functions/sapply.h: Use std::result_of
(with C++11 or C++14) or std::invoke_result (C++17 or later)
* inst/include/Rcpp/sugar/functions/table.h: Use std::map
* inst/include/Rcpp/sugar/sets.h: Use std::unordered_{set,map}
* man/evalCpp.Rd: Update example
* src/api.cpp: Simplify rcpp_capabilities assignment
2025-03-13 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* inst/include/Rcpp/Environment.h: Switch from R_lsInternal to
R_lsInternal3 as the former is now outlawed
2025-03-10 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
2025-03-08 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/Function.h: Use R_ClosureEnv instead of
deprecated CLOENV if under R >= 4.5.0
2025-03-07 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
* src/barrier.cpp (dataptr): Replace remaining DATAPTR with
DATAPTR_RO for suitable R greater than 3.5.0
2025-02-11 Dirk Eddelbuettel <edd@debian.org>
* R/Rcpp.package.skeleton.R (Rcpp.package.skeleton): Support optional
argument 'github_user' to populate URL and BugReports if given
* man/Rcpp.package.skeleton.Rd: Document new optional argument
* R/Rcpp.package.skeleton.R (Rcpp.package.skeleton): Default version
is now '0.0.1' and not '1.0'
* inst/tinytest/test_rcpp_package_skeleton.R: Adjust test accordingly
* inst/tinytest/test_expose_class.R: Idem
2025-02-05 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
2025-01-31 Lev Kandel <lmakhlis@google.com>
* inst/include/Rcpp/internal/wrap.h: Add support for std::string_view
* inst/include/Rcpp/traits/r_type_traits.h: Idem
* inst/include/Rcpp/traits/wrap_type_traits.h: Idem
* inst/include/RcppCommon.h: Include <string_view>
* inst/tinytest/cpp/wrap.cpp: Add unit test for wrap(std::string_view)
* inst/tinytest/test_wrap.R: Idem
2025-01-26 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem
2025-01-25 Dirk Eddelbuettel <edd@debian.org>
* vignettes/rmd/Rcpp-libraries.Rdm: Add mention of PACKAGE_types.h
* vignettes/rmd/Rcpp.bib: Add AsioHeaders
* inst/bib/Rcpp.bib: Idem
2025-01-18 Ben Bolker <bolker@mcmaster.ca>
* inst/NEWS.Rd: fix trivial typos in NEWS file
2025-01-11 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Date, Version): Release 1.0.14
* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Idem
* vignettes/rmd/Rcpp.bib: Idem
* inst/bib/Rcpp.bib: Idem
* vignettes/pdf/*: Rebuilt
2025-01-01 Dirk Eddelbuettel <edd@debian.org>
* inst/include/Rcpp/Benchmark/Timer.h (R_NO_REMAP): Protect include
with preceding #ifndef now that R 4.5.0 will set this too
2024-11-25 Dirk Eddelbuettel <edd@debian.org>
* DESCRIPTION (Version, Date): Roll micro version to 1.0.13.6
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
* inst/tinytest/test_date.R: Minor adjustment to datetime format test
following R Dev Day change for R bug 17350 (and issue #1347 here)
2024-11-25 Simon Guest <simon.guest@tesujimath.org>
* src/attributes.cpp: fix CPP source having to be writable
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