File: ChangeLog

package info (click to toggle)
bibutils 7.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,040 kB
  • sloc: ansic: 112,579; sh: 462; makefile: 42
file content (1914 lines) | stat: -rw-r--r-- 50,893 bytes parent folder | download | duplicates (2)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914

BIBUTILS

7.2
11/11/21
+ Merge month parsing in adsout.
+ Fix title parsing in endx2xml. Reported by Fahad.
+ Fix page parsing. Repored by Nina Birych.
+ Fix misspellings.

7.1
9/26/21
+ Fix bug in build for 7.0. Reported by Vascom.

7.0
9/24/21
+ Build infrastructure to handle language tags in MODS xml. This is a breaking
binary change, so bump the major version number.
+ Properly handle the 'date' field in xml2biblatex to output (when possible)
ISO 8601 dates. Propagate better handling of month code to all input
converters so that months are internally stored as number strings, e.g. '01'
instead of 'January' or 'Jan'. Reported by sgarfield.
+ Handle shortjournal/shortbooktitle/shortseries in biblatex input.
+ Handle 'nonSort' title tag in MODS. Reported by matt.
+ Cleanups to MODS output.
+ Handle marc country codes properly.
+ Convert code to use common page handling. Fixes nbib2xml error reported by
Nina Birych.
+ Add additional input types to nbib2xml. Reported by Nina Birych.
+ Fix makedeb.sh error reported by Alf Eaton.

6.10
3/23/20
+ Fix build errors in version 6.9

6.9
3/17/20
+ Add xml2biblatex converter
+ Fix bug where --no-latex/-nl isn't respected when outputting names
+ Replace latex parser
+ xml2isi - add publisher address to output
+ Cleanups to converter core
+ Fixes to some fuzzer-identified bugs

6.8
8/27/19
+ Improve ISI output
+ Lots of cleanups

6.7
8/31/18
+ Remove exit() calls from library and fully implement error tracking in 
struct str (requested by Vasiliy Glazov)
+ Add "DOI:" to doi entries in xml2ads (reported by Richard Mathar)
+ Eliminate duplication of doi information in xml2ads (reported by Richard
Mathar)
+ Improve handling of non-ascii letters for ADS %R tags (patch from Richard
Mathar)
+ Suppress warnings on Windows compilers with 32 bit longs (reported by Vaclav
Haisman)

6.6
7/02/18
+ Allow distros to inject LDFLAGS via LDFLAGSIN into bibutils builds (reported
by Jens-Ulrik Petersen)
+ Add xml2nbib converter

6.5
6/12/18
+ Handle both genres "unpublished" and "manuscript" (reported by Chip Maguire)
+ Recognize all MARC role abbreviations (reported by Chip Maguire)
+ Handle Licentiate theses (reported by Chip Maguire)
+ Fix bug in nbib2xml (reported by Vaclav Haisman)
+ Fix hangs in bib2xml/biblatex2xml found by american-fuzzy-lop

6.4
6/05/18
+ Add missing return in bibtexout.c (reported by Vaclav Haisman)
+ Fix accidentally deleted extern in xml.h to fix hs-bibutils build (reported
by Vaclav Haisman)

6.3
6/04/18
+ Add bibdiff program
+ Fix header guards in iso639_1.h and iso639_3.h (reported by Vaclav Haisman)
+ Fix nbib support for bibutils as a library (reported by Vaclav Haisman)
+ Add authority="bibutilsgt" for bibutils-recognized genres not in MARC
authority
+ Switch from GENRE/NGENRE/UGENRE to GENRE:MARC/GENRE:BIBUTILS/GENRE:UNKNOWN
+ General cleanups and fixes to cppcheck/clang warnings
+ Fix CVE-2018-10773, CVE-2018-10774, CVE-2018-10775

6.2
8/09/17

DOI
+ Output as url in addition to doi for ads, bibtex, and ris formats

6.1
7/31/17

BUILD
+ Fix recognition of Linux ppc64le machines (reported by Michaela Buchanan)

GLOBAL
+ Handle new crossref URL for DOI's https://doi.org/ (reported by Murali Raju)

RISIN
+ Handle mangled RIS sources that have three spaces in the tag instead of two
(reported by Vaclav Haisman)

6.0
7/4/17

GLOBAL
+ Switch newstr/list to str/slist
+ Fix build problems

RISIN
+ Fix parsing bug in RIS (patch from Vaclav Haisman)

BIBTEXIN/OUT
+ Improve handling of eprintClass/primaryClass for arXiv references (reported
by Chris Karakas)

5.11
11/8/16

NBIB2XML
+ Add program

BIBTEXOUT
+ Handle MRNUMBER

5.10
11/2/16

BIBTEXIN
+ Handle MRNUMBER and CODEN tags

5.9
9/12/16

GLOBAL
+ Allow bibutils to properly process references with several authors of the
same name (reported by Jason Annadani).

MODSIN
+ Fix processing of mods input files where given name information isn't as
finely parsed as bibutils mods files are (reported by Dan Gildea).

5.8
5/23/16

INTERNAL
+ Change xxx_convertf() functions to use tables of function pointers
+ Use generic function pointers whenever possible to decrease duplicated code

ADSOUT
+ Improve URL handling

BIBLATEXIN
+ Identify JSTOR

BIBTEXOUT
+ Handle PMC identifiers
+ Fix chapter/title for @inbook references (reported by Vivek Botcha)

RISOUT
+ Handle PMC identifiers


5.7
2/15/16

MODSIN
+ Handle relatedItem original information (reported by John Vandenberg)

BIBTEXOUT
+ Resolve INBOOK/MISC problems (reported by John Vandenberg)
+ Improve output of latex macros (reported by John Vandenberg)

RISIN
+ Recognize URL's buried in the notes field
+ Properly propagate situation when journal name in RIS is under "T2"--short
title, not "JF"--journal title (reported by Mary Martin)

GLOBAL
+ Update library components to current versions
+ Improve error propagation
+ Lots of small fixes found by clang --analyze


5.6
1/26/15

MODSOUT
+ Fix array that was too small (reported by dcb314@users.sf.net)
+ Lots of cleanups

5.5
11/15/14

GLOBAL
+ Improve error propagation in library

MODSIN
+ Improve handling of language information and handle iso639-1, iso639-2, and iso639-3 codes

XML2END
+ Output DOI as '%R' in addition to url in '%U'
+ Improve recognition of reference types in MODS records

XML2RIS
+ Improve recognition of reference types in MODS records

