-
Notifications
You must be signed in to change notification settings - Fork 55
/
ChangeLog
4107 lines (2498 loc) · 130 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-24 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 14.2.1-1
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 14.2.1 bug fixes
2024-11-16 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 14.2.0-1
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
2024-11-14 Dirk Eddelbuettel <[email protected]>
* inst/include/armadillo_bits/: Re-sync Armadillo 14.2.0-rc1
2024-11-07 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Depends): Increase to Rcpp (>= 1.0.12) as it supplies
the required printf format change more current R versions need
* inst/include/armadillo_bits/: Re-sync Armadillo 14.2.0-rc0
2024-11-05 Dirk Eddelbuettel <[email protected]>
* inst/include/armadillo_bits/: Re-sync Armadillo 14.2.0-rc0
2024-11-03 Dirk Eddelbuettel <[email protected]>
* inst/include/armadillo_bits/: Armadillo 14.2.0-rc0
2024-09-29 Dirk Eddelbuettel <[email protected]>
* inst/include/RcppArmadillo/interface/RcppArmadilloAs.h: Add icube
exporter specialisation under ARMA_64BIT_WORD case
2024-09-11 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 14.0.2-1 CRAN release
2024-08-06 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): Increment micro version in branch
* DESCRIPTION (Version, Date): RcppArmadillo 14.0.2
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
2024-08-04 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Authors@R): Added ORCID ID for Conrad
2024-08-01 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Authors@R): Added, with ORCID IDs for Dirk, Romain, Doug
2024-08-01 Conrad Sanderson <[email protected]>
* inst/CITATION: Reverse order of items displayed
2024-07-05 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 14.0.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/RcppArmadillo/interface/RcppArmadilloForward.h:
Re-enable ARMA_IGNORE_DEPRECATED_MARKER
2024-06-24 Dirk Eddelbuettel <[email protected]>
* inst/include/armadillo_bits/: Armadillo 14.0.0
2024-06-23 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.8.4.0.14.4 ie the
fourth test package of the 14.0.0 development branch
* inst/include/armadillo_bits/: Armadillo 14.0.0 rc1
2024-05-30 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.8.4.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 12.8.4
2024-05-29 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.8.3.1
* inst/NEWS.Rd: Idem
* configure.ac: Idem
2024-05-26 Dirk Eddelbuettel <[email protected]>
* inst/include/armadillo_bits/: Armadillo 12.8.4-rc1
2024-05-17 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Imports): Updated versioned constraint on Rcpp to
1.0.8 or later as we use Light/Lighter/Lightest
2024-05-16 Dirk Eddelbuettel <[email protected]>
* README.md: Use tinyverse.netlify.app for dependency badge
2024-05-07 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.8.3.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 12.8.3
2024-05-03 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Increment micro version, update date
* R/inline.R (inlineCxxPlugin): No longer set C++11 for the plugin as
this choice has long been obsoleted by what R does for us
2024-04-15 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.8.2.1
* inst/NEWS.Rd: Idem
2024-04-10 Tomasz Kalinowski <[email protected]>
* inst/tinytest/test_scipy2r.R: Update for reticulate v1.36;
disable test checking error from scipy.sparse.bsr_matrix()
2024-04-02 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.8.2.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 12.8.2
2024-03-05 Dirk Eddelbuettel <[email protected]>
* README.md: Correct a badge URL
2024-03-03 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.8.1.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 12.8.1
2024-02-19 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Increment version counter
2024-02-18 Dirk Eddelbuettel <[email protected]>
* src/fastLm.cpp: Switch to RcppArmadillo/Lighter
* src/RcppArmadillo.cpp: Idem
* README.md: Update count to February 2024, update example, edits
2024-02-08 Dirk Eddelbuettel <[email protected]>
* .github/workflows/ci.yaml (jobs): Switch to actions/checkout@v4 and
eddelbuettel/github-actions/r-ci-setup@master
2024-02-06 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.8.0.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 12.8.0
2024-01-18 Dirk Eddelbuettel <[email protected]>
* inst/include/RcppArmadilloAs.h: Remove non-user facing include
file, the prefered alternative in RcppArmadillo/ is available
* inst/include/RcppArmadilloConfig.h: Idem
* inst/include/RcppArmadilloForward.h: Idem
* inst/include/RcppArmadilloSugar.h: Idem
* inst/include/RcppArmadilloWrap.h: Idem
2023-12-18 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.6.7.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 12.6.7
2023-12-09 Dirk Eddelbuettel <[email protected]>
* inst/tinytest/test_misc.R: Add tests for thread throttling
2023-12-03 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.6.6.1
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
2023-12-02 Dirk Eddelbuettel <[email protected]>
* inst/include/RcppArmadillo/interface/RcppArmadilloForward.h: Update
discussion of 'ARMA_IGNORE_DEPRECATED_MARKER' which is no longer set
2023-10-31 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.6.6.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 12.6.6
2023-10-29 Dirk Eddelbuettel <[email protected]>
* src/RcppArmadillo.cpp (armadillo_get_number_of_omp_threads)
(armadillo_set_number_of_omp_threads): New helper functions
* src/RcppExports.cpp: Regenerated
* R/RcppExports.R: Idem
* man/armadillo_get_number_of_omp_threads.Rd: Documentation
* R/init.R (.onLoad): Store initial thread count
* R/init.R (armadillo_throttle_cores, armadillo_reset_cores):
Tread throtte and reset helper functions
* man/armadillo_throttle_cores.Rd: Documentation
* man/fastLm.Rd: Illustration of use of throttle and reset function
* NAMESPACE: Export new functions
2023-10-14 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.6.5.0
2023-09-06 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.6.4.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 12.6.4
2023-08-28 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.6.3.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 12.6.3
2023-08-08 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.6.2.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo: Armadillo 12.6.2
* inst/include/armadillo_bits/: Idem
2023-07-26 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.6.1.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo: Armadillo 12.6.1
* inst/include/armadillo_bits/: Idem
2023-07-23 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.6.0.1
* inst/NEWS.Rd: Idem
* inst/include/armadillo_bits/: Upstream sync w/o move ctors
2023-07-21 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.6.0.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo: Armadillo 12.6.0
* inst/include/armadillo_bits/: Idem
2023-06-16 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.4.1.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo: Armadillo 12.4.1
* inst/include/armadillo_bits/: Idem
2023-06-04 Mikael Jagan <[email protected]>
* inst/include/RcppArmadillo/interface/RcppArmadilloAs.h: Patch for
forthcoming Matrix version (see #415)
2023-05-26 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.4.0.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
2023-05-25 Dirk Eddelbuettel <[email protected]>
* inst/include/armadillo: Armadillo 12.4.0
* inst/include/armadillo_bits/: Idem
2023-04-11 Dirk Eddelbuettel <[email protected]>
* README.md: Use app.codecov.io as base for codecov link
2023-04-04 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.2.0.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo: Armadillo 12.2.0
* inst/include/armadillo_bits/: Idem
2023-02-20 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.12.0.0.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo: Armadillo 12.0.0
* inst/include/armadillo_bits/: Idem
2023-02-11 Kevin Ushey <[email protected]>
* src/Makevars.in: Use PKG_CPPFLAGS for RcppArmadillo includes
2023-02-09 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.11.4.4.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo: Armadillo 11.4.4
* inst/include/armadillo_bits/: Idem
2023-02-05 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version and date
* src/Makevars.in: No longer set a compilation standard
* src/Makevars.win: Idem
* inst/skeleton/Makevars: Idem
* inst/skeleton/Makevars.win: Idem
* inst/CITATION: Convert to bibentry() style with person()
2023-01-20 Dirk Eddelbuettel <[email protected]>
* README.md: Update package count
2023-01-15 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.11.4.3.1
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/RcppArmadillo/interface/RcppArmadilloForward.h: Still
use '#define ARMA_IGNORE_DEPRECATED_MARKER' unless override set to
suppress warnings, see issues #391 (initialization) and #402 (stderr)
2022-12-28 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.4.3.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 11.4.3
2022-11-15 Dirk Eddelbuettel <[email protected]>
* inst/include/RcppArmadillo/config/RcppArmadilloConfig.h: Protect
undefine of NDEBUG behind additional opt-in define
2022-11-08 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.4.2.1
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
2022-10-22 Dirk Eddelbuettel <[email protected]>
* .github/workflows/ci.yaml (jobs): Update to actions/checkout@v3
2022-10-21 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.4.2.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 11.4.2
2022-10-20 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): Roll minor version
* inst/include/RcppArmadillo.h: Use new paths
* inst/include/RcppArmadillo.h: Idem
* inst/include/RcppArmadillo/LightL Idem
* inst/include/RcppArmadillo/Lighter: Idem
* inst/include/RcppArmadillo/Lightest: Idem
* inst/include/RcppArmadillo/interface/RcppArmadilloAs.h: New
location, and updated accordingly
* inst/include/RcppArmadillo/interface/RcppArmadilloForward.h: Idem
* inst/include/RcppArmadillo/interface/RcppArmadilloSugar.h: Idem
* inst/include/RcppArmadillo/interface/RcppArmadilloWrap.h: Idem
* inst/include/RcppArmadilloAs.h: New stub
* inst/include/RcppArmadilloForward.h: Idem
* inst/include/RcppArmadilloSugar.h: Idem
* inst/include/RcppArmadilloWrap.h: Idem
2022-10-19 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): Roll minor version
* inst/include/RcppArmadillo/rng/Alt_R_RNG.h: New location
* inst/include/RcppArmadillo/config/RcppArmadilloConfigGenerated.h.in: Idem
* inst/include/RcppArmadillo/config/RcppArmadilloConfig.h: Idem
* inst/include/RcppArmadilloForward.h: Updated accordingly
* inst/include/RcppArmadilloConfig.h: Idem
* configure.ac: Idem
* configure: Idem
* cleanupp: Idem
* inst/tinytest/test_sparseConversion.R: Update one conversion as
suggested by the Matrix team
2022-10-14 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): Roll minor version
* inst/include/RcppArmadillo/RcppArmadillo: Header accessing
Rcpp/Rcpp, and not imposing column-as-matrix return
* inst/include/RcppArmadillo/Light: Header accessing Rcpp/Light, idem
* inst/include/RcppArmadillo/Lighter: Header accessing Rcpp/Lighter, idem
* inst/include/RcppArmadillo/Lightest: Header accessing Rcpp/Lightest, idem
* inst/include/RcppArmadillo/internal/: Regroup internal headers here
* inst/include/RcppArmadillo_bits/: Move to new internal location
* configure.ac: Support new location of generated config
* configure: Idem
* cleanup: Idem
2022-10-10 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.4.1.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
2022-10-01 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.4.0.1
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* README.md: Update some http URLs to https
* man/RcppArmadillo-package.Rd: Idem
* man/fastLm.Rd: Idem
* inst/include/armadillo_bits/: Hot-fix by Conrad to accomodate a
possibly over-eager warning from g++-12 affected a few CRAN packages
2022-09-22 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.4.0.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo: Armadillo 11.4.0
* inst/include/armadillo_bits/: Idem
2022-09-19 Dirk Eddelbuettel <[email protected]>
* inst/include/armadillo: Armadillo 11.4.rc1
* inst/include/armadillo_bits/: Idem
2022-09-09 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.2.4.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo: Armadillo 11.2.4
* inst/include/armadillo_bits/: Idem
2022-09-01 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.11.2.3.1.1
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* README.md: Edited fastLm() example for more compact display
* src/fastLm.cpp: Idem
* inst/include/RcppArmadilloForward.h: Permit opt-out of deprecation
suppresion (useful to develop under full deprecation warnings)
2022-08-31 Dirk Eddelbuettel <[email protected]>
* inst/include/armadillo_bits/compiler_setup.hpp: Use version from
merge request #119 with optional use of ARMA_IGNORE_DEPRECATED_MARKER
2022-08-18 Dirk Eddelbuettel <[email protected]>
* src/fastLm.cpp: Using dot() as proposed by Conrad in #388
* README.md: Idem
2022-08-16 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.2.3.1
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/compiler_setup.hpp: Do not define
arma_deprecated as it bites a number of CRAN packages
2022-08-15 Dirk Eddelbuettel <[email protected]>
* inst/tinytest/test_sparseConversion.R: Further refinements, tests
are now conditional on Matrix 1.4-2
* inst/tinytest/test_sparse.R: Idem
2022-08-12 Dirk Eddelbuettel <[email protected]>
* inst/tinytest/test_scipy2r.R: Update sparse matrix conversions to
accomodate deprecation in Matrix 1.4-2
* inst/tinytest/test_sparseConversion.R: Idem
* inst/tinytest/test_sparse.R: Idem
2022-07-12 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.2.3.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo: Armadillo 11.2.3
* inst/include/armadillo_bits/: Idem
2022-07-04 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.2.2.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo: Armadillo 11.2.2
* inst/include/armadillo_bits/: Idem
2022-06-28 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.2.1.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo: Armadillo 11.2.1
* inst/include/armadillo_bits/: Idem
2022-06-10 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.2.0.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo: Armadillo 11.2.0
* inst/include/armadillo_bits/: Idem
2022-06-09 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.1.99.0
* inst/include/armadillo: Armadillo 11.2-rc1
* inst/include/armadillo_bits/: Idem
2022-05-15 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.1.1.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
2022-05-14 Dirk Eddelbuettel <[email protected]>
* inst/include/armadillo_bits/: Armadillo 11.1.1
2022-05-13 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.1.0.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo: Armadillo 11.1.0
* inst/include/armadillo_bits/: Idem
2022-05-11 Dirk Eddelbuettel <[email protected]>
* configure.ac: Ensure OpenMP is propagated in the 'found' case
2022-05-10 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.11.0.99.1.0
* inst/include/armadillo: Armadillo 11.1-rc1
* inst/include/armadillo_bits/: Idem
2022-04-14 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.11.0.1.0
* inst/include/armadillo_bits/: Armadillo 11.0.1
2022-04-04 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.11.0.0.0
* inst/include/armadillo: Armadillo 11.0.0
* inst/include/armadillo_bits/: Idem
* inst/tinytest/test_scipy2r.R: Skip on Windows
2022-03-31 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.10.99.3.0
* inst/include/armadillo: Armadillo 11.0-rc3
* inst/include/armadillo_bits/: Idem
2022-03-24 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.10.99.1.0
* inst/include/armadillo: Armadillo 11.0-rc2
* inst/include/armadillo_bits/: Idem
2022-03-22 Dirk Eddelbuettel <[email protected]>
* inst/tinytest/test_Rlapack.R: If a non-suitable LAPACK installation
is seen (as currently on Ubuntu under 3.9.0) skip the file
2022-03-20 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.10.99.0
* inst/include/armadillo: Armadillo 11.0-rc1
* inst/include/armadillo_bits/: Idem
* inst/tinytest/test_Rlapack.R: Skipping while investigating
2022-02-23 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
* inst/include/RcppArmadilloWrap.h (wrap): Deprecation transition:
until May 1, only correct Fields if RCPP_ARMADILLO_FIX_Field defined
* inst/tinytest/cpp/armadillo.cpp (has_old_field_behavior): Adjust
* inst/tinytest/cpp/fields.cpp (has_old_field_behavior): Idem
* inst/tinytest/test_fields.R: Idem
* tests/tinytest.R: Simplified reflecting long-updated tinytest
2022-02-14 Dirk Eddelbuettel <[email protected]>
* inst/include/RcppArmadilloWrap.h (wrap): Unless
RCPP_ARMADILLO_OLD_Field_BEHAVIOR is defines use correction
2022-02-01 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.8.2.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 10.8.2
2022-01-23 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.8.1.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 10.8.1
2022-01-02 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.8.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 10.8
2021-12-27 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.10.7.99.1
* inst/include/armadillo: Armadillo 10.8-rc2
* inst/include/armadillo_bits/: Idem
2021-12-21 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): RcppArmadillo 0.10.7.99.0
* inst/include/armadillo: Armadillo 10.8-rc1
* inst/include/armadillo_bits/: Idem
2021-12-16 Dirk Eddelbuettel <[email protected]>
* inst/include/armadillo_bits/: Armadillo 10.7.5
2021-11-23 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.7.4.0
* inst/NEWS.Rd: Idem
* inst/include/armadillo_bits/: Armadillo 10.7.4
2021-11-18 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.7.3.1
* inst/include/RcppArmadilloConfig.h: Simplify to using just one new
#define for the two changes to Fields import/export
* inst/include/RcppArmadilloAs.h (get): Updated
* inst/include/RcppArmadilloWrap.h (wrap): Idem
* inst/tinytest/cpp/fields_new.cpp: Idem
2021-11-16 Dirk Eddelbuettel <[email protected]>
* inst/tinytest/cpp/fields.cpp: Added tests for R -> C++
* inst/tinytest/cpp/fields_new.cpp: Idem
* inst/tinytest/test_fields.R: Idem
* inst/tinytest/test_fields_new.R: Idem
2021-11-15 Dirk Eddelbuettel <[email protected]>
* inst/tinytest/cpp/fields.cpp: Additional test using 3d field
working in 'new' but not in 'old' setup
* inst/tinytest/cpp/fields_new.cpp: Idem
* inst/tinytest/test_fields.R: Idem
* inst/tinytest/test_fields_new.R: Idem
* inst/tinytest/cpp/fields.cpp: Initial tests for R -> C++
* inst/tinytest/test_fields.R: Idem
2021-11-13 Dirk Eddelbuettel <[email protected]>
* inst/tinytest/cpp/fields_new.cpp: Test for 'new' (i.e. corrected)
fields behaviour currently requiring #define (for C++ to R)
* inst/tinytest/test_fields_new.R: Idem
2021-11-12 Dirk Eddelbuettel <[email protected]>
* inst/tinytest/test_fields.R: Added 1-d field tests (for C++ to R)
* inst/tinytest/cpp/fields.cpp: Idem
2021-11-09 Dirk Eddelbuettel <[email protected]>
* inst/tinytest/test_fields.R: Added field tests (for C++ to R)
* inst/tinytest/cpp/fields.cpp: Idem
2021-11-09 Jonathan Berrisch <[email protected]>
* inst/include/RcppArmadilloAs.h: Update arma::field conversion
* inst/include/RcppArmadilloWrap.h: Idem
* inst/include/RcppArmadilloConfig.h: Define guards for changes
* inst/tinytest/test_rcpparmadillo.R: New tests
2021-11-08 Dirk Eddelbuettel <[email protected]>
* local/armafield.cpp: Add an arma::field test file
2021-11-04 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.7.3.0
* inst/NEWS.Rd: Idem
* inst/include/armadillo_bits/: Armadillo 10.7.3
2021-11-03 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.7.2.0
* inst/NEWS.Rd: Idem
2021-11-02 Dirk Eddelbuettel <[email protected]>
* inst/include/armadillo_bits/: Armadillo 10.7.2
2021-10-08 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.7.1
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 10.7.1
2021-09-29 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.7.0.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/arma_version.hpp: Armadillo 10.7.0
2021-09-29 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.6.99.3
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 10.7-RC2
2021-09-27 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.6.99.2
* DESCRIPTION (Author): Add Conrad
* README.md (Rcpp): Idem
* inst/include/RcppArmadilloAs.h: Update copyright header,
remove two editor settings lines as we long switched to editorconfig
* inst/include/RcppArmadilloConfigGenerated.h.in: Idem
* inst/include/RcppArmadilloConfig.h: Idem
* inst/include/RcppArmadilloForward.h: Idem
* inst/include/RcppArmadillo.h: Idem
* inst/include/RcppArmadilloSugar.h: Idem
* inst/include/RcppArmadilloWrap.h: Idem
2021-09-27 Condrad Sanderson <[email protected]>
* inst/include/RcppArmadilloForward.h: Adjust for Armadillo 10.7 and
subview_cols
* inst/include/RcppArmadilloWrap.h: Idem
2021-09-26 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.6.99.1
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 10.7-RC1
* README.md: Added total downloads badge
2021-08-05 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.6.2.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 10.6.2
2021-07-19 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.6.1.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 10.6.1
2021-07-16 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.6.0.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* man/RcppArmadillo-package.Rd: Use https URL
* inst/include/armadillo_bits/: Armadillo 10.6.0
2021-07-07 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.5.99.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 10.6-rc1
2021-07-01 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.5.3.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 10.5.3
2021-06-12 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.5.2.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 10.5.2
2021-06-05 Dirk Eddelbuettel <[email protected]>
* README.md: Add coverage badge
2021-06-04 Dirk Eddelbuettel <[email protected]>
* inst/tinytest/test_misc.R: Add tests for several miscellaneous
functions in src/RcppArmadillo.cpp, R/flags.R
* inst/tinytest/test_fastLm.R: Additional fastLm() tests
* R/SciPy2R.R: Set nocov tags for deprecated code
* R/RcppArmadillo.package.skeleton.R: Set nocov
* .codecov.yml (comment): Set to false
2021-05-29 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.5.1.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 10.5.1
2021-05-21 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.5.0.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 10.5.0
2021-05-15 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Release 0.10.499.1.0 [github-only]
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem
* inst/include/armadillo_bits/: Armadillo 10.5 RC1
* .codecov.yml (ignore): Exclude Armadillo itself
2021-04-23 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): RcppArmadillo 0.10.4.1.0
* inst/NEWS.Rd: Idem
* configure.ac: Idem
* configure: Idem