This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreleases.json
1026 lines (1026 loc) · 51.1 KB
/
releases.json
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
[
{
"name": "10.1.3",
"path": "releases/10.1.3",
"sha": "3dabbc8f085c02ff19e3eab900f14c72bd570824",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/10.1.3?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/10.1.3",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/3dabbc8f085c02ff19e3eab900f14c72bd570824",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/10.1.3?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/3dabbc8f085c02ff19e3eab900f14c72bd570824",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/10.1.3"
}
},
{
"name": "11.2.0",
"path": "releases/11.2.0",
"sha": "a771ec289845b4b6e96c773e8b1de7a158de2b50",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/11.2.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/11.2.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/a771ec289845b4b6e96c773e8b1de7a158de2b50",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/11.2.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/a771ec289845b4b6e96c773e8b1de7a158de2b50",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/11.2.0"
}
},
{
"name": "12.0.4",
"path": "releases/12.0.4",
"sha": "e6234534e875ca439d21276bada29c1fdaf85a06",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/12.0.4?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/12.0.4",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/e6234534e875ca439d21276bada29c1fdaf85a06",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/12.0.4?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/e6234534e875ca439d21276bada29c1fdaf85a06",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/12.0.4"
}
},
{
"name": "13.0.5",
"path": "releases/13.0.5",
"sha": "c356db0c1a9de6464de21e2881bacf2a6a9fd452",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/13.0.5?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/13.0.5",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/c356db0c1a9de6464de21e2881bacf2a6a9fd452",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/13.0.5?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/c356db0c1a9de6464de21e2881bacf2a6a9fd452",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/13.0.5"
}
},
{
"name": "14.9.0",
"path": "releases/14.9.0",
"sha": "887e825f120b2e75b933bbaf7d06b790d81792f0",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/14.9.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/14.9.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/887e825f120b2e75b933bbaf7d06b790d81792f0",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/14.9.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/887e825f120b2e75b933bbaf7d06b790d81792f0",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/14.9.0"
}
},
{
"name": "15.10.0",
"path": "releases/15.10.0",
"sha": "ca0c8c5bd0ec9bde9b91eda09aa23be55f04f035",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.10.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.10.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/ca0c8c5bd0ec9bde9b91eda09aa23be55f04f035",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.10.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/ca0c8c5bd0ec9bde9b91eda09aa23be55f04f035",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.10.0"
}
},
{
"name": "15.11.0",
"path": "releases/15.11.0",
"sha": "199051985529a51d4f12ed66e732f83b9e333741",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.11.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.11.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/199051985529a51d4f12ed66e732f83b9e333741",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.11.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/199051985529a51d4f12ed66e732f83b9e333741",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.11.0"
}
},
{
"name": "15.11.1",
"path": "releases/15.11.1",
"sha": "a98f922260d7e80558c82ab660307f5fc451db6f",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.11.1?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.11.1",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/a98f922260d7e80558c82ab660307f5fc451db6f",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.11.1?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/a98f922260d7e80558c82ab660307f5fc451db6f",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.11.1"
}
},
{
"name": "15.12.0",
"path": "releases/15.12.0",
"sha": "2adedc0dfde976f328dd964ea3a6d3164f05daaa",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.12.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.12.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/2adedc0dfde976f328dd964ea3a6d3164f05daaa",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.12.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/2adedc0dfde976f328dd964ea3a6d3164f05daaa",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.12.0"
}
},
{
"name": "15.13.2",
"path": "releases/15.13.2",
"sha": "49309f9ac122d567fc21bf3c8818e66135624227",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.13.2?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.13.2",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/49309f9ac122d567fc21bf3c8818e66135624227",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.13.2?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/49309f9ac122d567fc21bf3c8818e66135624227",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.13.2"
}
},
{
"name": "15.13.3",
"path": "releases/15.13.3",
"sha": "0f437ee6468a97b477990356ad8d87678306373b",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.13.3?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.13.3",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/0f437ee6468a97b477990356ad8d87678306373b",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.13.3?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/0f437ee6468a97b477990356ad8d87678306373b",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.13.3"
}
},
{
"name": "15.14.0",
"path": "releases/15.14.0",
"sha": "16b2208a654dea668920591dc6bf8fb74fd6277d",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.14.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.14.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/16b2208a654dea668920591dc6bf8fb74fd6277d",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.14.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/16b2208a654dea668920591dc6bf8fb74fd6277d",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.14.0"
}
},
{
"name": "15.14.1",
"path": "releases/15.14.1",
"sha": "e363c7a9d50ca2f4b6bd0d31a93be8590b0d5c91",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.14.1?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.14.1",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/e363c7a9d50ca2f4b6bd0d31a93be8590b0d5c91",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.14.1?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/e363c7a9d50ca2f4b6bd0d31a93be8590b0d5c91",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.14.1"
}
},
{
"name": "15.14.2",
"path": "releases/15.14.2",
"sha": "9d9e4550035db94d2d979d4d1c6fac4b7b688967",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.14.2?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.14.2",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/9d9e4550035db94d2d979d4d1c6fac4b7b688967",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.14.2?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/9d9e4550035db94d2d979d4d1c6fac4b7b688967",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.14.2"
}
},
{
"name": "15.14.3",
"path": "releases/15.14.3",
"sha": "4d078e1b89864ef0cbbc027c01eea23c9f7eec70",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.14.3?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.14.3",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/4d078e1b89864ef0cbbc027c01eea23c9f7eec70",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.14.3?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/4d078e1b89864ef0cbbc027c01eea23c9f7eec70",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.14.3"
}
},
{
"name": "15.14.4",
"path": "releases/15.14.4",
"sha": "e2b138509ff96edc3043c2502863deb2fda6b7d8",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.14.4?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.14.4",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/e2b138509ff96edc3043c2502863deb2fda6b7d8",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.14.4?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/e2b138509ff96edc3043c2502863deb2fda6b7d8",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.14.4"
}
},
{
"name": "15.15.0",
"path": "releases/15.15.0",
"sha": "9bb2c909827bb3319cea38a0962738c575d86fa9",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.15.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.15.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/9bb2c909827bb3319cea38a0962738c575d86fa9",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.15.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/9bb2c909827bb3319cea38a0962738c575d86fa9",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.15.0"
}
},
{
"name": "15.15.1",
"path": "releases/15.15.1",
"sha": "762c89ab8b8654f2dc7152a6bdf3cf91dba18637",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.15.1?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.15.1",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/762c89ab8b8654f2dc7152a6bdf3cf91dba18637",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.15.1?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/762c89ab8b8654f2dc7152a6bdf3cf91dba18637",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.15.1"
}
},
{
"name": "15.15.2",
"path": "releases/15.15.2",
"sha": "ce8548febe14b967b5442778400c79fb03a9fbd3",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.15.2?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.15.2",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/ce8548febe14b967b5442778400c79fb03a9fbd3",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.15.2?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/ce8548febe14b967b5442778400c79fb03a9fbd3",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.15.2"
}
},
{
"name": "15.15.3",
"path": "releases/15.15.3",
"sha": "2e5068f3723dae9279b89e34ac604b9bc27ecda0",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.15.3?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.15.3",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/2e5068f3723dae9279b89e34ac604b9bc27ecda0",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.15.3?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/2e5068f3723dae9279b89e34ac604b9bc27ecda0",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.15.3"
}
},
{
"name": "15.16.0",
"path": "releases/15.16.0",
"sha": "bcc83518e183234b51c5529b01069c302ee235c9",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.16.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.16.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/bcc83518e183234b51c5529b01069c302ee235c9",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.16.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/bcc83518e183234b51c5529b01069c302ee235c9",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.16.0"
}
},
{
"name": "15.16.1",
"path": "releases/15.16.1",
"sha": "ec9a93a534beff9280ffaf1c08bacdf44b4c2952",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.16.1?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.16.1",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/ec9a93a534beff9280ffaf1c08bacdf44b4c2952",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.16.1?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/ec9a93a534beff9280ffaf1c08bacdf44b4c2952",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.16.1"
}
},
{
"name": "15.17.1",
"path": "releases/15.17.1",
"sha": "bb85dbefed8dddd3bdbed2877cf09f322374386b",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.17.1?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.17.1",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/bb85dbefed8dddd3bdbed2877cf09f322374386b",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.17.1?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/bb85dbefed8dddd3bdbed2877cf09f322374386b",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.17.1"
}
},
{
"name": "15.18.0",
"path": "releases/15.18.0",
"sha": "b902306be79678aba52777a32c7765f578ce1566",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.18.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.18.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/b902306be79678aba52777a32c7765f578ce1566",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.18.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/b902306be79678aba52777a32c7765f578ce1566",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.18.0"
}
},
{
"name": "15.19.0",
"path": "releases/15.19.0",
"sha": "ce5c761f9d3cfc89101ee7c62b91efa003048489",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.19.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.19.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/ce5c761f9d3cfc89101ee7c62b91efa003048489",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.19.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/ce5c761f9d3cfc89101ee7c62b91efa003048489",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.19.0"
}
},
{
"name": "15.19.1",
"path": "releases/15.19.1",
"sha": "25ff8f65207dbce690c203dad7a7732198d12591",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.19.1?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.19.1",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/25ff8f65207dbce690c203dad7a7732198d12591",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.19.1?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/25ff8f65207dbce690c203dad7a7732198d12591",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.19.1"
}
},
{
"name": "15.5.0",
"path": "releases/15.5.0",
"sha": "625d1c0d90a20f71353c424be2d40cdc58201daa",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.5.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.5.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/625d1c0d90a20f71353c424be2d40cdc58201daa",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.5.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/625d1c0d90a20f71353c424be2d40cdc58201daa",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.5.0"
}
},
{
"name": "15.6.0",
"path": "releases/15.6.0",
"sha": "5c05ba526dacdb14ddfc134a5ce8e708158fd127",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.6.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.6.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/5c05ba526dacdb14ddfc134a5ce8e708158fd127",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.6.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/5c05ba526dacdb14ddfc134a5ce8e708158fd127",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.6.0"
}
},
{
"name": "15.7.2",
"path": "releases/15.7.2",
"sha": "48ad1378091902bc3bb8cb07f2f1c3a6e2ac09fd",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.7.2?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.7.2",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/48ad1378091902bc3bb8cb07f2f1c3a6e2ac09fd",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.7.2?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/48ad1378091902bc3bb8cb07f2f1c3a6e2ac09fd",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.7.2"
}
},
{
"name": "15.8.0",
"path": "releases/15.8.0",
"sha": "af9148c5d15e8a735083530bbab16b0809f1f154",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.8.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.8.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/af9148c5d15e8a735083530bbab16b0809f1f154",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.8.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/af9148c5d15e8a735083530bbab16b0809f1f154",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.8.0"
}
},
{
"name": "15.9.0",
"path": "releases/15.9.0",
"sha": "61b297839a56405009435b47af72d31c18717949",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.9.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.9.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/61b297839a56405009435b47af72d31c18717949",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.9.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/61b297839a56405009435b47af72d31c18717949",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.9.0"
}
},
{
"name": "15.9.1",
"path": "releases/15.9.1",
"sha": "ac5a266be4bc5d62b91a575c24167110b18d2eb2",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.9.1?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.9.1",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/ac5a266be4bc5d62b91a575c24167110b18d2eb2",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.9.1?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/ac5a266be4bc5d62b91a575c24167110b18d2eb2",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.9.1"
}
},
{
"name": "15.9.2",
"path": "releases/15.9.2",
"sha": "4e32ddf7fcbd42a58a0cc9b7a5e970e18488464c",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.9.2?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.9.2",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/4e32ddf7fcbd42a58a0cc9b7a5e970e18488464c",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.9.2?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/4e32ddf7fcbd42a58a0cc9b7a5e970e18488464c",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.9.2"
}
},
{
"name": "15.9.3",
"path": "releases/15.9.3",
"sha": "d35cfb49409b1dc08d19bbf50fc8cbe4ccfbebc1",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.9.3?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.9.3",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/d35cfb49409b1dc08d19bbf50fc8cbe4ccfbebc1",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/15.9.3?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/d35cfb49409b1dc08d19bbf50fc8cbe4ccfbebc1",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/15.9.3"
}
},
{
"name": "16.0.0",
"path": "releases/16.0.0",
"sha": "269a9e4ff16cfaadca1336a8c8912d6038b21b6a",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.0.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.0.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/269a9e4ff16cfaadca1336a8c8912d6038b21b6a",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.0.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/269a9e4ff16cfaadca1336a8c8912d6038b21b6a",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.0.0"
}
},
{
"name": "16.1.0",
"path": "releases/16.1.0",
"sha": "edc9633e1f15f8010b7cc7858e01ddb28b7761ab",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.1.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.1.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/edc9633e1f15f8010b7cc7858e01ddb28b7761ab",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.1.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/edc9633e1f15f8010b7cc7858e01ddb28b7761ab",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.1.0"
}
},
{
"name": "16.1.1",
"path": "releases/16.1.1",
"sha": "cd1f2a46c6e32679da8108c410dc210096450f6d",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.1.1?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.1.1",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/cd1f2a46c6e32679da8108c410dc210096450f6d",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.1.1?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/cd1f2a46c6e32679da8108c410dc210096450f6d",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.1.1"
}
},
{
"name": "16.1.2",
"path": "releases/16.1.2",
"sha": "a9a6c39a05e512de04321b41c5d7620912091235",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.1.2?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.1.2",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/a9a6c39a05e512de04321b41c5d7620912091235",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.1.2?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/a9a6c39a05e512de04321b41c5d7620912091235",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.1.2"
}
},
{
"name": "16.1.3",
"path": "releases/16.1.3",
"sha": "0791d0ce2ad8670acaf52f8570cdac94dd055ae2",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.1.3?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.1.3",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/0791d0ce2ad8670acaf52f8570cdac94dd055ae2",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.1.3?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/0791d0ce2ad8670acaf52f8570cdac94dd055ae2",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.1.3"
}
},
{
"name": "16.3.0",
"path": "releases/16.3.0",
"sha": "c043d4482251c87df31b050e5038a3538ea38171",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.3.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.3.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/c043d4482251c87df31b050e5038a3538ea38171",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.3.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/c043d4482251c87df31b050e5038a3538ea38171",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.3.0"
}
},
{
"name": "16.4.0",
"path": "releases/16.4.0",
"sha": "a59b76e4c7edfd248942168058fd1927b9174f34",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.4.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.4.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/a59b76e4c7edfd248942168058fd1927b9174f34",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.4.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/a59b76e4c7edfd248942168058fd1927b9174f34",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.4.0"
}
},
{
"name": "16.4.1",
"path": "releases/16.4.1",
"sha": "41c2564a0f93f7e265a32ceb73ad5ee16a527e68",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.4.1?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.4.1",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/41c2564a0f93f7e265a32ceb73ad5ee16a527e68",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.4.1?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/41c2564a0f93f7e265a32ceb73ad5ee16a527e68",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.4.1"
}
},
{
"name": "16.4.4",
"path": "releases/16.4.4",
"sha": "17ab59f6fe268270fcf8397a0ea3aaae7a773808",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.4.4?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.4.4",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/17ab59f6fe268270fcf8397a0ea3aaae7a773808",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.4.4?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/17ab59f6fe268270fcf8397a0ea3aaae7a773808",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.4.4"
}
},
{
"name": "16.4.5",
"path": "releases/16.4.5",
"sha": "c71f327c7f6465d697c0eb38cd4badd69bb1b0a9",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.4.5?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.4.5",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/c71f327c7f6465d697c0eb38cd4badd69bb1b0a9",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.4.5?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/c71f327c7f6465d697c0eb38cd4badd69bb1b0a9",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.4.5"
}
},
{
"name": "16.5.0",
"path": "releases/16.5.0",
"sha": "99edbfbb8234df6d5f8c6a626e95366b331b83cc",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.5.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.5.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/99edbfbb8234df6d5f8c6a626e95366b331b83cc",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.5.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/99edbfbb8234df6d5f8c6a626e95366b331b83cc",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.5.0"
}
},
{
"name": "16.6.1",
"path": "releases/16.6.1",
"sha": "a5ae26b4f0ab9a2af71649c288aeb45702a2158a",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.6.1?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.6.1",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/a5ae26b4f0ab9a2af71649c288aeb45702a2158a",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/16.6.1?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/a5ae26b4f0ab9a2af71649c288aeb45702a2158a",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/16.6.1"
}
},
{
"name": "17.0.0",
"path": "releases/17.0.0",
"sha": "dbe8b4ef5f472b6cc853ddf97e7d7c045e7f5e08",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/17.0.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/17.0.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/dbe8b4ef5f472b6cc853ddf97e7d7c045e7f5e08",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/17.0.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/dbe8b4ef5f472b6cc853ddf97e7d7c045e7f5e08",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/17.0.0"
}
},
{
"name": "17.0.1",
"path": "releases/17.0.1",
"sha": "6ab2739364f47c2468afabf9f3c345781b3b9edc",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/17.0.1?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/17.0.1",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/6ab2739364f47c2468afabf9f3c345781b3b9edc",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/17.0.1?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/6ab2739364f47c2468afabf9f3c345781b3b9edc",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/17.0.1"
}
},
{
"name": "18.0.0",
"path": "releases/18.0.0",
"sha": "caad1fbed00d7081f5912c1c2a3666ffa1cf0d46",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/caad1fbed00d7081f5912c1c2a3666ffa1cf0d46",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/caad1fbed00d7081f5912c1c2a3666ffa1cf0d46",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.0"
}
},
{
"name": "18.0.1",
"path": "releases/18.0.1",
"sha": "0a7bd2c3ed210316746433258ae61531ad16b38f",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.1?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.1",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/0a7bd2c3ed210316746433258ae61531ad16b38f",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.1?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/0a7bd2c3ed210316746433258ae61531ad16b38f",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.1"
}
},
{
"name": "18.0.2",
"path": "releases/18.0.2",
"sha": "c43e6e6e5be1949e9863fcfa2751980dc010348f",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.2?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.2",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/c43e6e6e5be1949e9863fcfa2751980dc010348f",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.2?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/c43e6e6e5be1949e9863fcfa2751980dc010348f",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.2"
}
},
{
"name": "18.0.3",
"path": "releases/18.0.3",
"sha": "df40733251ae865bdb317d26c1adab314f665429",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.3?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.3",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/df40733251ae865bdb317d26c1adab314f665429",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.3?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/df40733251ae865bdb317d26c1adab314f665429",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.3"
}
},
{
"name": "18.0.4",
"path": "releases/18.0.4",
"sha": "a9217e33b80386d648b04c2a62ddfe12b3ceb539",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.4?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.4",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/a9217e33b80386d648b04c2a62ddfe12b3ceb539",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.4?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/a9217e33b80386d648b04c2a62ddfe12b3ceb539",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.4"
}
},
{
"name": "18.0.5",
"path": "releases/18.0.5",
"sha": "ad03b0179576df5f20bcaa94661ebc432604e7a9",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.5?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.5",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/ad03b0179576df5f20bcaa94661ebc432604e7a9",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.5?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/ad03b0179576df5f20bcaa94661ebc432604e7a9",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.5"
}
},
{
"name": "18.0.6",
"path": "releases/18.0.6",
"sha": "b23439aeee8074e807920d1f853b841ce461cca4",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.6?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.6",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/b23439aeee8074e807920d1f853b841ce461cca4",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.6?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/b23439aeee8074e807920d1f853b841ce461cca4",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.6"
}
},
{
"name": "18.0.7",
"path": "releases/18.0.7",
"sha": "ac13bba296a1f8af679526d8ceda3071ccc58d77",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.7?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.7",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/ac13bba296a1f8af679526d8ceda3071ccc58d77",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/18.0.7?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/ac13bba296a1f8af679526d8ceda3071ccc58d77",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/18.0.7"
}
},
{
"name": "19.0.0",
"path": "releases/19.0.0",
"sha": "3774d3ce8f6324daa8074797a36a713ef581d44a",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/19.0.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/19.0.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/3774d3ce8f6324daa8074797a36a713ef581d44a",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/19.0.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/3774d3ce8f6324daa8074797a36a713ef581d44a",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/19.0.0"
}
},
{
"name": "19.0.2",
"path": "releases/19.0.2",
"sha": "005529ecce5a248984270cb1ef5d554d8c92fcc8",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/19.0.2?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/19.0.2",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/005529ecce5a248984270cb1ef5d554d8c92fcc8",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/19.0.2?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/005529ecce5a248984270cb1ef5d554d8c92fcc8",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/19.0.2"
}
},
{
"name": "20.0.2",
"path": "releases/20.0.2",
"sha": "4c5885b407888310c58d3e616fe4a1b2a601ea4d",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/20.0.2?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/20.0.2",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/4c5885b407888310c58d3e616fe4a1b2a601ea4d",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/20.0.2?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/4c5885b407888310c58d3e616fe4a1b2a601ea4d",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/20.0.2"
}
},
{
"name": "20.1.1",
"path": "releases/20.1.1",
"sha": "3d8c322723e6ef5778c72ae6a273594e959cf396",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/20.1.1?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/20.1.1",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/3d8c322723e6ef5778c72ae6a273594e959cf396",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/20.1.1?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/3d8c322723e6ef5778c72ae6a273594e959cf396",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/20.1.1"
}
},
{
"name": "20.1.2",
"path": "releases/20.1.2",
"sha": "87b3b4b2fb1ee2fcd40a5d66399763a2ad18a7f1",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/20.1.2?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/20.1.2",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/87b3b4b2fb1ee2fcd40a5d66399763a2ad18a7f1",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/20.1.2?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/87b3b4b2fb1ee2fcd40a5d66399763a2ad18a7f1",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/20.1.2"
}
},
{
"name": "21.0.0",
"path": "releases/21.0.0",
"sha": "e6d77dee31d3ceaa2143b50cadda8c399304e48b",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/21.0.0?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/21.0.0",
"git_url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/e6d77dee31d3ceaa2143b50cadda8c399304e48b",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/21.0.0?ref=master",
"git": "https://api.github.com/repos/sbtqa/sbtqa.github.io/git/trees/e6d77dee31d3ceaa2143b50cadda8c399304e48b",
"html": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/21.0.0"
}
},
{
"name": "21.0.1",
"path": "releases/21.0.1",
"sha": "765f777d62cf6dd9330962c5bac3394f621fbce0",
"size": 0,
"url": "https://api.github.com/repos/sbtqa/sbtqa.github.io/contents/releases/21.0.1?ref=master",
"html_url": "https://github.com/sbtqa/sbtqa.github.io/tree/master/releases/21.0.1",