forked from typetools/annotation-tools
-
Notifications
You must be signed in to change notification settings - Fork 2
/
changelog.html
1633 lines (1504 loc) · 42.5 KB
/
changelog.html
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
<!DOCTYPE html>
<html>
<head>
<title>Annotation File Utilities Changelog</title>
</head>
<body>
<h1>Annotation File Utilities Changelog</h1>
<p>
This is the changelog for the
<a href="./">Annotation File Utilities</a>.
</p>
<ul>
<li>
Version 3.42.0-eisop4 (released July 12, 2024):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.42.0-eisop3 (released March 1, 2024):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.42.0-eisop2 (released January 9, 2024):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.42.0-eisop1 (released January 2, 2024):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.42.0 (released December 15, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.41.0-eisop1 (released December 5, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.41.0 (released December 4, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.40.0-eisop2 (released November 24, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.40.0-eisop1 (released November 24, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.40.0 (released November 1, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.39.0-eisop1 (released October 22, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.39.0 (released October 2, 2023):
<ul>
<li>Runs under JDK 21 -- that is, it runs on a version 21 JVM.</li>
</ul>
</li>
<li>
Version 3.38.0 (released September 1, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.37.0 (released August 1, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.36.0 (released July 3, 2020):
<ul>
<li>Minor bug fixes and improvements.</li>
<li> Fixed issues
<a href="https://github.com/typetools/annotation-tools/issues/582">#582</a>.
</ul>
</li>
<li>
Version 3.35.0 (released June 1, 2023):
<ul>
<li>Runs under JDK 20 -- that is, it runs on a version 20 JVM.</li>
</ul>
</li>
<li>
Version 3.34.0-eisop1 (released May 9, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.34.0 (released May 2, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.33.0 (released April 3, 2023):
<ul>
<li>Requires JDK 11 to build. Still runs on JDK 8 or later.
(EISOP note: the EISOP Framework continues to build and run on JDK 8.)</li>
<li>Command-line option <code>--comments</code> is no longer supported.</li>
</ul>
</li>
<li>
Version 3.32.0-eisop1 (released March 9, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.32.0 (released March 2, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.31.0 (released February 17, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.30.0 (released February 2, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.29.0 (released January 5, 2023):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.28.0-eisop1 (released December 7, 2022):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.28.0 (released December 1, 2022):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.27.0-eisop1 (released November 6, 2022):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.27.0 (released November 1, 2022):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.27.0 (released November 1, 2022):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.26.0-eisop1 (released October 13, 2022):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.26.0 (released October 3, 2022):
<ul>
<li>Runs under Java 18.
</li>
<li>Renamed all <code>annotator*</code> packages to
<code>org.checkerframework.afu.annotator*</code>, and
renamed all <code>scenelib*</code> packages to
<code>org.checkerframework.afu.scenelib*</code>.
</li>
<li>Code is now formatted with Spotless; use
<code>./gradlew spotlessCheck</code> or
<code>./gradlew spotlessCheck</code>.
</li>
</ul>
</li>
<li>
Version 3.25.0-eisop1 (released September 3, 2022):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.25.0 (released September 1, 2022):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.24.0-eisop1 (released August 5, 2022):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.24.0 (released August 3, 2022):
<ul>
<li>Performance improvements.</li>
</ul>
</li>
<li>
Version 3.23.0-eisop2 (released July 22, 2022):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.23.0-eisop1 (released July 14, 2022):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.23.0 (released July 11, 2022):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.22.2 (released June 14, 2022):
<ul>
<li>No user-visible changes.</li>
</ul>
</li>
<li>
Version 3.22.1-eisop1 (released June 3, 2022):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.22.1 (released June 1, 2022):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.22.0-eisop1 (released May 6, 2022):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.22.0 (released May 2, 2022):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.21.4-eisop1 (released April 4, 2022):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.21.4 (released April 1, 2022):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.21.3-eisop1 (released March 23, 2022):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.21.3 (released March 1, 2022):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.21.2-eisop1 (released February 2, 2022):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.21.2 (released February 1, 2022):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.21.1 (released January 7, 2022):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.21.0 (released December 17, 2021):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.20.0 (released December 6, 2021):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.19.0-eisop1 (released November 4, 2021):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.19.0 (released November 1, 2021):
<ul>
<li>Added support for JDK 17, dropped support for JDK 16.</li>
</ul>
</li>
<li>
Version 3.18.1-eisop1 (released October 7, 2021):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.18.1 (released October 4, 2021):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.18.0-eisop1 (released September 23, 2021):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.18.0 (released September 1, 2021):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.17.0 (released August 2, 2021):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.16.0 (released July 13, 2021):
<ul>
<li>Added support for JDK 16.</li>
</ul>
</li>
<li>
Version 3.15.0 (released June 18, 2021):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.14.0 (released June 1, 2021):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.13.0 (released May 3, 2021):
<ul>
<li>
Improved handling of implicit default constructors.
</li>
</ul>
</li>
<li>
Version 3.12.0 (released April 1, 2021):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.11.0 (released March 1, 2021):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.10.0 (released February 1, 2021):
<ul>
<li>Implementation detail: Uses real ASM rather than ASMX.
</li>
</ul>
</li>
<li>
Version 3.9.17 (released January 13, 2021):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.16 (released January 4, 2021):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.15 (released December 1, 2020):
<ul>
<li>
Better checking of annotation validity. This may require you to pass a classpath.
</li>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.14 (released November 2, 2020):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.13 (released October 1, 2020):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.12 (released September 1, 2020):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.11 (released August 3, 2020):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.10 (released July 1, 2020):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.9 (released June 1, 2020):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.8 (released May 3, 2020):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.7 (released April 1, 2020):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.6 (released March 2, 2020):
<ul>
<li>Minor bug fixes and improvements.</li>
<li> Fixed issues
<a href="https://github.com/typetools/annotation-tools/issues/269">#269</a>.
</ul>
</li>
<li>
Version 3.9.5 (released February 3, 2020):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.4 (released January 3, 2020):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.3 (released December 2, 2019):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.2 (released November 1, 2019):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.1 (released October 1, 2019):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.9.0 (released August 30, 2019):
<ul>
<li>Now uses the Java 9 javac API. The manual describes how to
satisfy this dependency, in a way that works on a Java 8 JVM. Running the AFU on
a Java 9+ JVM is also supported.</li>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.8.11 (released August 22, 2019):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.8.10 (released August 1, 2019):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.8.9 (released July 3, 2019):
<ul>
<li>Minor bug fixes and improvements.</li>
<li> Fixed issues
<a href="https://github.com/typetools/annotation-tools/issues/216">#216</a> and
<a href="https://github.com/typetools/annotation-tools/issues/220">#220</a>.
</ul>
</li>
<li>
Version 3.8.8 (released June 3, 2019):
<ul>
<li>Added command-line arguments <code>-cp</code>
and <code>-classpath</code> to <code>extract-annotations</code>.
<li>Added command-line argument <code>--verbose</code> to
<code>extract-annotations</code> and <code>insert-annotations</code>.
<li>Removed command-line argument <code>-v</code> from
<code>extract-annotations</code>; use <code>--version</code> instead.
<li><code>insert-annotations-to-source</code> does a better check
for existing annotations, to avoid inserting a duplicate annotation.
<li> Fixed issues
<a href="https://github.com/typetools/annotation-tools/issues/200">#200</a> and
<a href="https://github.com/typetools/annotation-tools/issues/201">#201</a>.
</ul>
<li>
Version 3.8.7 (released May 1, 2019):
<ul>
<li>Fixed issue
<a href="https://github.com/typetools/annotation-tools/issues/194">#194</a>.
</ul>
</li>
<li>
Version 3.8.6 (released April 3, 2019):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.8.5 (released March 1, 2019):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.8.4 (released February 3, 2019):
<ul>
<li>Fix bug in which imports were not added for annotations on constructor invocations.</li>
<li>Documentation clarifies that insert-annotations[-to-source] modifies its target.</li>
</ul>
</li>
<li>
Version 3.8.3 (released December 5, 2018):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.8.2 (released November 4, 2018):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.8.1 (released October 3, 2018):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.8.0 (released August 30, 2018):
<ul>
<li>Requires a Java 8 JVM to execute.</li>
<li><code>annotation-file-utilities.jar</code> is now a skinny jar.
<code>annotation-file-utilities-all.jar</code> is a fat jar.
</li>
<li>Implementation detail: ASMX now uses package <code>org.objectweb.asmx</code>,
rather than <code>org.objectweb.asm</code>.
</li>
<li>Fixed issues
<a href="https://github.com/typetools/annotation-tools/issues/168">#168</a>
and
<a href="https://github.com/typetools/annotation-tools/issues/174">#174</a>.
</li>
</ul>
<li>
Version 3.6.55 (released July 2, 2018):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.54 (released June 1, 2018):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.53 (released May 2, 2018):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.52 (released April 2, 2018):
<ul>
<li>Fixed issues
<a href="https://github.com/typetools/annotation-tools/issues/155">#155</a>
and
<a href="https://github.com/typetools/annotation-tools/issues/156">#156</a>.</li>
</ul>
</li>
<li>
Version 3.6.51 (released March 1, 2018):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.50 (released February 1, 2018):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.49 (released January 2, 2018):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.48 (released December 1, 2017):
<ul>
<li>Moved scene-lib classes into package <code>scenelib</code> (fixes issue
<a href="https://github.com/typetools/annotation-tools/issues/121">#121</a>).</li>
<li>Fixed issues
<a href="https://github.com/typetools/annotation-tools/issues/144">#144</a>
and
<a href="https://github.com/typetools/annotation-tools/issues/145">#145</a>.</li>
</ul>
</li>
<li>
Version 3.6.47 (released November 2, 2017):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.46 (released September 29, 2017):
<ul>
<li>Fixes issue
<a href="https://github.com/typetools/annotation-tools/issues/124">#124</a>.</li>
</ul>
</li>
<li>
Version 3.6.45 (released September 5, 2017):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.44 (released August 3, 2017):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.43 (released July 3, 2017):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.42 (released June 1, 2017):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.41 (released May 1, 2017):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.40 (released April 3, 2017):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.39 (released March 1, 2017):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.38 (released Jan 20, 2017):
<ul>
<li> The Annotation File Utilities webpage has moved to
<a href="https://checkerframework.org/annotation-file-utilities/">https://checkerframework.org/annotation-file-utilities/</a>.
Old URLs should redirect to the new one, but please update your links
and let us know if any old links are broken rather than redirecting.</li>
</ul>
</li>
<li>
Version 3.6.37 (released Jan 3, 2017):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.36 (released Dec 1, 2016):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.35 (released Nov 2, 2016):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.34 (released Oct 3, 2016):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.33 (released Sep 16, 2016):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.32 (released Sep 1, 2016):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.31 (released August 1, 2016):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.30 (released July 1, 2016):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.29 (released Jun 1, 2016):
<ul>
<li>
extract-annotations no longer puts package annotations on non-existent class,
fixing issue <a href="https://github.com/typetools/annotation-tools/issues/117">#117</a>.
</li>
<li>
Closes issue <a href="https://github.com/typetools/annotation-tools/issues/120">#120</a>.
</li>
</ul>
Version 3.6.28 (released May 1, 2016):
<ul>
<li>
<code>AScene</code> now has a copy constructor and implements
<code>Cloneable</code>.
</li>
</ul>
</li>
<li>
Version 3.6.27 (released Apr 1, 2016):
<ul>
<li>
The annotation file format permits use of a class name, in addition to
<code><init></code>, to specify a constructor.
</li>
<li>
Closes issues
<a href="https://github.com/typetools/annotation-tools/issues/70">#70</a>
and
<a href="https://github.com/typetools/annotation-tools/issues/88">#88</a>.
</li>
</ul>
</li>
<li>
Version 3.6.26 (released Mar 1, 2016):
<ul>
<li>Avoids reinserting an annotation that already exists in comments, fixing Issue
<a href="https://github.com/typetools/annotation-tools/issues/114">#114</a>.</li>
</ul>
</li>
<li>
Version 3.6.25 (released Feb 1, 2016):
<ul>
<li>Uses system javac to compile the executable program, thus enabling Java 7 execution.</li>
<li>Clears set of required imports after processing each source file, fixing Issue
<a href="https://github.com/typetools/annotation-tools/issues/111">#111</a>.</li>
<li>Escapes String fields of annotations, fixing Issue
<a href="https://github.com/typetools/annotation-tools/issues/112">#112</a>.</li>
</ul>
</li>
<li>
Version 3.6.24 (released Jan 4, 2016):
<ul>
<li>Fixes Issue
<a href="https://github.com/typetools/annotation-tools/issues/108">#108</a>
by adding a <code>LICENSE.txt</code> file.</li>
<li>Fixes offset calculation for wide JVM instructions.</li>
<li>Makes minor improvements to build process.</li>
</ul>
</li>
<li>
Version 3.6.23 (released Dec 1, 2015):
<ul>
<li>Fixes Issue
<a href="https://github.com/typetools/annotation-tools/issues/106">#106</a>.</li>
<li>Makes minor improvements to documentation and build process.</li>
</ul>
</li>
<li>
Version 3.6.22 (released Nov 9, 2015):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.21 (released Oct 24, 2015):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.20 (released Oct 8, 2015):
<ul>
<li>Minor bug fixes and improvements.</li>
</ul>
</li>
<li>
Version 3.6.19 (released Sep 1, 2015):
<ul>
<li>Avoids importing the same annotation name from multiple packages (Issue
<a href="https://github.com/typetools/annotation-tools/issues/101">#101</a>).</li>
<li>Fixes some bugs (including Issues
<a href="https://github.com/typetools/annotation-tools/issues/100">#100</a> and
<a href="https://github.com/typetools/annotation-tools/issues/102">#102</a>)
pertaining to <code>extends</code> clause generation.</li>
</ul>
</li>
<li>
Version 3.6.18 (released Aug 4, 2015):
<ul>
<li>
Moved the Annotation Tools version control repository from Google Code
to GitHub, and from the Mercurial version control system to Git.
If you have cloned the version control repository, then discard your
old clone and create a new one using this command:
<pre> git clone https://github.com/typetools/annotation-tools.git</pre>
</li>
<li>Fixes some errors involving default class and method bound insertion.</li>
</ul>
</li>
<li>
Version 3.6.17 (released July 1, 2015):
<ul>
<li>
Minor bug fixes and improvements.
</li>
</ul>
</li>
<li>
Version 3.6.16 (released June 1, 2015):
<ul>
<li>
Fixes multiple crash-causing bugs in <code>insert-annotations-to-source</code>.
</li>
</ul>
</li>
<li>
Version 3.6.15 (released May 1, 2015):