5.4
03/24/14
BIB2XML/BIBLATEX2XML
+ Do not use latex in references to external files (reported by JVilhena)

WORDOUT
+ Output url information (reported by danieldedo)

5.3
03/06/14

BUILD
+ Remove type 'uint' from lib/bibtexin.c and lib/biblatexin.c
+ Handle additional latex forms of C with cedilla

5.2
09/03/13

BIBLATEXIN
+ Protect conversion of tilde in URLs

5.1
09/03/13

BUILD
+ Fix make install (reported by Jens Petersen)
+ Fix cygwin skipping of ranlib (reported by Doug McIlroy)

BIBTEXIN
+ Fix string concatenation and string variable usage

BIBLATEXIN
+ Fix string concatenation and string variable usage
+ Add additional recognized reference types (reported by Nick Bart)

5.0
05/27/13

USER VISIBLE CHANGES
+ Make default character set unicode
+ Enable -o --output-encoding for the xxx2xml converters

BUILD
+ Ensure binary directory target exists (reported by Thomas Fischer)
+ Tell cp to preserve symbolic links when copying dynamic library (reported by Thomas Fischer)
+ Remove bashisms from sh script (reported by JeffH)

BIBLATEXIN
+ Handle 'shorttitle' tag (reported by Nick Bart)
+ Make asis/corp file work again (reported by JeffH)
+ Map 'pubstate' tag to note type="publication status" similar to http://ufdc.ufl.edu/help/pubstatus (suggested by Nick Bart)
+ Handle 'series' tag in @report (reported by Nick Bart)
+ Map 'series' in @article to partName of journal title (reported by Nick Bart)
+ Write 'annotation' as special type of note (reported by Nick Bart)

BIBTEXIN
+ Make asis/corp file work again (reported by JeffH)

RISOUT
+ Ensure that BT fields are written for conference publications (reported by Matthias Stevens)
+ Ensure that ED fields are used for editors of conference publications (reported by Matthias Stevens)

MODS
+ Fix inappropriate "language" tags under languageOfCataloging (reported by Nick Bart)

NAME MANGLING
+ Improve handling of prefixes to given names, e.g. "van der" in "van der Sande"

4.17
01/24/13

BUILD
+ Large changes to build process; more changes for MINGW32/Cygwin
+ Remove attempt to build powerpc-supporting binaries for MacOSX

GLOBAL
+ Attempt to include iso639-2b codes for languages when possible
+ Make output consistent with MODS version 3.4 by adding language/languageTerm (reported by Nick Bart)
+ Fix accidental duplication of roles in MODS output (reported by Nick Bart)

BIBLATEXIN
+ Map 'hyphenation' to recordInfo/languageOfCataloging (reported by Nick Bart)
+ Map biblatex 'version' to edition (reported by Nick Bart)
+ Fix series fields in @inbook (reported by Nick Bart)
+ Fix issues with @periodical (reported by Nick Bart)
+ Handle entrysubtypes for @article (reported by Nick Bart)
+ Handle origdate (reported by Nick Bart)
+ Fix corporate editors (reported by Nick Bart)
+ Process report 'isrn' field (reported by Nick Bart)

MEDIN
+ Handle iso639-2b language input and output as full language name

4.16
01/09/13

BUILD
+ Add version to GPL for Fedora/Redhat
+ Add recognition of x86_64 MacOSX as Intel Macintoshes to configure
+ Add recognition of OpenBSD to configure
+ Add recognition of MINGW32 architecture to configure
+ Remove explicit use of 'make' in Makefiles and use $(MAKE) instead
+ Switch to sh version of configure script (thanks to Adrian Devries)
+ Switch to sh version of maketgz script (thanks to Adrian Devries)
+ Switch to sh version of makedeb script

GLOBAL
+ Improve propagation of memory errors in libraries to calling programs
+ Update help messages
+ Rewrite name parsing/mangling code
+ Do cast for ctype.h functions to handle MINGW32 architecture (reported by Adrian Devries)

ADSOUT
+ Fix bug where partial matches for journal titles identified journals
+ Add Windows-specific format string for MINGW32 architecture (reported by Adrian Devries)
+ Update list of journal abbreviations

BIBTEXIN
+ Fix bug where spaces following an escaped quotation mark (as with the -nl, no latex, flag) are lost (reported by Raoul Blankertz)
+ Fix bug where pages had to be completely numeric (reported by Nick Bart)
+ Import series information for @Techreport
+ Rewrite name parsing
+ Improve recognition of urls put in inappropriate fields
+ Improve handling of tilde/sticky space
+ Add latex recognition of alternative ways to express the (Polish) capital and lowercase slashed L
+ Improve recognition of URL identifiers in note fields
+ Map 'howpublished' to publisher (reported by Nick Bart)

BIBLATEXIN
+ Add 'date' field to every reference type, regardless if it's in the reference documentation or not (reported by Nick Bart)
+ Fix bug where pages had to be completely numeric (reported by Nick Bart)
+ Add support for 'institution' and 'type' for report references (reported by Nick Bart)
+ Add strings support (reported by Nick Bart)
+ Handle editor types, including bibtex-chicago variants (reported by Nick Bart)
+ Map 'introduction', 'foreward', 'afterward' to "author of introduction/foreward/afterward" (reported by Nick Bart)
+ Ignore 'school' in biblatexin reference if 'institution' is available like biblatex(reported by Nick Bart)
+ Improve biblatex thesis type recognition
+ Rewrite name parsing
+ Improve handlning of tilde/sticky space
+ Map 'howpublished' to publisher (reported by Nick Bart)
+ Handle 'titleaddon' field (reported by Nick Bart)
+ Output number field differently for type report (reported by Nick Bart)

BIBTEXOUT
+ Output series information for @Techreport
+ Output all keywords in single entry as semi-colon deliminated list

COPACIN
+ Fix pre-name mangling that prevents recognition by asis/corporation lists

ENDIN
+ Add better support for series information

ENDOUT
+ Add better support for series information

MODSIN
+ Add support for common MARC role codes (role abbreviations)

RISIN
+ Add recognition of map type
+ Improve support for series information (reported by Mattheis Steffens)

RISOUT
+ Add recognition of map type (reported by Mattheis Steffens)
+ Fix bug in date output (reported by Mattheis Steffens)
+ Improve support for series information (reported by Mattheis Steffens)

4.15
9/26/12

