forked from eddelbuettel/rquantlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2352 lines (1504 loc) · 71.3 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-07-31 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.24
* configure.ac: Idem
* configure: Idem
2024-07-30 Dirk Eddelbuettel <[email protected]>
* src/vanilla.cpp: Refinement
* DESCRIPTION (Authors@R): Added
2024-07-29 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro release and date
* configure.ac: Use PKG_LIBS and PKG_CXXFLAGS as internal variables,
no longer need to (conditionally) set -fpermissive
2024-07-24 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro release and date
* src/vanilla.cpp: Accommodate builds on QuantLib versions as old as
1.25 by retaining the previous dividend treatment under #ifdef
* configure.ac: Update optional version checking to current versions
2024-07-23 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.23
* configure.ac: Idem
* configure: Idem
* src/bonds.cpp: Minor refactoring and C++ update
* src/utils.cpp: Idem
2024-07-22 Dirk Eddelbuettel <[email protected]>
* src/bermudan.cpp: Finalised refactoring and C++ update
2024-07-21 Dirk Eddelbuettel <[email protected]>
* src/hullwhite.cpp: Minor refactoring and C++ update
* src/bermudan.cpp: Idem
2024-07-14 Dirk Eddelbuettel <[email protected]>
* src/utils.cpp (getFutureDate): New helper function
* inst/include/rquantlib_internal.h: Declaration
* src/asian.cpp: Use new helper function
* src/barrier_binary.cpp: Idem
* src/implieds.cpp Idem
* src/vanilla.cpp: Idem
* inst/include/rquantlib_internal.h: Move qlext namespace defintion
* src/affine.cpp: Minor refactoring and C++ update
2024-07-13 Dirk Eddelbuettel <[email protected]>
* src/asian.cpp: Minor refactoring and C++ update
* src/barrier_binary.cpp: Idem
* src/discount.cpp: Idem
* src/hullwhite.cpp: Idem
* src/implieds.cpp Idem
* src/vanilla.cpp: Idem
* src/zero.cpp: Idem
2024-07-12 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro release and date
* src/vanilla.cpp (europeanOptionEngine): Update dividend case to
(initially deprecated, now removed) changes in upstream QuantLib
* src/utils.cpp: Update to Euribor* deprecation, conditional on
using QuantLb 1.35 or later
* README.md: Update three URLs
2024-05-25 Dirk Eddelbuettel <[email protected]>
* README.md: Use tinyverse.netlify.app for dependency badge
2024-04-25 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.22
* configure.ac: Idem
* configure: Idem
2024-04-20 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro release and date
* src/bonds.cpp: Use QuantLib::Bond::Price in yield calculation
* src/zero.cpp: Use QuantLib::Bond::Price in yield calculation
* R/zzz.R (.onAttach):e Protect version comparison from possible '-rc'
in release candidate builds
* inst/tinytest/test_schedule.R: Idem
2024-03-20 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro release and date
* src/Makevars.in (PKG_CXXFLAGS): No longer need -DBOOST_NO_AUTO_PTR
2024-03-09 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro release and date
* R/asian.R: Remove three redundant duplicate methods available via
class 'option' inherited from
2024-02-01 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.21
* configure.ac: Idem
* configure: Idem
* .github/workflows/ci.yaml (jobs): Update to checkout@v4, switch to
using r-ci-setup action
2024-01-25 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro release and date
* .github/workflows/windows.yaml: Dialed down to r-release only
2024-01-25 Jeroen Ooms <[email protected]>
* tools/winlibs.R: Generalized to also support arm64 on Windows
* src/Makevars.win: Idem
* src/utils.cpp: Accomate cmake-generated version string
* .github/workflows/windows.yaml: Added
2024-01-06 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro release and date
2024-11-06 Jeroen Ooms <[email protected]>
* configure.ac: Use universal build macOS build of QuantLib 1.31.1
* configure: Idem
2023-11-26 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.20
* configure.ac: Idem
* configure: Idem
* man/AffineSwaption.Rd: Add missing `\code` before stray `{}`
* man/BermudanSwaption.Rd: Ditto
* man/SabrSwaption.Rd: Ditto
* src/affine.cpp (calibrateModel2): Adjust printf format string
* src/bermudan.cpp (calibrateModel): Ditto
* man/CallableBond.Rd: Wrap example in 'if (interactive())' to not
run afould example computation time
* src/Makevars.in (#CXX_STD): No longer explicitly set C++14 which is
the default since R 4.2.0; if needed uncomment the line
* src/RcppExports.cpp: Regenrated under Rcpp 1.0.11.5 to avoid a
warning from -Wformat-security
2023-09-20 Dirk Eddelbuettel <[email protected]>
* .github/workflows/docker.yaml (jobs): Update to actions/checkout@v4
2023-08-07 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.19
* configure.ac: Idem
* configure: Idem
* man/AffineSwaption.Rd: Add \dontrun{} to example
* man/BermudanSwaption.Rd: Idem
* man/Bond.Rd: Idem
* man/DiscountCurve.Rd: Idem
* man/EuropeanOptionArrays.Rd: Idem
* src/Makevars.win: Remove useful-but-verboten compiler option to
silence overly verbose output due to Boost headers
2023-08-05 Dirk Eddelbuettel <[email protected]>
* configure.ac: Update configure checks
* configure: Idem
2023-07-25 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro release and date
* inst/tinytest/test_schedule.R: Adjust three tests for QuantLib 1.31
* README.md: Mention qlcal, remove note about RcppQuantuccia
2023-06-28 Dirk Eddelbuettel <[email protected]>
* README.md: Add r-universe badge
2023-06-27 Dirk Eddelbuettel <[email protected]>
* .github/workflows/docker.yaml: Update actions to current version
2023-05-01 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.18
* src/utils.cpp: Use Rcpp::stop instead of throw
2023-04-29 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro release and date
2023-04-28 Jeroen Ooms <[email protected]>
* src/Makevars.win: Refactor and simplify for current use
* tools/winlibs.R: Update to QuantLib 1.29 download
2023-04-27 Jeroen Ooms <[email protected]>
* configure.ac: Update build to fetch arm|x86_64 macOS artifacts
* configure: Idem
* .github/workflows/ci.yam: Re-enable macOS tests
* inst/tinytest/test_dates.R: Skip one test file on macOS
2023-04-20 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro release and date
* src/sabr.cpp (swptnVolCube): Make SabrSwaptionVolatilityCube change
conditional on QuantLib 1.30 or later, else use SwaptionVolCube1
* R/RcppExports.R: Updated setLoadAction from updated Rcpp
2023-04-19 Dirk Eddelbuettel <[email protected]>
* src/sabr.cpp (swptnVolCube): Update from SwaptionVolCube1 to
SabrSwaptionVolatilityCube
* src/vanilla.cpp (americanOptionEngine): Tweaked deprecation
warnings (as in QL's own test file) to continue with dividend option
2023-01-13 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor release
2023-01-06 Dirk Eddelbuettel <[email protected]>
* R/arrays.R (plotOptionSurface): Provide default argument in case
none is given by user
2023-01-06 Duncan Murdoch <[email protected]>
* R/arrays.R: Switch rgl::rgl.* to rgl::*3d functions
* demo/OptionSurfaces.R: Idem
2022-10-25 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.17
* configure.ac: Idem
* configure: Idem
* src/Makevars.in (CXX_STD): Switch to C++14
* src/Makevars.win (CXX_STD): Idem
* .github/workflows/ci.yaml (jobs): Update to actions/checkout@v3
2022-05-05 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.16
* configure.ac: Idem
* configure: Idem
2022-05-04 Dirk Eddelbuettel <[email protected]>
* R/affine.R: Use inherits instead of class
* R/bermudan.R: Idem
* R/sabr.R: Idem
2022-05-03 Dirk Eddelbuettel <[email protected]>
* docker/ci/Dockerfile: Small update
* docker/run/Dockerfile: Idem
2022-05-02 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor release
* man/SabrSwaption.Rd: Move evaluation date of example by a day
* .github/workflows/docker.yaml: Only run on (coarse) schedule
2022-03-15 Kai Lin <[email protected]>
* src/utils.cpp (getDayCounter): change deprecated Actual365NoLeap()
to Actual365Fixed(Actual365Fixed::NoLeap)
* man/Enum.Rd: associated documentation change
* man/BondUtilities.Rd: remove mentions of daycounter deprecation,
remove mentions of compiler directives RQUANTLIB_USE_ACTUAL365NOLEAP
and RQUANTLIB_USE_ACTUALACTUAL
2021-11-30 Kai Lin <[email protected]>
* man/Enum.Rd: Update and extend documentation for DayCounter
2022-01-19 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.15
* configure.ac: Idem
* configure: Idem
* R/zzz.R: In interactice mode, display versions of RQuantLib at
startup
2022-01-18 Dirk Eddelbuettel <[email protected]>
* src/bonds.cpp: Updated for Quantlib 1.25
2021-12-28 Dirk Eddelbuettel <[email protected]>
* README.md: Remove unused continuous integration artifact and badge
2021-12-03 Dirk Eddelbuettel <[email protected]>
* src/utils.cpp (getDayCounter): Use Rcpp::stop on error
2021-11-30 Kai Lin <[email protected]>
* src/utils.cpp (getDayCounter): Additional day counters
2021-11-29 Dirk Eddelbuettel <[email protected]>
* src/utils.cpp (getDayCounter): Correct Thirty360() use
2021-11-04 Dirk Eddelbuettel <[email protected]>
* src/calendars.cpp (getBusinessDayList): Condition businessDayList
use on QuantLib 1.18 or newer
2021-11-03 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor release
* src/calendars.cpp: Add getBusinessDayList
* R/calendars.R: Add businessDayList
* NAMESPACE: Export both
* man/Calendars.Rd: Documentation
2021-11-02 Dirk Eddelbuettel <[email protected]>
* R/calendars.R: Add calendars vector
* man/Calendars.Rd: Add documentation
2021-11-01 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor release
* src/calendars.cpp (getCalendar): Add Chile and Null
2021-10-26 Dirk Eddelbuettel <[email protected]>
* README.md: Add 'See Also' to RcppQuantuccia
2021-10-06 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.14
* configure.ac: Idem
* configure: Idem
* configure.ac: Updated via 'autoupdate' and 'autoreconf
--warnings=obsolete' to bring to autoconf 2.69 standards
2021-09-29 Dirk Eddelbuettel <[email protected]>
* src/calendars.cpp (getCalendar): Add Austria (plus Exchange),
Bespoke, Botswana, Israel (plus TASE), Romania (plus BVB), Thailand
* src/calendars.cpp (getCalendar): Protect Austria and Romania by an
#ifdef for the QuantLib version to permit CRAN builds under older QL
* .github/workflows/ci.yaml (env): Add edd/misc PPA for CI
* .github/workflows/docker.yaml (on): Restrict Docker rebuilds to
pushes to master branch
2021-09-28 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor release
* src/calendars.cpp (getCalendar): Support new UnitedStates calendars
'LiborImpact' and 'FederalReserve'
* src/calendars.cpp (getCalendar): Support new calendars 'France' (same
as 'France/Settlement') and 'France/Exchange'
2021-09-26 Dirk Eddelbuettel <[email protected]>
* .github/workflows/docker.yaml: Add action to build and push
containers with cron set to monthly schedule
2021-09-02 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.13
* configure.ac: Idem
* configure: Idem
* man/*.R: Update remaining http:// URLs to https://
* man/ConvertibleBond.Rd: Wrap \dontrun{} around example as it runs
twice as long as CRAN preference for five second examples
* man/FittedBondCurve.Rd: Idem
2021-08-26 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor release
* src/bonds.cpp (fittedBondCurveEngine): Use Actual365Fixed() instead
of deprecated ActualActual()
* src/discount.cpp (discountCurveEngine): Idem
* src/utils.cpp (rebuildCurveFromZeroRates): Idem
* src/zero.cpp (zbtyield): Idem
* src/utils.cpp (buildTermStructure): Switch to
ActualActual::Convention::ISDA in ctor following
(getDayCounter): Condition away ActualActual() and Thirty360()
* man/BondUtilities.Rd: Document that ActualActual() and Thirty360()
can be enabled locally via #define
2021-08-17 Dirk Eddelbuettel <[email protected]>
* man/Enum.Rd: Correct eleven-year old typo
2021-07-14 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor release
* README.md: Add note about usability with new QuantLib versions
2021-06-01 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (URL): Add repo to URL field
2021-01-18 Dirk Eddelbuettel <[email protected]>
* .github/workflows/ci.yaml: Add CI runner using r-ci
* README.md: Add new badge
2020-06-16 Dirk Eddelbuettel <[email protected]>
* .travis.yml: Switch to bionic, change to derive package and version
2020-04-02 Dirk Eddelbuettel <[email protected]>
* README.md: Correct one badge URL
2020-04-01 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.12
* configure.ac: Extract version from DESCRIPTION
* configure: Rebuilt
* README.md: Add 'last commit' badge, edited binaries section
2020-03-23 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor release
* src/affine.cpp: Switch from depecreated BlackCalibrationHelper
to CalibrationHelper()
* src/bermudan.cpp: Idem
* src/hullwhite.cpp: Idem
* src/calendars.cpp: Switch from deprecated static method to standard
method for getHolidayList()
* src/curves.cpp: No longer use deprecated tolerance argument
2020-03-20 Dirk Eddelbuettel <[email protected]>
* README.md: Add Debian badge
2020-01-15 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.11
* configure.ac: Mark as 0.4.11
* configure: Rebuilt
2020-01-14 Dirk Eddelbuettel <[email protected]>
* src/utils.cpp (getCallabilitySchedule): Generalize support for
Bond::Price to fall back to Callability::Price for QL < 1.17
2020-01-13 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor release
* src/utils.cpp (makeOption): Update from now-deprecated
FDEuropeanEngine to FdBlackScholesVanillaEngine
(getCallabilitySchedule): Update from now-deprecated
Callability::Price to Bond::Price
* src/vanilla.cpp (americanOptionEngine): Update from
now-deprecated FDDividendAmericanEngine and FDAmericanEngine to
FdBlackScholesVanillaEngine
2019-11-17 Dirk Eddelbuettel <[email protected]>
* inst/tinytest/*: Converted from RUnit to tinytest
* inst/unitTests/*: Idem
* tests/tinytest.R: Idem
* tests/doRUnit.R: Idem
* docker/ci/Dockerfile: Add tinytest, remove RUnit
2019-08-24 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor release
* src/calendars.cpp (getCalendar): Allow for Null calendar
2019-08-07 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.10
* configure.ac: Mark as 0.4.10
* configure: Rebuilt
2019-08-06 Dirk Eddelbuettel <[email protected]>
* docker/ci/Dockerfile: Add -t unstable to get QuantLib 1.16
2019-08-06 Jeroen Ooms <[email protected]>
* src/Makevars.win: Updated for QuantLib 1.16 (for current and next
Window toolchain)
* tools/winlibs.R: Idem
2019-05-15 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.9
* configure.ac: Mark as 0.4.9
* configure: Rebuilt
2019-05-14 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Date, Version): New minor version
* src/asian.cpp: Use QuantLib::ext namespace for shared_ptr
* src/bermudan.cpp: Idem
* src/calendars.cpp: Idem
* inst/include/rquantlib_internal.h: Idem
2019-03-17 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.8
* configure.ac: Mark as 0.4.8
* configure: Rebuilt
2019-03-16 Dirk Eddelbuettel <[email protected]>
* src/calendars.cpp: Use QuantLib::ext for shared_ptr
* src/curves.cpp: Idem
* src/discount.cpp: Idem
* src/hullwhite.cpp: Idem
* src/implieds.cpp: Idem
* src/sabr.cpp: Idem
* src/schedule.cpp: Idem
* src/utils.cpp: Idem
* src/vanilla.cpp: Idem
* src/zero.cpp: Idem
* src/*: Removed Emacs formatting header line
* inst/include/*: Idem
* .editorconfig: Added to provide consistent settings
* .Rbuildignore: Exclude .editorconfig
2019-03-15 Dirk Eddelbuettel <[email protected]>
* inst/include/rquantlib_internal.h: Include ql/shared_ptr.hpp>
* src/affine.cpp: Use QuantLib::ext namespace for shared_ptr
* src/asian.cpp: Idem
* src/barrier_binary.cpp: Idem
* src/bermudan.cpp: Idem
* src/bonds.cpp: Idem
2019-03-14 Dirk Eddelbuettel <[email protected]>
* configure.ac: Correct use of AC_DEFUN (leaves configure unaffected)
2019-01-12 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New minor version
* R/arrays.R (plotOptionSurface): Call to utils::globalVariables()
now outside function where it triggered locked namespace error
2018-12-24 Dirk Eddelbuettel <[email protected]>
* README.md: Updates to README.me
2018-12-10 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.7
* configure.ac: Mark as 0.4.7
* configure: Rebuilt
2018-12-09 Dirk Eddelbuettel <[email protected]>
* man/AffineSwaption.Rd: Re-comment-out example for i386
2018-12-08 Dirk Eddelbuettel <[email protected]>
* man/*.Rd: Remove remaining SVN commit tag identifiers
2018-12-07 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
* src/Makevars.win: Reflect updated directory layout in updated
Windows library
* man/AffineSwaption.Rd: Restore example now that Windows works
* man/BermudanSwaption.Rd: Idem
* man/DiscountCurve.Rd: Idem
* tools/build_RQuantLib.sh: Added build script by Josh (with a big
thank you for setting it up and running a series of builds)
2018-12-03 Dirk Eddelbuettel <[email protected]>
* man/Bond.Rd: Restore example with correctly-built Windows library
* man/FixedRateBond.Rd: Idem
* man/FloaringRateBond.Rd: Idem
* man/SabrSwaption.Rd: Idem
* man/ZeroCouponBond.Rd: Idem
* tests/RQuantLib.R: Restore tests for Windows
* tests/doRUnit.R: Idem
2018-11-28 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
* man/CallableBond.Rd: Set evaluation date
* src/Makevars.in (PKG_CXXFLAGS): Add -DBOOST_NO_AUTO_PTR
* src/Makevars.win (PKG_CXXFLAGS): Idem
* inst/NEWS.Rd: A few post-release edits
2018-11-25 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.6
2018-11-22 Dirk Eddelbuettel <[email protected]>
* configure.ac: Test for QuantLib 1.14
* configure: Idem
* tools/winlibs.R: Updated for QL 1.14 build by Josh
* man/Bond.Rd: Do not run examples to avoid Windows issue
* man/FixedRateBond.Rd: Idem
* man/FloaringRateBond.Rd: Idem
* man/SabrSwaption.Rd: Idem
* man/ZeroCouponBond.Rd: Idem
* tests/RQuantLib.R: Test for Windows, only run a portion of tests
* tests/doRUnit.R: Test for Windows
* src/Makevars.win: Set -Wno-deprecated-declarations options to
make the build less noisy
2018-11-20 Dirk Eddelbuettel <[email protected]>
* man/Bond.Rd: Example now uses dayCounter not accrualDayCounter
* man/FixedRateBond.Rd: Idem
* tests/RQuantLib.R: Idem
* tests/RQuantLib.Rout.save: Idem
2018-11-11 Dirk Eddelbuettel <[email protected]>
* src/Makevars.in (PKG_CXXFLAGS): No longer need the opt-in for
-DRCPP_NEW_DATE_DATETIME_VECTORS which is now on by default
2018-10-28 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
* src/asian.cpp: Patch fron Debian #911957 to support Boost 1.67
* src/barrier_binary.cpp: Idem
* src/implieds.cpp: Idem
* src/vanilla.cpp: Idem
* src/affine.cpp: Use BlackCalibrationHelper not CalibrationHelper
* src/bermudan.cpp: Idem
* src/hullwhite.cpp: Idem
* docker/ci/Dockerfile: Moved from ../Dockerfile
* docker/run/Dockerfile: Added, providing run-time
* .travis.yml: Use rquantlib/ci for Travis CI
2018-08-26 Dirk Eddelbuettel <[email protected]>
* .travis.yml: Remove unneeded compiler and language tags
2018-08-22 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
* src/calendars.cpp (addHolidays, removeHolidays): New functions
* man/Calendars.Rd: Added documentation
2018-08-16 Dirk Eddelbuettel <[email protected]>
* .travis.yml: Prettification for Travis file
2018-08-14 Dirk Eddelbuettel <[email protected]>
* docker/Dockerfile: Add Dockerfile to create test container
* .travis.yml: Adapted to use Docker container
2018-08-13 Dirk Eddelbuettel <[email protected]>
* .travis.yml: Try 20 minute timeout parameter
2018-08-11 Dirk Eddelbuettel <[email protected]>
* README.md: Updated to mention renewed Windows support
2018-08-10 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.5
* configure.ac: Mark as 0.4.5
* configure: Rebuilt
* src/Makevars.in: Set CXX_STD=CXX11
* src/Makevars.win: Idem
2018-04-29 Dirk Eddelbuettel <[email protected]>
* man/AffineSwaption.Rd: Do not run example as win32 is fragile
* man/BermudanSwaption.Rd: Idem
* man/DiscountCurve.Rd: Idem
* .Rbuildignore: Also ignore .tar.gz
* inst/include/RQuantLib_RcppExports.h: Updated via
current Rcpp::compileAttributes() version
* src/RcppExports.cpp: Idem
2018-04-27 Jeroen Ooms <[email protected]>
* src/Makevars.win: Rewritten using rwinlib repo for Quantlib library
* tools/winlibs.R: New helper script to gather libraries from repo
* DESCRIPTION: Remove 'OS_type: unix'
2018-01-07 Dirk Eddelbuettel <[email protected]>
* src/affine.cpp (affineWithRebuiltCurveEngine): Remove
declaration and assignment of one unused variable
* src/bermudan.cpp (bermudanFromYieldEngine): Idem
* src/sabr.cpp (sabrengine): Idem (twice); also rename one
variable ('todaysDate') to its parameter name ('tradeDate')
2018-01-01 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New minor version
* src/affine.cpp: Use #include <rquantlib_internal.h>
* src/asian.cpp: Idem
* src/barrier_binary.cpp: Idem
* src/bermudan.cpp: Idem
* src/bonds.cpp: Idem
* src/calendars.cpp: Idem
* src/curves.cpp: Idem
* src/dates.cpp: Idem
* src/daycounter.cpp: Idem
* src/discount.cpp: Idem
* src/hullwhite.cpp: Idem
* src/implieds.cpp: Idem
* src/modules.cpp: Idem
* src/sabr.cpp: Idem
* src/schedule.cpp: Idem
* src/utils.cpp: Idem
* src/vanilla.cpp: Idem
* src/zero.cpp: Idem
* src/deprecated/rquantlib.h: Moved from src/
2017-11-07 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.4
* configure.ac: Mark as 0.4.4
* configure: Rebuilt
* README.md: Minor edits
* src/utils.cpp: Corrected deprecation of Actual365NoLeap()
2017-10-15 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
* src/utils.cpp (getDayCounter): Deprecate Actual365NoLeap() as
needed for use with QuantLib 1.11
* man/Enum.Rd: Mark as deprecated Actual365NoLeap()
* man/BondUtilities.Rd: Note that Actual365NoLeap() deprecated
2017-08-03 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version and date
* NAMESPACE: Set .registration=TRUE
* R/RcppExports.R: Updated again with .registration=TRUE
2017-08-02 Dirk Eddelbuettel <[email protected]>
* src/affine.cpp (affineWithRebuiltCurveEngine): Correction to BKTree
* src/RcppExports.cpp: Updated with current Rcpp Attributes
* inst/include/RQuantLib_RcppExports.h: Ditto
* R/RcppExports.R: Ditto
2017-04-16 Dirk Eddelbuettel <[email protected]>
* .travis.yml (before_install): Use https to download
2016-11-24 Dirk Eddelbuettel <[email protected]>
* inst/include/rquantlib_impl.h (Rcpp): Adjust to new date(time)Vector
classes in Rcpp 0.12.8
* inst/unitTests/cpp/dates.cpp: Add one explicit copy where we used
to have implicit copy
* src/Makevars.in (PKG_CXXFLAGS): Set define for new date(time)vector
classes to work with Rcpp 0.12.8; has no effect on earlier versions
2016-10-31 Dirk Eddelbuettel <[email protected]>
* src/vanilla.cpp (europeanOptionEngine, americanOptionEngine):
Correct use of divtimes in case of no high-res. times in QuantLib;
only use duration type when high-res time defined
2016-10-28 Dirk Eddelbuettel <[email protected]>
* src/vanilla.cpp (europeanOptionEngine, americanOptionEngine):
Use Nullable<> on dividend parameters, other small rewrites
* R/options.R: Corresponding changes
2016-10-24 Francois Cocquemas <[email protected]>
* src/vanilla.cpp: Adjust intra-daily part (via patch by Dirk)
2016-10-23 Dirk Eddelbuettel <[email protected]>
* man/BermudanSwaption.Rd: Add links to SabrSwaption
2016-10-22 Francois Cocquemas <[email protected]>
* R/option.R: Support discrete dividends for European and
American options
* src/vanilla.cpp: Ditto
* man/EuropeanOption.Rd: Documentation update
* man/AmericanOption.Rd: Ditto
* tests/RQuantLib.R: Added test
2016-08-21 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION(Version): Rolled minor version to 0.4.3.1
* configure.ac: Require at least QuantLib 1.8
* configire: Rebuilt
* NAMESPACE: Also import zoo from zoo
* man/FittedBondCurve.Rd: No longer need to test for (imported) zoo
2016-08-19 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): Release 0.4.3
* DESCRIPTION (OS_type): Set to 'OS_type: unix' as CRAN has not
installed an updated QuantLib library despite repeated emailed offers
offer several months. A Windows binary will be provided.
* configure.ac: Mark as 0.4.3
* configure: Rebuilt
* README.md: Add Terry to Authors, add Installation note, add link
to Contributing document
2016-08-12 Dirk Eddelbuettel <[email protected]>
* R/inline.R (.onLoad): Check for quantlib-config before using it
2016-08-04 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Roll minor version
* data/tsQuotes.RData: More explicit name and loading
* data/vcube.Rdata: Idem
* R/datasets.R: Dataset documentation
* man/tsQuotes.Rd: Idem
* man/vcube.Rdata: Idem
* .travis.yml: Switch to using run.sh for Travis CI
2016-07-20 Terry Leitch <[email protected]>
* R/sabr.R: New function for SABR swaption model
* src/sabr.cpp: C++ implementation for SABR model
* inst/shiny/SabrSwaption/*: Shiny application for SABR model
* data/rqlib.RData: Sample data
2016-05-29 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): Increased patch version and Date
* .travis.yml: Minor edits
2016-05-27 Guillaume Horel <[email protected]>
* inst/unitTests/runit.businessdayconvention.R: New tests
* inst/unitTests/runit.schedule.R: Small cleanup
2016-05-19 Guillaume Horel <[email protected]>
* src/curves.cpp: Added extra swap tenors
* man/DiscountCurve.Rd: Idem
2016-05-19 Terry Leitch <[email protected]>
* src/curve.cpp: Added swap tenors from 40-100 years to curve build
* src/discount.cpp: Increased max date from 2099 to 2150
* man/DiscountCurve.Rd: Updated doc to reflect new tenor choices
2016-05-12 Dirk Eddelbuettel <[email protected]>
* .travis.yml (script): Turn travis_wait back on
2016-05-09 Terry Leitch <[email protected]>
* NAMESPACE: Updated to refelct new methods for affine swaption
* R/affine.R: New generic swaption model based on bermudan affine
model
* src/affine.cpp: New engine for affine swaption model
* man/AffineSwaption.Rd: created
* R/bermudan.R: Swaption model modified to take more general
tenor & expiration dates and curve input
* src/bermudan.cpp: Swaptions for fit selection & yield curve fit
moved up into bermudan.R
* man/BermudanSwaption.Rd: Modified to reflect DiscountCurve
option and example updated
2016-04-02 Dirk Eddelbuettel <[email protected]>
* R/zzz.R: Correct version comparison check
2016-03-26 Dirk Eddelbuettel <[email protected]>
* Contributing.md: New files
2016-03-25 Dirk Eddelbuettel <[email protected]>
* R/discount.R: Minor edits and cleanups
* src/discount.cpp: Idem
* man/DiscountCurve.Rd: Minor correction
2016-03-28 Terry Leitch <[email protected]>
* R/bond.R: Added converters for float frequencies
* R/discount.R: nUse float frequency textual descriptions, pass float
and fixed as one new combined parameter for swap legs
* src/bermudan.cpp: Use new parameter setting
* R/bermudan.R: Support old default values
2016-03-19 Dirk Eddelbuettel <[email protected]>
* R/discount.R: Restored standard indentation style, untabified
* inst/include/rquantlib_internal.h: Idem
* src/discount.cpp: Idem