BIBTEXIN
+ @article 'number' -> MODS 'issue'
+ @conference = @inproceedings
+ 'organization' -> publisher if publisher not available, otherwise output
  as <name><namePart>xx</namePart><role><roleTerm>organizer of meeting</roleTerm></role></name>

BIBLATEXIN
+ Add missing month parsing

4.14
9/04/12

BIBTEXIN
+ Split individual keywords in the keywords field separated by semi-colons

RISIN
+ Handle URL schemes from L1 and L4 fields (reported by Martin Kucej)

RISOUT
+ PY outputs only year, DA outputs year/month/day combination (reported by Nelson Hart)
+ L1 and L4 fields need to be URL's (reported by Martin Kucej)

WORD2007OUT
+ Replace b:PeriodicalName with b:PeriodicalTitle

4.13
8/28/12

BUILD
+ Fix build problem with test subdirectory (patch by David Bremner)
+ Avoid hard-coded dynamic library to help out Debian (path by David Bremner)
+ Add patch to bibutils.dbk (patch by David Bremner)

CHARSETS
+ Add more latex character <-> Unicode conversions

FIELDS
+ Update internals, add vplist component, and convert to new interface

BIBTEXIN
+ Fix chapter in @inbook, @inproceedings, and @incollection from overwriting
  the title of the section being cited (reported by Brian Keese)
+ Cleanly handle "illegal" @inbook entries that have both "title" and "booktitle"
  fields and really want to be @incollection entries (reported by Brian Keese)
+ Remove mbox commands from input

RISIN
+ Add recognition of more RIS fields (reported by Nelson Hart)

RISOUT
+ Use 'AB' instead of 'N2' tag for abstracts (reported by Nelson Hart)
+ Use 'DO' tag instead of building a complete URL for DOI's (reported by Nelson Hart)
+ Use 'ET' tag for edition output (reported by Nelson Hart)
+ Use 'LA' tag for language
+ Add recognition of non-official genres "book chapter" and "journal article"
  (reported by Nelson Hart)


4.12
10/10/10

BUILD
+ Allow smaller static libraries to be built
+ Add --dynamic and --static (default) options to configure script
+ Add --install-lib to configure script to controll installation of dynamic libraries

XML2ADS
+ Fix overflow of page value with really large page numbers
+ Update journal abbreviation list

XML2BIB
+ Add command-line option -d or --drop-key to prevent xml2bib from
  adding tags (so they can be generated by programs like JabRef)


4.11
9/14/10

BUILD
+ Include some "unused" flags like LDFLAGS so that people with particular build
  environments can have these flags respected (from Gentoo 
  http://bugs.gentoo.org/show_bug.cgi?id=336237)
+ Add test programs to "make test" protocol

TEST
+ Fix some signedness issues (bit rot) in the test programs (from Mandriva
  packager, Stéphane Téletchéa)

XML2BIB
+ Add command-line option  -at or --abbreviatedtitles to force xml2bib to
  use abbreviated titles for journals (books and other host types), if present
  in the MODS input


4.10
8/30/10

BIBLATEX2XML
+ fix organization/event handling (thanks to Johannes Wilms)

MODSIN
+ support the presence of the reference identifier/key in 
  mods:recordInfo:recordIdentifier

4.9
4/9/10

BIBLATEX2XML
+ Many, many changes thanks to Johannes Wilms

BIB2XML
+ Some improvements in thesis handling derived from biblatex2xml changes

BUILD
+ Fix build for _x86_64 (amd64) (Thanks to patch from Colin Bell).


4.8
2/2/10

BIB2XML
+ Handle bibtex annote tags

XML2BIB
+ Handle bibtex annote tags


4.7
12/11/09

XML2ADS
+ Fix not outputting multiple authors from "ASIS" and "CORP" categories.

XML2END
+ Fix not outputting multiple authors from "ASIS" and "CORP" categories.

XML2ISI
+ Fix not outputting multiple authors from "ASIS" and "CORP" categories.

4.6
11/2/09

BIB2XML
+ Fix inefficiency in latex2char() that gives roughly a 10x speed increase
  in bib2xml.  Thanks to Stephan Washietl for the patch.

NAME MANGLING
+ Fix bug with uninitalized pointer.  Thanks to David Bremner for patch.

NEWSTRING
+ Add newstrs versions of various commands.


4.5
10/24/09

BIB2XML
+ Identify and use byte-order-mark in UTF8-encoded files
+ Support file attachments with "pdf" tags (old JabRef), "sentelink" (Sente),
  and "file" (new JabRef, Zotero, Mendeley).  (Thanks to Richard Karnesky)

COPAC2XML
+ Identify and use byte-order-mark in UTF8-encoded files

ISI2XML
+ Identify and use byte-order-mark in UTF8-encoded files

RIS2XML
+ Add support for DOI tags DO and DI from Scopus (Thanks to Fred Howell)
+ Identify and use byte-order-mark in UTF8-encoded files
+ Add support for L1 file attachment tags (Thanks to Richard Karnesky)

XML2ADS
+ Output file attachments as URLs

XML2BIB
+ Add support for "file" file attachment tag in the JabRef/Mendeley/Zotero
  format

XML2END
+ Output file attachments as URLs

XML2ISI
+ Output file attachments as URLs

XML2RIS
+ Add support for L1 file attachment tags

4.4
10/05/2009

BIB2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
  with colons or question marks into title/subtitle MODS pairs

COPAC2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
  with colons or question marks into title/subtitle MODS pairs

END2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
  with colons or question marks into title/subtitle MODS pairs
+ Add support for electronic-source-num as potential location of DOI
+ Add support for language

END2XML
+ Fix support for number field in report/book/book section/edited book
  reference types

ENDXML2XML
+ Support pdf-url in endnote XML file

ISI2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
  with colons or question marks into title/subtitle MODS pairs

RIS2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
  with colons or question marks into title/subtitle MODS pairs


4.3
7/31/09

BIB2XML
+ Add support for recognizing howpublished = {arXiv:xxxx} entries

LATEX
+ Fix bug for {\c{c}} output

XML2END
+ Add support for Pubmed ID's (PMID) as %U http://www.ncbi.nlm.nih.gov/pubmed/...
+ Add support for arXiv identifiers as %U http://arxiv.org/abs/...

XML2RIS
+ Add support for Pubmed ID's (PMID) as UR - http://www.ncbi.nlm.nih.gov/pubmed/..
+ Add support for arXiv identifiers as UR - http://arxiv.org/abs/...
+ Change abstract output from "AB" tag to "N2"

XML2WORDBIB
+ Add support to handle inventors in patent type
+ Fix inappropriate output of empty author or editor lists

4.2
06/25/09

BUILD
+ Add support for 'Power Macintosh' as MacOSX_ppc.  Thanks to Matthias
  Steffens for the fix.
+ Fix additional MacOSX build bugs, thanks to David Sanson

END2XML
+ Add %1 parsing to journal articles
+ Fix bug not recognizing %[ and elements as valid tags
+ Add support for Conference Paper

ENDX2XML
+ Add support for pub-location tags
+ Add support for Conference Paper

LATEX
+ Fix bug for {\AA} conversion, patch thanks to Joseph Barillari.

MED2XML
+ Recognized medline entries from MEDLINE in addition to PUBMED.  Thanks to
  Hamish McWilliam for providing useful information.

MODSIN
+ Handle pages provided as list, patch thanks to Heiko Jansen

NAME MANGLING
+ Handle hyphenated names better
+ Handle "et al." in name lists better

XML2BIB
+ Add recognition of genre "article", patch thanks to Heiko Jansen

XML2END
+ Add export of DOI as %U http://dx.doi.org/.... Thanks to Mattheis
  Steffens for the report

XML2RIS
+ Add export of DOI as UR  - http://dx.doi.org/....  Thanks to Mattheis
  Steffens for the report

XML2WORD
+ Add support for more types of sources.


4.1

BIBLATEX2XML
+ Lots of bug fixes

BUILD
+ Try to make changes to bin/Makefile to fix problem on FreeBSD.  Still
  awaiting feedback to see if problem is solved.

END2XML
+ Handle DOI placed in %1 custom field by Wiley

RIS2XML
+ Add pattern matching for new DOI output by Science Direct

XML2ADS
+ Fix putting comma after the first keyword (thanks to Richard Mathar)

4.0

BIBLATEX2XML
+ Initial alpha version of the program -- mapping certain fields to MODS
  hasn't been done yet.

BUILD
+ Move files/functions around so all of the code necessary to support
  the converters but not part of the bibutils libraries are in the
  bin subdirectory.

CHARSET CONVERSION
+ add partial recognition of Chinese GB18030 character set (containing 
  the GBK superset)
+ Revert 3.41 patch from Luc Pardon default that made unicode/utf8 take
  precedence over latex now that -nl, --no-latex flag is available

END2XML
+ support %G language tag
+ support %H translator tag

ENDX2XML
+ fix bug caused by style tags in author fields

LIBRARY HANDLING
+ Remove requirement for defining lists for "as-is" and "corporation" names
  to be read from the file -- embed in the param structure instead (help
  for Haskell bindings)
+ Modify the library API so that input and output formats are stored in
  struct param and do not need to be repeated in bibl_read() and bibl_write()
  calls.

XML2BIB
+ Turn off latex encoding if we're using the GB18030 character set.

XML2END
+ support %G language tag
+ support %H translator tag
+ add better support for MARC-authority genre tags

3.43
11/24/08

BIB2XML
+ Fix recognition of em-dash by placing it before en-dash in conversion
  list.
+ Add -nl or --no-latex to prevent conversion of latex character
  combinations

MODSOUT
+ Ensure that bibutils handles records with empty MODS attributes

3.42
10/31/08

MODSOUT
+ Change default to UTF8 unicode characters written directly (not
  via XML entities) and writing BOM.  Add command-line switch
  -x or --xml-entities to write XML entities instead to BIB2XML
  END2XML ENDX2XML MED2XML RIS2XML, etc.

XML2ADS
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
  the user doesn't want it
  
XML2BIB
+ For users who want the bibtex file format, but not the latex encryption
  of characters, add -nl or --no-latex to command-line switches
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
  the user doesn't want it

XML2END
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
  the user doesn't want it

XML2ISI
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
  the user doesn't want it

XML2RIS
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
  the user doesn't want it

XML2WORD2007
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
  the user doesn't want it
+ Fix the recognition of incollection items as book sections.


3.41
6/16/08

BUILD
+ Fix bug in makedeb.csh
+ Fix site-specific compiler definition for SunOS5 target.
+ Add Linux x86_64 target for configuration.

MODSIN
+ Fix NULL pointer dereference for "detail" elements lacking a type
  attribute.  (Noticed and hunted down by Thomas Fischer.)

RIS2XML
+ Fix bug where "AB  - " with a newline before the abstract was
  not recognized as an abstracted.  (Reported by Thomas Braun
  and Richard Mathar.)

XML2ADS
+ Updates from Richard Mathar fixing R-tag output, merging keywords,
  fixing date, adding title, and replacing double dash.
+ Update journals to current list from:
  http://adsabs.harvard.edu/abs_doc/journals1.html

XML2BIB
+ Fix character priority so unicode/utf8 takes precedence over latex
  (Patch from Luc Pardon)

3.40
2/10/08

MODSIN
+ Fix crash where placeTerm tag doesn't have attribute (Thanks to
  Martin-Michael Schoenbeck for identifying the problem and submitting
  an initial patch).
+ Properly handle the 'mods:' namespace (Thanks to Martin-Michael
  Schoenbeck for identifying the problem and submitting an 
  initial patch).
+ Fix bug where multiple roleTerms confused role assignment.

RIS2XML
+ Oxford journal RIS output is now putting DOI information in the N1
  field; recognize this (Thanks to Richard Mathar for letting me know).

XML2ADS
+ New converter for the ADS format submitted by Richard Mathar.

XML2BIB
+ Bias the program to output issue/number tags as 'number' first
  and use 'issue' only in cases where both issue and number have
  been defined.
+ Add '-sk' '--strictkey' option that only outputs alphanumeric
  characters in the bibtex reference names (this is overly strict,
  but may be useful in some cases to automatically avoid problems 
  with other bibtex parsers)

XML2END
+ Fix missing return for articles with article numbers rather than
  page numbers

XML2WORDBIB
+ Rename "xml2word" to avoid confusion with other programs that work
  on Word documents, not Word bibliographies


3.39
10/24/07

NAME MANGLING
+ Fix crash caused by specifically malformed name fields

3.38
10/10/07

BIB2XML
+ Fix crash when bibtex citation key is blank (introduced in 3.37)

END2XML
+ Fix handling of total pages
+ Fix handling of conference name

ENDX2XML
+ Fix handling of total pages
+ Fix handling of conference name
+ Fix bug where reference would skip if the starting record tag was
  split by the input buffer


3.37
8/20/07
MODSOUT
+ fix bug where terminating > symbol is missing in 
  <identifier type="serialnumber"> output

3.36
8/19/07

CHARSET CONVERSION
+ add recognition of apostrophe HTML entity

LIBRARY HANDLING
+ resolve duplicates of citation keys by adding a-z

BIB2XML
+ properly handle bibtex files output by endnote that don't have field keys
+ add support for Diploma, Doctoral, and Habilitation theses (German)

ENDX2XML
+ properly handle whitespace in style tags
+ add support for Diploma, Doctoral, and Habilitation theses (German)

RIS2XML
+ support computer program "COMP" type
+ support patent "PAT" type
+ support unpublished "UNPB" type
+ add support for Diploma, Doctoral, and Habilitation theses (German)

XML2BIB
+ output newspaper articles as @ARTICLE as well
+ output series titles as "series" for book chapter, inproceedings, theses
  types
+ add support for Diploma, Doctoral, and Habilitation theses (German)

XML2END
+ support magazine article type
+ support patent type
+ support computer program type
+ add support for Diploma, Doctoral, and Habilitation theses (German)

XML2ISI
+ be more aggressive about outputing the date

XML2RIS
+ support magazine article type
+ support abstract/summary type
+ support patent type
+ support computer program type
+ support unpublished "UNPB" type
+ add support for Diploma, Doctoral, and Habilitation theses (German)


3.35
7/30/07

BIB2XML
+ support translator field

COPAC2XML
+ fix bug where garbage input can lead to infinite loop

ENDX2XML
+ fix bug where multiple style tags caused data to be lost

ISI2XML
+ use authors listed with "AF" instead of "AU" when present as they
  are a "better" annotated list
+ fix bug where garbage input can lead to infinite loop (patch thanks
  to Fred Howell)
+ add type S for book in series
+ fix bug where NR number of references was being recognized as
  journal number

RIS2XML
+ add support for RIS magazine article "MGZN"
+ add support for RIS abstract "ABST"
+ add support for reading thesis hint in "user 1" tag "U1"

XML2BIB
+ output article number as page number if page numbers aren't found
+ support translator field
+ make preferred form of \text markups have curly brackets

XML2END
+ output article number as page number if page numbers aren't found

XML2RIS
+ output article number as page number if page numbers aren't found
+ fix recognition of thesis type
+ output "U1  - Masters thesis" or "U1  - Ph.D. thesis" as a hint
  for Refbase of the thesis type

XML2WORD
+ output article number as page number if page numbers aren't found


3.34
6/07/07

END2XML

+ fix bug that prevent dates from being read in


3.33
5/23/07

MED2XML
+ fix stupid change that caused coredumps


3.32
5/21/07

CHARSET CONVERSION
+ fix bug where UTF-8/Unicode input is ignored for BibTeX files

MODSIN
+ Recognize both &gt;extent unit="page"&lt; and &gt;extent unit="pages"&lt;

NEWSTR
+ Fix compilation on 64 bit processors

BIB2XML
+ Strip latex \url{} tags from input data

XML2BIB
+ Add recognition of --verbose and --debug

XML2END
+ Add recognition of --verbose and --debug

XML2ISI
+ Add recognition of --verbose and --debug

XML2RIS
+ Add recognition of --verbose and --debug

XML2WORD
+ Add recognition of command line switches


3.31
4/1/07

BIBTEXIN
+ Fix typo in genre for "incollection" to "monographic"
+ Remove text markups like \textit{} and \textbf{}
+ Replace text markups like "\textonesuperior" with appropriate Unicode
  characters
+ Have electronic types set MODS resource "software, multimedia"

BIBTEXOUT
+ Modify warning message for "xml2bib: cannot identify type" to
  tell user that it's defaulting to @Misc so people stop reporting
  this information to me
+ Add electronic type recognition and output

ENDIN
+ Have electronic types set MODS genre "electronic"
+ Add '%S' Series title to Book type
+ Add recognition of Unicode UTF8 byte order information

ENDXMLIN
+ Ensure that the "label" field ends up in the MODS output as
  reference ID
+ Pass through "short-title" information

MODSOUT
+ Fix typo so MARC-authority genre types are "marcgt", not "marc"
+ Output ACCESSNUM to MODS

RISIN
+ Add thesis type
+ Add report type

RISOUT
+ Map "collection" and "incollection" from bibtex to "book" and "inbook"
+ Add thesis type
+ Add report type

ENDOUT
+ Map "collection" and "incollection" from bibtex to "book" and "inbook"


3.30
3/17/07

XML2WORD
+ Write first version of the program


3.29
3/12/07

ENDIN
+ Fix addition of extraneous tag for electronic types; add
  proper MODS resource tag

ENDX2XML
+ Fix problems parsing in XML files without newlines

3.28
3/10/07

BIBTEXIN
+ Fix problems parsing files that have non-bibtex lines in them
+ Add c with a hacek support to latex characters (thanks to
  George Smith for the information)
+ Add enspace, emspace, and thinspace support to latex
  characters (patch from John Spray; thanks!)

ENDX2XML
+ Write first version of the program

ISIIN
+ Add support for DOI tag "DI"

NAME MANGLING
+ Fix bug in handling multibyte Unicode characters

XMLIN
+ Fix bug where single quoted XML attributes were not recognized
(Patch due to Jason Lerch; thanks!)

XML2ISI
+ Write first version of the program


3.26
06/21/06

MODSIN
+ Add reading in pubmed/medline/pii identifiers

RISOUT
+ Output pubmed identifiers as UR  - PM:###### (Thanks to Mark Runyan)


3.25
06/14/06

BUILD PROCESS
+ Add NetBSD, FreeBSD, and Cygwin to recognized architectures

MODSOUT
+ Convert patent assignee to the MARC term "patent holder" (modified from
  patch by Ralf Ahlbrink)
+ Add role types "organizer of meeting", "inventor", "degree grantor"
 (modified from patch by Ralf Ahlbrink)

NAME MANGLING
+ Fix possible interactions between pre-defined corporate types
  and user-defined as-is and corporate types

ISI2XML
+ Add support for "article number" (AR) field that some journals are
  now using instead of page numbers

MED2XML
+ Fix date parsing for entries that have a "medline format date" rather
  than a date broken down into XML fields
+ Fix bug that doesn't output proper end pages if first and last pages
  are the same length (thanks to Andreas Hartmetz for finding and patching
  the bug)


3.24
02/21/06

CHARSET CONVERSION
+ fix bug where requests for UTF-8 encoded output were ignored

MED2XML
+ default input to UTF-8 encoded unicode, as it ought to be
+ extract a few more items (like pubmed/medline/pii ID's, MeSH
  headings)...most currently only make it into MODS output

XML
+ fix potential core dump from empty xml attributes values

XML2BIB
+ for better compatibility with Emacs, default the bibtex tags to
  lower case
+ new switch -U, --uppercase to switch to old all uppercase tag behavior


3.23
1/02/06

Changes in this release are thanks to patch and bug report by Jeremy Malcolm.

BIB2XML
+ Add support for volume in @electronic reference type

END2XML
+ Add support for volume in electronic reference type

RIS2XML
+ Add support for TY - ELEC reference type

XML2RIS
+ Add support for TY - ELEC reference type
+ Fix bug where GENRE, but not NGENRE data was being parsed for reference
  type

3.22
12/09/05

MODSIN
+ fix off-by one bug that can cause references to be skipped

XML
+ fix potential coredump on error path in xml_findend()


3.21
11/02/05

CHARSET CONVERSION
+ add latex version of degree sign, micro sign
+ numerous fixes to charset handling
+ add -i,--input-encoding and -o, --output-encoding parameters for the
  programs xml2bib, xml2end, xml2ris
+ allow modsin and medin modules to read the character set specified by
  the xml descriptors
+ set priority so that the character set has the priority:
  program defaults < xml file specified < user specified

LIBRARY
+ fix bug where static prototype appears to be illegal and prevents
  compilation on MacOSX "Tiger"
+ finally add error reporting messages for library errors

BIB2XML
+ add support for cross referencing


3.20
10/06/05

END2XML
+ fix type of court reporter

NAME PROCESSING
+ recognize names in the form Author, HQ or HQ Author and split up
  the initials

BUILD PROCESS
+ switch build to a ./configure; make; make install commands (but do
  it without autoconf)
+ add debian package options to Linux and MacOSX as a trial

MODSOUT
+ start fixing position of items like volume, issue, pages for entries
  now that MODS v3.1 allows part tags at the main level


3.19
09/14/05

BIB2XML
+ add issuance of monographic to book types: book, inbook, incollection
+ fix bug where fields protected by braces or quotations would still
  be subjected to string substitutions
+ fix bug where string substitutions could be applied multiple times;
  bibtex has special concatenation with string substitution rules
+ add latin capital/lowercase c with acute to latex conversion
+ add some letters with caron (hacek) specifications

END2XML
+ add issuance of monographic to book types: book, edited book, chapter
+ move publisher to host level in journal article and add to magazine
  article

ISI2XML
+ add issuance of monographic to book types: book, chapter

RIS2XML
+ add issuance of monographic to book types: book, inbook

XML2BIB
+ The protected latex forms of characters, e.g. {\'A}, are preferred
  to non-protected, e.g. \'A or \'{A}.  So fixup lookup table
  so the preferred forms are output.

XML2RIS
+ better detection of book types via issuance of monographic

SERIALNUMBER
+ split out common serial number processing code

MODSIN
+ fix bug where unicode character set in was not the default

MODSOUT
+ ensure that ambiguous serial numbers are output
+ fix bug where -un/-u flags weren't being respected


3.18
07/11/05

BIB2XML
+ accomodate all entries from the IEEEtrans bibtex style and other requests
  for missing common fields
+ to article reference type add key, location, language, note, keywords
+ to book reference type add key, location, language, note, series,
  volume, number, lccn, keywords
+ to techreport reference type add key, location, language, note, institution,
  number, type, lccn, keywords
+ to inbook reference type add key, location, language, note, lccn, keywords
+ to incollection reference type add key, location, language, note, number,
  chapter, type, lccn
+ to booklet reference type add key, location, note, series, volume, number
  organization, language, lccn
+ to manual reference type add key, location, note, language, organization,
  lccn, keywords
+ to inproceedings/incollection type add key, location, note, language,
  series, number, organization, paper, type, lccn, keywords
+ to proceedings type add key, location, note, language, series, number,
  organization, lccn, keywords
+ to mastersthesis type add key, location, note, language, type, keywords
+ to phdthesis type add key, location, note, languate, type, keywords
+ to mastersthesis type add key, location, note, language, type, keywords
+ to phdthesis type add key, location, note, languate, type, keywords
+ to misc type add key, location, note, language, organization, keywords
+ add unpublished type
+ add electronic type
+ add patent type
+ add periodical type
+ add standard type

XML2BIB
+ fix recognition of collection/incollection types
+ add handling of location information

XML2END
+ output all note fields

MODSIN
+ add physical location to tags read in
+ fix memory leak in modsin_location()
+ fix bug in modsin_descriptionr()
+ keep type="school" information in place entries

MODSOUT
+ handle key field from bibtex


3.17
06/28/05
BIB2XML
+ add series information to incollection type
+ add edition input to types
+ protect URL, DOI, REFNUM fields from being detexified
+ support URLs in "howpublished" tags
+ support \url{} in addition to \urllink{}
+ inbook reference types should use chapter+title, not title+booktitle
+ incollection reference types should use booktitle+title
+ fix bug where spaces in string replacements cause the replacements to
  be misunderstood

COPAC2XML
+ fix but in name mangling and insertion of editors in author fields

ISI2XML
+ fix bug in outputing times cited to note field

RIS2XML
+ add reading user U1-U5 and miscellaneous M1-M3 fields; convert to "notes"
  so they'll be output at least

MODSIN
+ put in the core of handling physicalDescription tags
+ fix bug where files with mods ending and starting on the same line were
  mangled

MODSOUT
+ fix place term output and edition output
+ output all URL information

XML2BIB
+ add edition output
+ protect REFNUM fields from being texified
+ better error messages for misidentified TYPE
+ recognize Masters and Ph.D. thesis types
+ inbook reference types should use chapter+title, not title+booktitle
+ incollection reference types should use booktitle+title
+ fix recognition of genre magazine as ARTICLE

XML2END
+ fix bug in recognizing the thesis type


3.16
4/10/05

GLOBAL CHANGES
+ rename progs directory to bin
+ fix warnings from SunOS compile

BIB2XML
+ add masters thesis type
+ change Ph.D. thesis and Masters thesis to add non-MARC genres
  "Ph.D. thesis" and "Masters thesis" to distinguish

END2XML
+ fix bug where endin_readf() can return 0 even if reference is obtained

XML2BIB
+ don't texify special characters in URLs and DOIs


3.15
3/17/05

GLOBAL CHANGES
+ Convert all programs to use the bibutils library with bibl_read() and
  bibl_write() with appropriate modes.  Massive conversion to a bibutils
  library.
+ Add -o or --output-encoding to xml2bib, xml2end, xml2ris
+ Add -s or --single-refperfile to xml2bib, xml2end, xml2ris
+ Handle all character conversion issues nicely in the library.  Set default
  to Latin-1 (ISO 8859-1), same as web browsers.
+ Move around files to lib/, prog/, and test/ directories; fix top level make
+ Change name of struct newstring to struct newstr for consistency
+ Change cleanf() to take entire bibliographies and not just references in
  preparation for cross-referencing handling in bib2xml


BIB2XML
+ Do a nice job of translating latex codes to Unicode
+ Bump version number to 3.12

COPAC2XML
+ Bump version number to 1.2

END2XML
+ Bump version number to 3.13

ISI2XML
+ Move times cited field to notes
+ Bump version number to 2.5

MED2XML
+ Bump version number to 2.3

RIS2XML
+ Bump version number to 2.11

MODSIN
+ add URL support to identifier type="uri"

XML2BIB
+ Make sure illegal bibtex isn't outputted (including quotes when brackets
  aren't requested), and do a nice job of Unicode to latex.
+ Allow any non-space and non-tab to be output as bibtex key identifiers
+ Add URL support
+ Bump version number to 2.6

XML2END
+ fix output of ISSN/ISBN/URL/etc.
+ Bump version number to 2.3

XML2RIS
+ add number/issue output
+ Bump version number to 2.3

MODSCLEAN
+ Bump version number to 1.1


3.14
2/09/05

GLOBAL CHANGES FOR THE TOMODS CONVERTERS
+ The current programs add an underscore and the reference count to the
  reference id by default.  This is changed so that it only occurs when
  requested using the new -a or --add-refcount flags.
+ Fixed bug where the reference count wasn't used when outputting individual
  files for each reference.  This is, of course, dependent on the -a
  or --add-refcount flags.
+ change --verbose flag to only output warnings
+ add --debug flag for full output useful in hunting down problems
+ Major rewrite of the converters:
     Common framework is in lib/tomods.c
     Variables and unique function pointers defined by struct convert_rules
     Must define readf() to read a single reference from a file
     Must define processf() to convert raw input into tag/data/level in a
         field using native tags
     Define cleanf() or set to NULL to define function to clean up data
         such as LaTeX codes
     Must define convertf() to convert native tag/data/level elements into
         those appropriate for MODS XML output.

BIB2XML
+ add URL to list of recognized bibtex entries
+ bump version number to 3.11

COPAC2XML
+ bump version number to 1.1

END2XML
+ fix bug in magazine article that misplaced article title
+ fix bug that lost track of reference type information
+ bump version number to 3.12

ISI2XML
+ parse multiple keywords placed under same tag
+ bump version number to 2.4

MED2XML
+ bump version number to 2.2

RIS2XML
+ bump version number to 2.10

3.13
12/15/04

COPAC2XML
+ write first version of program

ISI2XML
+ fix bugs in handling multi-author references
+ bump version number to 2.3

END2XML
+ clean up some left over references to RIS
+ fix incrementing in waslast_tag()
+ bump version number to 3.11


3.12
11/22/04

BIB2XML
+ add support for FTP = {\urllink{http://online.ref.com}}
+ add support for TITLE = {\href{http://online.ref.com}Real Title}
+ add conversion for latex encodings character into unicode; also fixes some
  processing bugs due to names with a diaresis
+ add support for reading in digital object identifier (doi)
+ add unpublished type (and "new" genre type in MODS)
+ add proceedings type
+ add misc type
+ bump version number to 3.10

END2XML
+ switch order of "Book" and "Book Section" now that the Refer-format
  handling introduced a bug that caused both to be recognized as Book
+ bump version number to 3.10

MED2XML
+ silence compile warnings
+ pass digital object identifier (doi) information to MODS
+ bump version number to 2.1

XML2BIB
+ fix command line parsing
+ pass digital object identifier (doi) output to bibtex
+ add unpublished and misc types to output
+ bump version number to 2.5

XML2END
+ fix help message
+ bump version number to 2.2

MAKEFILE
+ fix typo in "make install" target
+ repair loss of med2xml in makefile


3.11
9/29/04

BIB2XML
+ re-write bibtex parser to handle references with missing or empty
  reference ids
+ use common title mangling
+ support table of contents
+ bump version number to 3.9

END2XML
+ use common title mangling
+ bump version number to 3.9

ISI2XML
+ use common title mangling
+ bump version number to 2.2

RIS2XML
+ use common title mangling
+ bump version number to 3.9

MODSCLEAN
+ verson 1.0 of the program

XML2BIB
+ fix bug where -fc/--final-comma isn't removed from argument list
+ merge corporate and non-corporate authors/editors into same bibtex line
+ support table of contents data
+ fix distinction between PROCEEDINGS and INPROCEEDINGS data types
+ bump version number to 2.4

MODSIN
+ make role="creator" equivalent to role="author" to handle LOC input
+ support table of contents data

MODSOUT
+ support table of contents data

TITLE
+ merge all copies of title mangling into library

XML
+ properly handle XML comments in files


3.10
09/23/04

BIB2XML
+ add explicit fflushes to try and help python deadlocks
+ bump version number to 3.8

END2XML
+ add explicit fflushes to try and help python deadlocks
+ fix typo in "Conference Proceedings" type
+ bump version number to 3.8

ISI2XML
+ handle processing of names with and without commas properly
+ bump version number to 2.1

MED2XML
+ write MODS version of converter
+ set version to 2.0

RIS2XML
+ handle processing of names with and without commas properly
+ bump version number to 2.8

XML2BIB
+ output author/year combo when REFNUM is not already defined
+ add keyword, abstract, note to output
+ bump version number to 2.3

MODSIN
+ fix merging of placeTerm when both by code and by text are present

MODSOUT
+ add explicit fflushes to try and help python deadlocks

NAME
+ merge all functions for name mangling into library


3.9
09/01/04

BIB2XML
+ convert "." to ". " in names so that names like G.P. Smith don't lose
  information
+ bump version number to 3.7

END2XML
+ modify parser so that refer-style bibliographies are handled naturally
+ convert "." to ". " in names so that names like G.P. Smith don't lose
  information
+ bump version number to 3.7

ISI2XML
+ write new MODS version
+ bump version number to 2.0

RIS2XML
+ use newstr_trimendingws
+ convert "." to ". " in names so that names like G.P. Smith don't lose
  information
+ bump version number to 2.7

XML2BIB
+ add corporate authors/editors to output
+ bump version number to 2.2

XML2RIS
+ add corporate authors/editors to output
+ bump version number to 2.2

MODSIN
+ convert numeric month to name
+ handle multiple roles per person
+ prevent unnecessary decents through the XML tree structure
+ fix core dump in modsin_detailr due to copy/paste bug
+ fix role processing in corporation names

MODSOUT
+ some code cleanups
+ if a reference ID cannot be found, first try to output one based
  on the first author and four-digit year and refnum, eg. Jones2000_123,
  and then default to a ref#### ID

NEWSTR
+ add newstr_trimendingws

XML
+ fix identification of tags like &lt;title/&gt; that scrambled the XML
  hierarchy


version 3.8
07/29/04

XML2BIB
+ fix bug in command line parsing
+ fix bug where ending commas are missing
+ add periods after abbreviated given names
+ bump version number to 2.1

XML2END
+ add periods after abbreviated given names
+ bump version number to 2.1

XML2RIS
+ add periods after abbreviated given names
+ bump version number to 2.1

MODSIN
+ handle pages either as details or extents

MODSOUT
+ fix bug where empty names were output
+ if given names are abbreviations, e.g. "A. B. Jones", drop periods
+ write out single pages as details, not extents


version 3.7
07/26/04

BIB2XML
+ fix bug where multi-line authors w/o trailing spaces were merged
+ add publisher and address fields to book and report types
+ add/fix genre output to many reference types
+ add support for given name separation for MODSOUT
+ add issue field to article type
+ bump version number to 3.6

END2XML
+ add support for given name separation for MODSOUT
+ add/fix genre output to many reference types
+ fix core dump on empty input
+ bump version number to 3.6

RIS2XML
+ add support for given name separation for MODSOUT
+ handle case where last reference in file is missing end tag
+ add/fix genre/typeOfResource output to many reference types
+ bump version number to 2.6

XML2BIB
+ write first MODS version of the program
+ bump version number to 2.0

XML2END
+ write first MODS version of the program
+ bump version number to 2.0

XML2RIS
+ write first MODS version of the program
+ bump version number to 2.0

FIELDS
+ add function fields_maxlevel()

MODSOUT
+ add support for separating each part of the given name to a separate
  namePart construct
+ write out given names before family name
+ ensure that both start and end elements are written when page
  extents are output

NEWSTRING
+ add newstr_toupper(), newstr_prepend() functions

version 3.6
6/1/04

BIB2XML
+ bump version number to 3.5

END2XML
+ bump version number to 3.5

RIS2XML
+ clean up reference parsing loop as per end2xml from bibutils v 2.16
+ fix missing break statement in process_cite that put titles into dates
+ move abstracts marked by "N2" into the main record, not host
+ bump version number to 2.5

MODSOUT
+ move part element of relatedItems to the very last element outputted
  (needs to be after identifier and .xsd would suggest that it should be
  the last item)

version 3.5

BIB2XML
+ clean up name processing
+ add corporation recognition for names
+ add -c, --corporation-file to input corporation names
+ add genre type periodical to journal articles
+ bump version number 3.4

END2XML
+ add genre type periodical to journal articles
+ add genre type periodical to magazines
+ add genre type thesis to thesis
+ fix read_refs() to not require leading %0 as per version 2.16
+ use fields_init()
+ clean up name processing
+ add -c, --corporation-file to  input corporation names
+ bump version number 2.5

RIS2XML
+ add genre type periodical to journal articles
+ clean up name processing
+ add corporation recognition for names
+ add -c, --corporation-file to input corporation names
+ bump version number 2.4

MODSOUT
+ separate genre output into own function, have it automatically detect
  genre terms under the "marc authority", make sure genre type is properly
  unicode formated, allow multiple genres to be output per level of 
  reference
+ separate typeofResource output into own function, and have it make sure
  that output matches the legal values, generate error if it doesn't
+ handle corporation name output

version 3.4
1/31/04

BIB2XML
+ add "?" as title/subtitle separator like ":"
+ bump version to 3.3

END2XML
+ add "?" as title/subtitle separator like ":"
+ bump version to 2.4

RIS2XML
+ do some reference type/tag additions
+ fix bug where titles weren't being put in output
+ add "?" as title/subtitle separator like ":"
+ bump version to 2.3

MODSOUT
+ fix shorttitle output so that if long version has subtitle,
  shorttitle is always output...otherwise only output if
  shorttitle is different than long title

version 3.3
1/24/04

END2XML
+ correct typeOfResource "software" to "software, multimedia"
+ have shorttitles terminate at colons
+ bump version to 2.3

MODOUTS
+ allow single and double quotes to be placed directly in output

version 3.2
1/22/04

BIB2XML
+ add -un/--unicode-no-bom option for writing unicode w/o adding the
  byte order mark at the beginning of the file
+ assign dates in part and in dateIssued by reference type
+ bump version to 3.2

END2XML
+ add -un/--unicode-no-bom option for writing unicode w/o adding the
  byte order mark at the beginning of the file
+ fix LEVEL_HOST/LEVEL_MAIN mismatches for reference types
+ assign dates in part and in dateIssued by reference type
+ bump version to 2.2

RIS2XML
+ add -un/--unicode-no-bom option for writing unicode w/o adding the
  byte order mark at the beginning of the file
+ assign dates in part and in dateIssued by reference type
+ bump version to 2.2

MODSOUT
+ convert to proper UTF-8 output
+ put "ref" in front of all numeric ID cite key for compliance with
  MODS DTD "rules"
+ protect mods ID from output illegal characters and IDs that start
  with non-alphanumerics
+ fix over-zealousness of fields_find()
+ distinguish between dates that fall in &lt;part&gt; and those
  in &lt;dateIsssued&gt;


version 3.1
1/21/04

BIB2XML
+ add -d/--drop-key option
+ bump version to 3.1

END2XML
+ add -d/--drop-key option
+ fix loss of year output for newspaper article type
+ fix moving picture/moving image issue for film type
+ bump version to 2.1

RIS2XML
+ add -d/--drop-key option
+ bump version to 2.1

MODSOUT
+ fix bug where part is output in main level
+ add mods ID for cite key, controllable by -d/--drop-key

version 3.0
1/20/04

BIB2XML
+ new version 3.0

END2XML
+ new version 2.0

RIS2XML
+ new version 2.0