File: ChangeLog

package info (click to toggle)
libidn2 2.0.5-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 28,032 kB
  • sloc: ansic: 35,007; sh: 6,422; makefile: 339; perl: 76; xml: 30; sed: 16
file content (2573 lines) | stat: -rw-r--r-- 74,645 bytes parent folder | download
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
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2018-05-18 Tim Rühsen <tim.ruehsen@gmx.de>
     Update release date in NEWS

2018-05-16 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix configure.ac for older versions of gtk-doc

2018-05-15 Nikos Mavrogiannopoulos <nmav@redhat.com>
     NEWS: corrected typo [ci skip]
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2018-05-15 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: document new flags and behavior
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2018-05-14 Nikos Mavrogiannopoulos <nmav@redhat.com>
     configure.ac: bumped version to 2.0.5
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2018-05-12 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     apply TR#46 non-transitional processing by default
     
     This switches the default library behavior from "pure" IDNA2008
     to IDNA2008 + non-transitional processing. This can be API and
     ABI break for certain applications which intentionally needed
     the non amended IDNA2008.  It is done in the interest of interoperability
     based on the fact that this is what most application writers care about
     rather than strict compliance with a particular protocol.
     
     Resolves #49
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2018-05-06 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     introduced flag to disable TR46 processing
     
     These introduce flag IDN2_NO_TR46 which can be used by applications
     to explicitly disable TR46 processing which is now the default option.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2018-05-12 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     tests: removed IdnaTest.inc as it is generated from txt
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2018-05-11 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     gen-utc-test.pl: skip lines which would have generated empty tests
     
     Resolves #50
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2018-04-13 Tim Rühsen <tim.ruehsen@gmx.de>
     Add gnulib module getopt-gnu

2018-03-31 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix 'make check-valgrind'

2018-03-31 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix linking of libunistring
     
     The fix allows to link libunistring with rpath, e.g. when installing
     an own version in /usr/local for testing, this will be linked to
     the fuzzers and linkers. Before this fix, the system installed version
     was linked.

2018-03-31 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix uninitialized var in src/idn2.c

2018-03-23 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: corrected typo

2018-03-22 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     doc: updated idn2 command line options

2018-03-22 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     documentation clarifications
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2018-03-21 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     idn2_to_ascii: clarified documentation on default flags [ci skip]
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2018-03-21 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     doc: mention that stringprep is not included and obsolete
     
     Provide an advice on what applications requiring stringprep should do,
     and what new applications which require similar processing should do.
     
     Resolves #28
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2018-03-21 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     README.md: the homepage of libidn2 is de facto the gitlab site and the manual
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2018-03-19 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     documented changes since 2.0.4 [ci skip]

2018-03-16 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     abi-check target was updated to check against the previous release
     
     As abi-dumper and abi-compliance-checker tools are not always reliable
     when run across systems, we compare the previous tag ABI with the current
     compiled library.
     
     Resolves #42

2018-03-16 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     Revert "Update abi-compliance-checker dump files"
     
     This reverts commit 65513357cabdb8911d05c0ff5d10ff3fb2f8d575.

2018-03-16 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     Revert "Remove abi-compliance-check from Gitlab CI"
     
     This reverts commit a620d7dbaf83526e31449ad8529d929a302ff7da.

2018-03-16 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix memleak in idn2_to_unicode_8zlz()

2018-03-16 Tim Rühsen <tim.ruehsen@gmx.de>
     Return error (IDN2_ICOV_FAIL) on charset conversion errors

2018-02-18 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix idn2 --nostd3asciirules to --usestd3asciirules

2018-02-08 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix STD3 ASCII rules

2018-02-02 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix --disable-doc configure option

2017-12-16 Tim Rühsen <tim.ruehsen@gmx.de>
     Use fedora27 image in .gitlab-ci.yml

2017-12-16 Tim Rühsen <tim.ruehsen@gmx.de>
     Remove abi-check from dist-hook

2017-12-16 Tim Rühsen <tim.ruehsen@gmx.de>
     Remove abi-compliance-check from Gitlab CI

2017-12-16 Tim Rühsen <tim.ruehsen@gmx.de>
     syntax-check: Use $(PATH_SEPARATOR) in Makefile.am

2017-12-16 Tim Rühsen <tim.ruehsen@gmx.de>
     Update abi-compliance-checker dump files

2017-12-16 Tim Rühsen <tim.ruehsen@gmx.de>
     Let 'make abi-check' fail early

2017-12-16 Tim Rühsen <tim.ruehsen@gmx.de>
     Let ./bootstrap download latest translations (.po files)

2017-12-04 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     libidn2.texi: document the IDN2_USE_STD3_ASCII_RULES transition

2017-11-26 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix idn_free to idn2_free in test-lookup.c

2017-09-04 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix abi-check and abi-dump make targets

2017-09-04 Tim Rühsen <tim.ruehsen@gmx.de>
     Add ABI infos for 2.0.3 and 2.0.4

2017-08-31 Tim Rühsen <tim.ruehsen@gmx.de>
     Check for gtk-doc

2017-08-31 Tim Rühsen <tim.ruehsen@gmx.de>
     Improve .gitignore

2017-08-31 Tim Rühsen <tim.ruehsen@gmx.de>
     gtk-doc: Remove auto-generated files from repository

2017-08-30 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix sanitizer run

2017-08-30 Tim Rühsen <tim.ruehsen@gmx.de>
     Remove /libidn2.info from CLEANFILES

2017-08-30 Tim Rühsen <tim.ruehsen@gmx.de>
     Use  instead make in cfg.mk

2017-08-30 Tim Rühsen <tim.ruehsen@gmx.de>
     Add --enable-gtk-doc-pdf to automatic configure runs

2017-08-30 Tim Rühsen <tim.ruehsen@gmx.de>
     Prepare release

2017-08-30 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix generating idn2.1

2017-08-28 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix gitlab yaml

2017-08-28 Tim Rühsen <tim.ruehsen@gmx.de>
     Add config.log to CI artifacts

2017-08-28 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix idna_free() to idn_free()

2017-08-08 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: document the idn2_flags in functions using them

2017-08-08 Nikos Mavrogiannopoulos <nmav@redhat.com>
     README.md: corrected typo

2017-08-01 Tim Rühsen <tim.ruehsen@gmx.de>
     Update fuzzer corpora

2017-08-01 Tim Rühsen <tim.ruehsen@gmx.de>
     lib/puny_decode: Fix integer overflow (found by fuzzing)

2017-08-01 Tim Rühsen <tim.ruehsen@gmx.de>
     lib/bidi: Fix integer overflow (found by fuzzing)

2017-08-01 Tim Rühsen <tim.ruehsen@gmx.de>
     * fuzz/README.md : Add -fsanitize=undefined,integer,nullability to CFLAGS

2017-07-28 Tim Rühsen <tim.ruehsen@gmx.de>
     Don't check for ronn and makeinfo in bootstrap.conf
     
     Ronn is not packaged for every distribution.
     And maybe someone doesn't want to build the docs at all.

2017-07-28 Tim Rühsen <tim.ruehsen@gmx.de>
     Add --disable-gcc-warnings to DISTCHECK_CONFIGURE_FLAGS

2017-07-28 Tim Rühsen <tim.ruehsen@gmx.de>
     Move check for ronn and makeinfo into bootstrapi.conf

2017-07-28 Tim Rühsen <tim.ruehsen@gmx.de>
     Split punycode.c into encoding/decoding

2017-07-28 Tim Rühsen <tim.ruehsen@gmx.de>
     Update fuzz corpora

2017-07-26 Tim Rühsen <tim.ruehsen@gmx.de>
     Improve fuzzing

2017-07-24 Tim Rühsen <tim.ruehsen@gmx.de>
     Fuzzing reworked

2017-07-24 Tim Rühsen <tim.ruehsen@gmx.de>
     Prepare release

2017-07-22 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     gnulib: updated to latest master

2017-07-21 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix docs for IDN2_USE_STD3_ASCII_RULES and IDN2_INVALID_FLAGS

2017-07-19 Tim Rühsen <tim.ruehsen@gmx.de>
     Remove tests/*.c from coverage report

2017-07-19 Nikos Mavrogiannopoulos <nmav@redhat.com>
     .gitlab-ci.yml: added test rule for pages

2017-07-19 Tim Rühsen <tim.ruehsen@gmx.de>
     Remove GTKDOC test

2017-07-19 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix coverage build

2017-07-19 Tim Rühsen <tim.ruehsen@gmx.de>
     Disable gtk-doc for make distcheck on CIs

2017-07-19 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix C++ build errors

2017-07-17 Tim Rühsen <tim.ruehsen@gmx.de>
     TR46: Disable STD3 ASCII rules by default

2017-07-18 Tim Rühsen <tim.ruehsen@gmx.de>
     Move check for makeinfo to configure.ac

2017-07-18 Tim Rühsen <tim.ruehsen@gmx.de>
     Revert "Check for 'gengetopt' in configure run"
     
     This reverts commit 80696f6d0a9946c2fa73177ec0292e63709d1d79.

2017-07-18 Tim Rühsen <tim.ruehsen@gmx.de>
     Check for gengetopt and makeinfo in bootstrap.conf

2017-07-18 Tim Rühsen <tim.ruehsen@gmx.de>
     Document func/param attributes in idn2.h.in

2017-07-18 Simon Josefsson <simon@josefsson.org>
     Doc fixes.

2017-07-17 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix space-tab sequence in gtk-doc.make

2017-07-17 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix links for git and perl in CONTRIBUTING.md

2017-07-17 Simon Josefsson <simon@josefsson.org>
     Bump version.

2017-07-17 Simon Josefsson <simon@josefsson.org>
     Mention abi-compliance-checker.

2017-07-17 Tim Rühsen <tim.ruehsen@gmx.de>
     Reference 'ronn' in CONTRIBUTING.md

2017-07-17 Tim Rühsen <tim.ruehsen@gmx.de>
     Check for 'gengetopt' in configure run

2017-07-17 Tim Rühsen <tim.ruehsen@gmx.de>
     Check for ronn if doc build is requested

2017-07-17 Simon Josefsson <simon@josefsson.org>
     Fix gtk-doc more.

2017-07-17 Simon Josefsson <simon@josefsson.org>
     Doc fixes.

2017-07-17 Simon Josefsson <simon@josefsson.org>
     Fix upstream bugs.

2017-07-17 Simon Josefsson <simon@josefsson.org>
     Modernize gtk-doc building.

2017-07-17 Simon Josefsson <simon@josefsson.org>
     Update from gnulib.

2017-06-19 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     README.md: updated to no longer refer to libidn [ci skip]
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-06-07 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     manual: removed trailing space
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-06-07 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     manual: updated intro
     
     Added URI of libidn2 hosting, and removed text on being used extensively
     (no longer the case). Reformatted the references to RFCs as an itemized
     list.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-05-06 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: updated documentation on IDNA2003 fallback
     
     The example provided only falls back to IDNA2003 if there are
     disallowed characters in the IDNA2008 set. That follows the
     behavior used in curl.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-04-28 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: document Tim's backwards compatible construction
     
     This introduces text allowing to operate like browsers like
     firefox do.
     
     Relates: #28
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-04-27 Tim Rühsen <tim.ruehsen@gmx.de>
     contrib/release: Fix contributor list creation [skip ci]

2017-04-27 Tim Rühsen <tim.ruehsen@gmx.de>
     NEWS: Update release date

2017-04-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Gitlab CI: Split Debian runner

2017-04-27 Tim Rühsen <tim.ruehsen@gmx.de>
     fuzz/main.c: Exlude from sc_require_config_h and sc_require_config_h_first

2017-04-27 Tim Rühsen <tim.ruehsen@gmx.de>
     idn2.h: Don't use symbols from config.h

2017-04-26 Tim Rühsen <tim.ruehsen@gmx.de>
     ABI-Check: Fix for gtk-doc

2017-04-26 Tim Rühsen <tim.ruehsen@gmx.de>
     Prepare release

2017-04-26 Tim Rühsen <tim.ruehsen@gmx.de>
     Docs: Fix several gtk-doc warnings

2017-04-26 Tim Rühsen <tim.ruehsen@gmx.de>
     contrib/release: Update script [skip ci]

2017-04-25 Tim Rühsen <tim.ruehsen@gmx.de>
     Travis CI: Initial commit

2017-04-25 Tim Rühsen <tim.ruehsen@gmx.de>
     Makefile.am: Do not use TMPDIR and TMPFILE
     
     Reassigning TMPDIR may cause havoc with build tools that
     use it for temporary files/directories,  like 'ar' on OSX.
     
     Reported-by: Dominyk Tiller

2017-04-24 Tim Rühsen <tim.ruehsen@gmx.de>
     lib/idna.c (_idn2_ascii_p): Quick return on false

2017-04-24 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix TR46 transitional
     
     Transitional label processing accidentally went through IDNA 2008
     tests. That made lookup functions fail on disallowed characters, that
     are allowed regarding IDNA 2003.
     The only transitonal test cases we had just covered 'deviation'
     codepoints, e.g. german sharp s. This patch also adds a non-deviation
     codepoint to the tests.
     
     Reported-by: Daniel Stenberg
     Closes #25

2017-04-23 Tim Rühsen <tim.ruehsen@gmx.de>
     fuzz: Fix memleak in idn2_to_unicode_8z8z_fuzzer

2017-04-23 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     doc: clarify expected input and output forms in examples
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-04-23 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     doc: improved text on converting from libidn
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-04-23 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     doc: corrected typo
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-04-23 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     README.md: switched download site to ftp.gnu.org
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-04-22 Tim Rühsen <tim.ruehsen@gmx.de>
     Prepared release

2017-04-22 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     doc: do not utilize the NFC_INPUT flag on examples
     
     That flag is implicitly enabled in non-transitiional
     encoding.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-04-07 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: added value assignment in conversion example

2017-04-07 Tim Rühsen <tim.ruehsen@gmx.de>
     * src/Makefile.am: Do not install idn2_noinstall

2017-04-06 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: include code snippets instead of just functions in compatibility section

2017-04-06 Nikos Mavrogiannopoulos <nmav@redhat.com>
     texinfo.css: improved HTML presentation

2017-04-06 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: improved documentation on switching from libidn

2017-04-04 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     doc: fixed version in idn2_to_unicode functions

2017-04-04 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     idn2_to_ascii: corrected documentation
     
     These functions were documented as equivalent to idn2_lookup_ul()
     with %IDN2_NONTRANSITIONAL and %IDN2_NFC_INPUT flags, however was
     not the case.
     
     The idna_to_ascii functions were setting these flags by default.

2017-04-04 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     examples: use non-transitional IDNA2008

2017-04-02 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     idn2: enable TR#46 non-transitional processing by default
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-04-02 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     idn2: use idn2_to_ascii_lz instead of idn2_lookup_ul
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-04-03 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix contrib/release script [skip ci]

2017-03-29 Tim Rühsen <tim.ruehsen@gmx.de>
     Prepare for release

2017-03-29 Tim Rühsen <tim.ruehsen@gmx.de>
     ChangeLog: Create with 'git log'

2017-03-28 Nikos Mavrogiannopoulos <nmav@redhat.com>
     configure: replace simon@josefsson.org by help-libidn@gnu.org
     
     Resolves #21
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-28 Tim Rühsen <tim.ruehsen@gmx.de>
     Add automatic version defines for idn2.h

2017-03-28 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: added section on converting from libidn
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-17 Tim Rühsen <tim.ruehsen@gmx.de>
     Add contrib/release script [ci skip]

2017-03-25 Tim Rühsen <tim.ruehsen@gmx.de>
     README.md: Fix mentioning INSTALL

2017-03-24 Nikos Mavrogiannopoulos <nmav@redhat.com>
     m4: added ax_prog_cc_for_build.m4
     
     This allows compiling the library from repository without requiring
     autoconf-archive package being installed.
     
     Resolves #19
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-23 Nikos Mavrogiannopoulos <nmav@redhat.com>
     README.md: added section on cross-compiling
     
     Resolves #8
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-20 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     .gitlab-ci.yml: introduced a -Werror build in Debian build
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-03-19 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     gnulib: use local submodule from gitlab
     
     This will allow faster checkouts on CI
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-03-19 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     CONTRIBUTING.md: added git2cl and ronn dependencies
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-03-19 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     Automatically generate changelog on make dist
     
     Resolves #15
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-03-19 Tim Rühsen <tim.ruehsen@gmx.de>
     Check malloc() return value in _tr46()

2017-03-17 Tim Rühsen <tim.ruehsen@gmx.de>
     Change several http:// links to https://

2017-03-17 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     doc: set default encoding of manual to be utf-8
     
     This allows printing UTF-8 characters from .c files.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-03-17 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: improved intro section
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-17 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: added examples for ToASCII and ToUnicode operations
     
     Also listed all the major new functions at the introduction.
     The examples brought, bring the library in par with libidn
     documentation, allowing one to switch easily, but also use
     UTF-8 input and output by default. There is no point to promote
     the locale encoded version of the functions, as UTF-8 is today
     used ubituously.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-17 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: added Since version tag in functions

2017-03-17 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: added description for idn2_to_unicode functions
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-17 Nikos Mavrogiannopoulos <nmav@redhat.com>
     README.md: removed copyright information and extended description
     
     The copyright information in the README file were a distraction from
     reading the text (were as long as the previous text), and were not
     accurate anyway. Extended the description to include more information
     on the library and the libidn compatibility.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-17 Tim Rühsen <tim.ruehsen@gmx.de>
     Update AUTHORS

2017-03-17 Nikos Mavrogiannopoulos <nmav@redhat.com>
     README.md: build badge points to pipelines page [ci skip]
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-17 Nikos Mavrogiannopoulos <nmav@redhat.com>
     Revert "README.md: build badge points to pipelines page [ci skip]"
     
     This reverts commit 91c091490a8efe6090d37ad8acb5a08a1e355e9a.

2017-03-17 Nikos Mavrogiannopoulos <nmav@redhat.com>
     README.md: build badge points to pipelines page [ci skip]
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-17 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: updated idn2 commands in manual
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-17 Nikos Mavrogiannopoulos <nmav@redhat.com>
     configure.ac: bumped version to 2.0
     
     Relates #12
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-17 Nikos Mavrogiannopoulos <nmav@redhat.com>
     CONTRIBUTING.md: recommend using merge requests for patches
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-17 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc update
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-17 Nikos Mavrogiannopoulos <nmav@redhat.com>
     doc: generate the idn2 man-page using ronn
     
     That is, no longer use help2man and ship a markdown version
     of the manual. The manual page is generated from markdown
     using ronn.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-17 Tim Rühsen <tim.ruehsen@gmx.de>
     docs: Deploy libidn2 manual

2017-03-17 Tim Rühsen <tim.ruehsen@gmx.de>
     README.md: Add link to online coverage report and API docs [ci skip]

2017-03-17 Tim Rühsen <tim.ruehsen@gmx.de>
     docs: Deploy HTML docs [ci skip]

2017-03-17 Tim Rühsen <tim.ruehsen@gmx.de>
     Add Coverity badge

2017-03-17 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     valgrind: use suppressions file by default
     
     Also introduce an initial suppressions file to ignore unistring
     issues.
     
     Resolves #11
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-03-17 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     tests: enable run under valgrind by using LOG_COMPILER
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-03-17 Tim Rühsen <tim.ruehsen@gmx.de>
     CI: Merge Debian runners

2017-03-16 Mike Frysinger <vapier@gentoo.org>
     fix IdnaTest.inc generation w/out of tree builds
     
     The current rule will always look for IdnaTest.txt in the current
     directory (and output IdnaTest.inc to the current directory).
     When doing an out-of-tree build, the Makefile (via vpaths) will
     find the source files, but when the rule runs, it won't.  Change
     the rules to use automatic makefile variables so it can deal with
     srcdir/builddir dynamically.
     
     It does mean that always write IdnaTest.txt to the builddir and
     not the sourcedir, but I think that's what the code intends.
     When doing a `make dist`, it'll source the right file and save
     it to the right place in the tarball.

2017-03-16 Tim Rühsen <tim.ruehsen@gmx.de>
     pages: simplified

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     Coverage: Test code coverage as artifact

2017-03-16 Tim Rühsen <tim.ruehsen@gmx.de>
     Update gnulib

2017-03-16 Tim Rühsen <tim.ruehsen@gmx.de>
     Add gentr46map.c to EXTRA_DIST

2017-03-15 Mike Frysinger <vapier@gentoo.org>
     fix up tr46map_data.c generation
     
     Make the gentr46map handling consistent regardless of cross-compiling,
     and improve things so we regenerate the source file only when needed.

2017-03-15 Nikos Mavrogiannopoulos <nmav@redhat.com>
     gentr46map: initialize variable to avoid clang warning
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-15 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     gentr46map: added mem allocation check to eliminate clang analyzer warning
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-03-15 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     lib: removed dead assignment (found by clang)
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-03-14 Nikos Mavrogiannopoulos <nmav@redhat.com>
     .gitlab-ci.yml: added clang static analyzer run
     
     This will allow catching issues that can be detected with
     a static analyzer.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-14 Nikos Mavrogiannopoulos <nmav@redhat.com>
     .gitlab-ci.yml: Added centos7 build
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-14 Nikos Mavrogiannopoulos <nmav@redhat.com>
     idn2: localcharset is a unistring header
     
     This fixes builds in Centos7.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     tests: Fix -Wpointer-sign

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     tests: Fix -Wunused-parameter

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     tests: Fix gcc-7 -Wformat-truncation=

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     Add assert.h to tests/repro-common.h

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     syntax-check: Remove #ifdef HAVE_CONFIG_H

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     lib/tr46map.c: Add empty line after config.h

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     syntax-check: Add lib/gentr46map.c to config.h excludes

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     syntax-check: Remove trailing space

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     syntax-check: Remove empty lines at EOF

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     syntax-check: Remove assert.h from tests/repro*.c

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     syntax-check: Add tests/.*interesting.* to excludes

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     CI: Make syntax-check and distcheck

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     gentr46map: Fix clang analyzer warning

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     gentr46map: Remove gnulib dependency

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     gentr46map: Replace getline() by fgets()

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     gentr46map: Remove errno.h dependency

2017-03-15 Tim Rühsen <tim.ruehsen@gmx.de>
     gentr46map: Remove libunistring dependency

2017-03-14 Tim Rühsen <tim.ruehsen@gmx.de>
     doc: fix idn2.1 cross-compile build

2017-03-14 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix lib/Makefile.am

2017-03-14 Tim Rühsen <tim.ruehsen@gmx.de>
     Remove make target check-coverage

2017-03-14 Tim Rühsen <tim.ruehsen@gmx.de>
     Rewrite and simplify BIDI check

2017-03-14 Tim Rühsen <tim.ruehsen@gmx.de>
     Cross-compile check for building gentr46map

2017-03-14 Tim Rühsen <tim.ruehsen@gmx.de>
     tr46map: Amend for better cross-compilation experience

2017-03-14 Nikos Mavrogiannopoulos <nmav@redhat.com>
     README: switched repositories to libidn/libidn2
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-14 Nikos Mavrogiannopoulos <nmav@redhat.com>
     Added gnulib as submodule
     
     This prevents breakages of gnulib to be propagated to the libidn2
     project.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-14 Tim Rühsen <tim.ruehsen@gmx.de>
     configure.ac: Add better support for cross-compiling

2017-03-14 Tim Rühsen <tim.ruehsen@gmx.de>
     Docs: Skipp making idn2.1 when cross-compiling

2017-03-13 Tim Rühsen <tim.ruehsen@gmx.de>
     .gitignore: Add files and dirs

2017-03-13 Tim Rühsen <tim.ruehsen@gmx.de>
     fuzz: Format *.cc, add TR46 testing

2017-03-10 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     Added coverage run in CI
     
     That "make local-code-coverage-output" will output the percentage
     of lines of code covered by the test suite.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-03-10 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     configure: Add a code coverage option
     
     Configure with:
       ./configure --enable-code-coverage
     Show coverage output with:
       make && make check && make code-coverage-capture
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-03-10 Nikos Mavrogiannopoulos <nmav@redhat.com>
     tests: added initial corpus of test cases for reproducers
     
     Although these do not actually cause an issue, they do provide
     coverage of the parsers. This is currently not included in the
     distribution but only in the repository.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-09 Nikos Mavrogiannopoulos <nmav@redhat.com>
     fuzz: added manually run fuzzers for basic functions of the library
     
     These fuzzers are modeled in a way to be run either in oss-fuzz
     project (which uses libfuzzer) or using AFL with the wrapper in main.c.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-09 Nikos Mavrogiannopoulos <nmav@redhat.com>
     tests: added tools to reproduce issues found by fuzzers
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-03-03 Michael Haubenwallner <michael.haubenwallner@ssi-schaefer.com>
     drop needless ssize_t cast, would need sys/types.h

2017-02-28 Nikos Mavrogiannopoulos <nmav@redhat.com>
     .gitlab-ci.yml: use pre-build images for CI
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-02-27 Tim Rühsen <tim.ruehsen@gmx.de>
     README.md: Use HTTPS ifor license link

2017-02-27 Tim Rühsen <tim.ruehsen@gmx.de>
     CONTRIBUTING.md: Use HTTPS where possible

2017-02-27 Nikos Mavrogiannopoulos <nmav@redhat.com>
     CONTRIBUTING.md: fixed typos
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-02-27 Nikos Mavrogiannopoulos <nmav@redhat.com>
     README.md: introduced dependencies section
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-02-26 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     CONTRIBUTING.md: added section on test suite
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-26 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     converted main documents to markdown

2017-02-25 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     tests: test-register: added several casts to silence warnings in windows build
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-25 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     .gitlab-ci.yml: enabled make check in mingw build
     
     Also added the iconv package into installed packages. We require
     iconv to be able to convert from locale to unicode.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-26 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     use the GL macros to mark internal functions as const or pure
     
     We don't use the macros from idn2.h because this header file is
     not universally included.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-26 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     idn2.h: Introduced macros to mark pure and constant functions
     
     That is, the macros _IDN2_ATTRIBUTE_PURE and _IDN2_ATTRIBUTE_CONST.
     The functions marked currently are idn2_strerror(), idn2_strerror_name(),
     as constant, and idn2_check_version() as pure.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-26 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     error.c: improved bindtextdomain macro
     
     We don't check the error code of the function, thus the dummy
     replacement shouldn't define an error code. That removes a compiler
     warning for statement without effect.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-25 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     configure: enable gcc warnings by default
     
     Also enable warnings on sign-conversion.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-25 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     lib: eliminated several sign-conversion related warnings
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-26 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     README: update documentation on iconv
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-25 Tim Rühsen <tim.ruehsen@gmx.de>
     tests: test-lookup.c: Fix error msgs and wchar_t portability

2017-02-20 Nikos Mavrogiannopoulos <nmav@redhat.com>
     .gitlab-ci.yml: use libasan3 in debian testing
     
     The previously used libasan2 is no longer available.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-02-20 Nikos Mavrogiannopoulos <nmav@redhat.com>
     document changes in 0.17

2017-02-20 Simon Josefsson <simon@josefsson.org>
     Doc fix.

2017-02-15 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix docs

2017-02-15 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix 'make syntax-check'

2017-02-15 Tim Rühsen <tim.ruehsen@gmx.de>
     Remove trailing empty lines from lib/Makefile.am

2017-02-15 Tim Rühsen <tim.ruehsen@gmx.de>
     Remove gl/version-etc.c from po/POTFILES.in as syntax-check suggests

2017-02-15 Tim Rühsen <tim.ruehsen@gmx.de>
     Update bootstrap from gnulib/build-aux/

2017-02-15 Tim Rühsen <tim.ruehsen@gmx.de>
     Set source_bae in bootstrap.conf

2017-02-15 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix path in po/POTFILES.in

2017-02-13 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     .gitlab-ci.yml: added MinGW64 build
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-14 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     renamed idn2/ subdir to lib/
     
     This makes apparent the location of the actual library.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-14 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     unistring: avoid including twice the posix-malloc module
     
     This allows compiling in systems which do require the posix-malloc,
     but conflict on gnulib symbols as they are available both in
     libgnu and libunistring.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-14 Nikos Mavrogiannopoulos <nmav@redhat.com>
     lib renamed to gl
     
     This better distinguishes the gnulib library from the main
     IDN2 library.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-02-14 Nikos Mavrogiannopoulos <nmav@redhat.com>
     configure: building documentation can be skipped
     
     This allows building on systems without texinfo.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-02-14 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     unistring library will be included if it is not installed
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-14 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     Moved IDN2 files in idn2 subdir
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-10 Tim Rühsen <tim.ruehsen@gmx.de>
     Add test coverage of idna_to_ascii_* functions

2017-02-10 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix docs (params) for idn2_to_ascii_4i

2017-02-10 Tim Rühsen <tim.ruehsen@gmx.de>
     Add IDN2_ALLOW_UNASSIGNED and IDN2_USE_STD3_ASCII_RULES to doc comment

2017-02-10 Nikos Mavrogiannopoulos <nmav@redhat.com>
     Add docs to idn2_to_ascii_* in lookup.c

2017-02-08 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix compat enums and defines in idn2.h.in

2017-02-07 Tim Rühsen <tim.ruehsen@gmx.de>
     Libidn toASCII compatibility functions

2017-01-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Start of libidn compatibility layer
     
     Define IDN2_SKIP_LIBIDN_COMPAT before including <idn2.h> to
     disable the compatibilty layer.
     It is also disabled when including <idna.h> before <idn2.h>.
     Just to allow programs to link with libidn and libidn2.

2017-01-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Add more test cases
     
     More test cases from Nikos Mavrogiannopoulos

2017-01-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Add bad utf-8 test input to idn2_to_unicode_*()

2017-01-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Add test with bad utf-8 encoding

2017-01-26 Nikos Mavrogiannopoulos <nmav@redhat.com>
     .gitlab-ci.yml: use debian-stretch for building
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>

2017-01-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Remove unused code from punycode.c

2017-01-27 Tim Rühsen <tim.ruehsen@gmx.de>
     More tests for tests/test-tounicode.c

2017-01-27 Tim Rühsen <tim.ruehsen@gmx.de>
     More tests for tests/test-lookup.c

2017-01-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix input checking in decode.c

2017-01-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Reduce 'make check-coverage' to library code

2017-01-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Cleanup tests, remove compiler warnings

2017-01-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Add more testing to tests/test-tounicode.c

2017-01-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Add gnulib module stdio to bootstrap.conf

2017-01-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Add manywarning flags to tests/Makefile.am

2017-01-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix string creation in idn2_to_unicode_44i()

2017-01-26 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix double free in idn2_to_unicode_4z4z()

2017-01-26 Tim Rühsen <tim.ruehsen@gmx.de>
     Adjust .gitignore

2017-01-26 Tim Rühsen <tim.ruehsen@gmx.de>
     New test test-tounicode.c

2017-01-26 Tim Rühsen <tim.ruehsen@gmx.de>
     Allow XN-- and xn-- for punycode

2017-01-26 Tim Rühsen <tim.ruehsen@gmx.de>
     Add idn2_to_unicode_* functions for punycode decoding
     
     That are
       idn2_to_unicode_8z4z
       idn2_to_unicode_4z4z
       idn2_to_unicode_44i
       idn2_to_unicode_8z8z
       idn2_to_unicode_8zlz
       idn2_to_unicode_lzlz

2017-01-08 Tim Rühsen <tim.ruehsen@gmx.de>
     Add idn2_fromASCII() and idn2 -d

2017-01-30 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     .gitlab-ci.yml: added ASAN, and UBSAN builds
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-01-29 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     .gitlab-ci.yml: added ABI check as part of the CI process
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-01-29 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     .gitlab-ci.yml: keep built artifacts (log files) on failure
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-01-29 Nikos Mavrogiannopoulos <nmav@gnutls.org>
     Makefile: added abi-dump and abi-check rules
     
     These allow dumping and checking the ABI of the produced
     library.
     
     Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>

2017-02-07 Tim Rühsen <tim.ruehsen@gmx.de>
     Add 'getline' gnulib module

2017-02-03 Tim Rühsen <tim.ruehsen@gmx.de>
     Add 'error' gnulib module

2017-01-23 userwithuid <userwithuid@gmail.com>
     Add pkg-config file.

2017-01-23 userwithuid <userwithuid@gmail.com>
     Fix parallel make.
     
     Ensure gengetopt is only run once to avoid build errors with make -j.

2017-01-16 Simon Josefsson <simon@josefsson.org>
     Bump versions.

2017-01-16 Simon Josefsson <simon@josefsson.org>
     Typo fix.

2017-01-16 Simon Josefsson <simon@josefsson.org>
     Version 0.16.

2017-01-16 Simon Josefsson <simon@josefsson.org>
     Add.

2017-01-16 Simon Josefsson <simon@josefsson.org>
     Fix @DEFS@.

2017-01-14 Simon Josefsson <simon@josefsson.org>
     Fix DEFS.

2017-01-14 Simon Josefsson <simon@josefsson.org>
     Fix idn2_cmd.* rules.  Copied from libidn.

2017-01-14 Simon Josefsson <simon@josefsson.org>
     Bump versions.

2017-01-14 Simon Josefsson <simon@josefsson.org>
     Version 0.15.

2017-01-14 Simon Josefsson <simon@josefsson.org>
     Indent.

2017-01-14 Simon Josefsson <simon@josefsson.org>
     Fix syntax-check rules.

2017-01-14 Simon Josefsson <simon@josefsson.org>
     Fixes.

2017-01-14 Simon Josefsson <simon@josefsson.org>
     Doc fix.

2017-01-14 Simon Josefsson <simon@josefsson.org>
     Update copyright lines.

2017-01-14 Simon Josefsson <simon@josefsson.org>
     Add.

2017-01-12 Tim Rühsen <tim.ruehsen@gmx.de>
     Reduce TR46 data by ca 33k

2017-01-12 Tim Rühsen <tim.ruehsen@gmx.de>
     Reduce TR46 map entries to 62 bits (yet unpacked)

2017-01-12 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix out-of-bounds access

2017-01-12 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix printf format specifier

2017-01-12 Tim Rühsen <tim.ruehsen@gmx.de>
     Enable silent make rules by default

2017-01-12 Tim Rühsen <tim.ruehsen@gmx.de>
     Enable gcc color diagnostics even when using ccache

2017-01-11 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix indentation

2017-01-11 Tim Rühsen <tim.ruehsen@gmx.de>
     Make autogenrated array 'mapdata' static

2017-01-11 Tim Rühsen <tim.ruehsen@gmx.de>
     Separate TR46 generated data and data functions

2017-01-11 Tim Rühsen <tim.ruehsen@gmx.de>
     Some code rearranged

2017-01-11 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix printf format string warnings

2017-01-11 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix incorrect check of memory allocation

2017-01-11 Tim Rühsen <tim.ruehsen@gmx.de>
     Add two more lookup tests

2017-01-10 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix NFC Quick Check
     
     IDN2_NFC_INPUT with idn2_lookup_*() and non-NFC input resulted in
     IDN2_NOT_NFC error. Regression from version 0.13. This fixes it.
     
     This commit also adds tests to catch non-working IDN2_NFC_INPUT.
     
     Reported-by: Daurn Imator

2017-01-10 Tim Rühsen <tim.ruehsen@gmx.de>
     Remove unused flags from TR46 mapping data

2017-01-05 Tim Rühsen <tim.ruehsen@gmx.de>
     Move -DSRCDIR to AM_CPPFLAGS to satisfy syntax-check

2017-01-05 Tim Rühsen <tim.ruehsen@gmx.de>
     Disable sc_GPL_version syntax-check

2016-12-28 Tim Rühsen <tim.ruehsen@gmx.de>
     TR46 mapping codepoints as 8-bit stream

2016-12-30 Simon Josefsson <simon@josefsson.org>
     Cleanup.  Fix build dependencies.

2016-12-30 Simon Josefsson <simon@josefsson.org>
     Bump version.

2016-12-30 Simon Josefsson <simon@josefsson.org>
     Update for 0.13.

2016-12-30 Simon Josefsson <simon@josefsson.org>
     Version 0.14.

2016-12-30 Simon Josefsson <simon@josefsson.org>
     Bump versions.

2016-12-30 Simon Josefsson <simon@josefsson.org>
     Fix gentr46map build.

2016-12-29 Simon Josefsson <simon@josefsson.org>
     Syntax-check fixes.

2016-12-29 Simon Josefsson <simon@josefsson.org>
     Version 0.13.

2016-12-29 Simon Josefsson <simon@josefsson.org>
     Doc fixes.

2016-12-29 Simon Josefsson <simon@josefsson.org>
     Libunistring required.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Unicode license conditions.

2016-12-28 Tim Rühsen <tim.ruehsen@gmx.de>
     Remove doublettes from TR46 mapping data

2016-12-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Add unicode files to avoid downloading

2016-12-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Add tests/IdnaTest.*

2016-12-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Test downloaded file integrity

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Doc fix.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Fix dependencies.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Make sure ChangeLog is re-generated.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Mark libunistring as optional.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Make self-tests work with non-system libunistring.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Doc fix.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Simplify.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Re-add some libunistring modules, if absent from system.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Drop.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Ignore more.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Add po/Makefile.in after gettext simplification.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Simplify.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Prettify.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Prettyify output.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Typo fix.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Ignore more.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Fix test output.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     More dependency fixes.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Fix build deps.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Doc fixes.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Typo.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Automake requires that ChangeLog exist. (snippet from coreutils)

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Modernize.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Add gitlab CI rules.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Remove, should be automatically generated by git2cl.

2016-12-28 Simon Josefsson <simon@josefsson.org>
     Rename for gitlab.

2016-12-27 Simon Josefsson <simon@josefsson.org>
     Clarify license.  Suggested by Nikos Mavrogiannopoulos.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Bump after release.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Ignore more.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Version 0.12.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Doc fixes.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Doc fix.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     More text.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Don't modify .gitignore.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Don't assume C99/C11.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Fix coverage rules.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Drop unused code.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Fix broken indent.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Use COMPILE instead of CC (this should be an implicit automake rule).

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Indent sources.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Syntax-check cleanups.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Remove.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Unrelease 0.12.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Mention Tim.

2016-12-26 Simon Josefsson <simon@josefsson.org>
     Re-add some gnulib modules.  Fix license.

2016-12-21 Tim Rühsen <tim.ruehsen@gmx.de>
     Prepare for release

2016-12-26 Tim Rühsen <tim.ruehsen@gmx.de>
     Add texinfo to prerequisite list in README-alpha

2016-12-25 Tim Rühsen <tim.ruehsen@gmx.de>
     Add uninorm/base to bootstrap.conf

2016-12-25 Tim Rühsen <tim.ruehsen@gmx.de>
     Use gettext 0.19.3 in configure.ac

2016-12-22 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix tests/Makefile.am

2016-12-22 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix  in src/

2016-12-22 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix 'make clean' for docs

2016-12-22 Tim Rühsen <tim.ruehsen@gmx.de>
     docs: Adjust IGNORE_HFILES

2016-12-21 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix make distcheck

2016-12-08 Tim Rühsen <tim.ruehsen@gmx.de>
     Add NFC quick check to avoid unneeded NFC normalizations

2016-12-08 Tim Rühsen <tim.ruehsen@gmx.de>
     Add test cases to cover more code paths

2016-12-08 Tim Rühsen <tim.ruehsen@gmx.de>
     Add new test test-strerror.c
     
     Cover code paths in idn2_strerror() and idn2_strerror_name().

2016-12-08 Tim Rühsen <tim.ruehsen@gmx.de>
     Use idn2_free() instead of free() in tests

2016-12-08 Tim Rühsen <tim.ruehsen@gmx.de>
     Add make target 'check-coverage'
     
     For this to work, you need 'lcov' and 'genhtml' installed.
     After 'make check-coverage', view lcov/index.html for results.

2016-12-08 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix test-lookup.c for libunistring <= 0.9.3

2016-12-07 Tim Rühsen <tim.ruehsen@gmx.de>
     Clean built sources with 'make clean'

2016-12-07 Tim Rühsen <tim.ruehsen@gmx.de>
     Add make target 'check-valgrind'

2016-11-29 Tim Rühsen <tim.ruehsen@gmx.de>
     Link with libunistring
     
     This patch uses libunistring instead of code copied from
     gnulib. It also introduces ./bootstrap initialization.

2016-12-07 Tim Rühsen <tim.ruehsen@gmx.de>
     Remove tests/IdnaTest.inc and tests/IdnaTest.txt from repo

2016-11-30 Tim Rühsen <tim.ruehsen@gmx.de>
     Add testing of official test suite

2016-11-29 Tim Rühsen <tim.ruehsen@gmx.de>
     Add -T/--tr46t and -N/--tr46nt to idn2 utility

2016-11-29 Tim Rühsen <tim.ruehsen@gmx.de>
     idn2.c: Refactor code into process_input()

2016-11-27 Tim Rühsen <tim.ruehsen@gmx.de>
     Add TR46 support
     
     * Makefile.am: Add tr46map.h, tr46map.c to libidn2_la_SOURCES.
       Download IdnaMappingTable.txt, DerivedNormalizationProps.txt.
       Create tr46map.c via gentr46map.
     * gentr46map.c: New file, generates tr46map.c from downloaded files.
     * idn2.h.in: Add IDN2_TRANSITIONAL and IDN2_NONTRANSITIONAL flags.
       Add error codes IDN2_INVALID_FLAGS, IDN2_DOT_IN_LABEL,
       IDN2_INVALID_TRANSITIONAL and IDN2_INVALID_NONTRANSITIONAL.
     * idna.c (_idn2_label_test): Add tests for TEST_TRANSITIONAL and
       TEST_NONTRANSITIONAL.
     * idna.h: Add test flags TEST_TRANSITIONAL and TEST_NONTRANSITIONAL.
     * lookup.c: New function _tr46() implements TR46 processing.
       (idn2_lookup_u8): Call _tr46() if requested.

2016-11-30 Tim Rühsen <tim.ruehsen@gmx.de>
     Update IDNA tests to Unicode 6.3.0

2016-11-30 Tim Rühsen <tim.ruehsen@gmx.de>
     Remove tests/IdnaTest.inc and tests/IdnaTest.txt from git repo

2016-11-21 Tim Rühsen <tim.ruehsen@gmx.de>
     Makefile cleanup, use HTTPS URLs for download

2016-11-20 Tim Rühsen <tim.ruehsen@gmx.de>
     Set lookup test result for U+19DA to IDN2_DISALLOWED

2016-11-20 Tim Rühsen <tim.ruehsen@gmx.de>
     Update from 5.2.0 to 6.3.0 IDNA tables

2016-11-20 Tim Rühsen <tim.ruehsen@gmx.de>
     Remove auto-generated data.c from repo

2016-11-20 Tim Rühsen <tim.ruehsen@gmx.de>
     Add config.cache to .gitignore

2016-11-26 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix crash in idn2_register_ul()
     
     * register.c (idn2_register_ul): Do not crash if 'ulabel'  is NULL

2016-11-26 Tim Rühsen <tim.ruehsen@gmx.de>
     Fix crash in lookup functions
     
     * lookup.c (idn2_lookup_ul): Do not crash if 'src'  is NULL.
       (idn2_lookup_u8): Set output to NULL if input is NULL.

2016-11-26 Tim Rühsen <tim.ruehsen@gmx.de>
     * register.c: Do not taint insertname on error
     
     This patch
     - does not taint output variable on error
     - does only allocate memory on success
     - allows insertname being NULL for testing

2016-11-26 Tim Rühsen <tim.ruehsen@gmx.de>
     * lookup.c (idn2_lookup_u8): Do not taint lookupname on error
     
     This patch
     - does not taint output variable on error
     - does only allocate memory on success
     - allows lookupname being NULL for testing

2016-11-25 Tim Rühsen <tim.ruehsen@gmx.de>
     Use binary instead of linear search in idna table
     
     Also return UNASSIGNED instead of calling abort() in tables.c.
     
     Do not not call abort() in a library, you never know who/what relies
     on it. Instead, return a reasonable value. If there were an error
     return and/or logging facility, that should be used.

2016-11-06 Simon Josefsson <simon@josefsson.org>
     Trivial memleak fix.  Patch from Hanno Böck <hanno@hboeck.de>.

2016-11-03 Simon Josefsson <simon@josefsson.org>
     Don't install examples.  Reported by Dagobert Michelsen <dam@opencsw.org>.

2016-11-03 Simon Josefsson <simon@josefsson.org>
     Version 0.11.

2016-11-03 Simon Josefsson <simon@josefsson.org>
     Fix PGP key.

2016-11-03 Simon Josefsson <simon@josefsson.org>
     Update for 0.10.

2016-11-03 Simon Josefsson <simon@josefsson.org>
     Bump versions.

2016-11-03 Simon Josefsson <simon@josefsson.org>
     Update copyright years.

2016-11-03 Simon Josefsson <simon@josefsson.org>
     Export _idn2_punycode_??code for non-version script platforms.
     
     Reported by Dagobert Michelsen <dam@opencsw.org>.

2016-11-03 Simon Josefsson <simon@josefsson.org>
     Fix stack underflow in 'idn2' command line tool.
     
     Reported by Hanno Böck <hanno@hboeck.de>.

2016-11-03 Simon Josefsson <simon@josefsson.org>
     Update from libidn.

2015-05-18 Simon Josefsson <simon@josefsson.org>
     Move from gitorious to gitlab.

2014-10-02 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.

2014-06-25 Simon Josefsson <simon@josefsson.org>
     Version 0.10.

2014-06-25 Simon Josefsson <simon@josefsson.org>
     Fix syntax-check.

2014-06-25 Simon Josefsson <simon@josefsson.org>
     Ignore more.

2014-06-25 Simon Josefsson <simon@josefsson.org>
     Dual-license the library.

2014-06-25 Simon Josefsson <simon@josefsson.org>
     Bump copyright years.

2014-06-25 Simon Josefsson <simon@josefsson.org>
     Upgrade gnulib.

2013-07-24 Simon Josefsson <simon@josefsson.org>
     Bump version.

2013-07-24 Simon Josefsson <simon@josefsson.org>
     Ignore more.

2013-07-24 Simon Josefsson <simon@josefsson.org>
     Use devhelp2 format.

2013-07-24 Simon Josefsson <simon@josefsson.org>
     Fix syntax-check.

2013-07-23 Simon Josefsson <simon@josefsson.org>
     Version 0.9.

2013-07-23 Simon Josefsson <simon@josefsson.org>
     Fix copyright year.

2013-07-23 Simon Josefsson <simon@josefsson.org>
     Fix release target.

2013-07-23 Simon Josefsson <simon@josefsson.org>
     Fix broken IANA link.

2013-07-23 Simon Josefsson <simon@josefsson.org>
     Add.

2013-07-23 Simon Josefsson <simon@josefsson.org>
     Update copyright headers.

2013-07-23 Simon Josefsson <simon@josefsson.org>
     Use update-copyright intervals.

2013-07-23 Simon Josefsson <simon@josefsson.org>
     Add update-copyright gnulib module.

2013-07-23 Simon Josefsson <simon@josefsson.org>
     Ignore more.

2013-07-23 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.

2013-07-23 Simon Josefsson <simon@josefsson.org>
     Work around automake problem.

2012-08-08 Simon Josefsson <simon@josefsson.org>
     Add another self-test.

2012-03-07 Simon Josefsson <simon@josefsson.org>
     Ignore more.

2011-11-20 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.

2011-11-13 Simon Josefsson <simon@josefsson.org>
     Bump versions.

2011-11-13 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.

2011-09-28 Simon Josefsson <simon@josefsson.org>
     Update for 0.8.

2011-09-28 Simon Josefsson <simon@josefsson.org>
     Update for 0.6.

2011-09-28 Simon Josefsson <simon@josefsson.org>
     Ignore more.

2011-09-28 Simon Josefsson <simon@josefsson.org>
     Version 0.8.

2011-09-28 Simon Josefsson <simon@josefsson.org>
     Bump version.

2011-09-28 Simon Josefsson <simon@josefsson.org>
     Enable warnings for src/ and fix some issues.

2011-09-28 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.  Add manywarnings module to src/.

2011-08-11 Simon Josefsson <simon@josefsson.org>
     Version 0.7.

2011-08-11 Simon Josefsson <simon@josefsson.org>
     Ignore idn2_cmd.h header file too.

2011-08-11 Simon Josefsson <simon@josefsson.org>
     Update gnulib files in src/.

2011-08-11 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.  Add strchrnul and strverscmp modules.
     
     Reported by Ray Satiro <raysatiro@yahoo.com>.

2011-08-11 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.

2011-05-25 Simon Josefsson <simon@josefsson.org>
     Version 0.6.

2011-05-25 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.

2011-05-25 Simon Josefsson <simon@josefsson.org>
     Bump versions.

2011-05-25 Simon Josefsson <simon@josefsson.org>
     tests: Use -no-install instead of -static to fix --disable-static.
     
     Reported by Robert Scheck <robert@fedoraproject.org>.

2011-05-25 Simon Josefsson <simon@josefsson.org>
     Add linenumbers to IdnaTest.inc.

2011-05-19 Simon Josefsson <simon@josefsson.org>
     Doc fix.

2011-05-18 Simon Josefsson <simon@josefsson.org>
     Add.

2011-05-18 Simon Josefsson <simon@josefsson.org>
     Version 0.5.

2011-05-18 Simon Josefsson <simon@josefsson.org>
     Describe valgrind change.

2011-05-18 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.

2011-05-18 Simon Josefsson <simon@josefsson.org>
     Disable valgrind by default for users.

2011-05-18 Simon Josefsson <simon@josefsson.org>
     Fix NFC check to compare entire strings.
     
     Some non-NFC strings were permitted when they should have been
     rejected.  Reported by Robert Scheck <robert@fedoraproject.org>.

2011-05-09 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.

2011-05-08 Simon Josefsson <simon@josefsson.org>
     Bump versions.

2011-05-08 Simon Josefsson <simon@josefsson.org>
     Add gnupload module.

2011-05-08 Simon Josefsson <simon@josefsson.org>
     Handle if ChangeLog is already commited.

2011-05-06 Simon Josefsson <simon@josefsson.org>
     Fix release target.

2011-05-06 Simon Josefsson <simon@josefsson.org>
     Version 0.4.

2011-05-06 Simon Josefsson <simon@josefsson.org>
     Rewrite release target.

2011-05-06 Simon Josefsson <simon@josefsson.org>
     Add.

2011-05-06 Simon Josefsson <simon@josefsson.org>
     Use modern libtool calls.

2011-05-06 Simon Josefsson <simon@josefsson.org>
     Add license.

2011-05-06 Simon Josefsson <simon@josefsson.org>
     Prepare for GNU upload more.

2011-05-06 Simon Josefsson <simon@josefsson.org>
     Doc fix for return codes.

2011-05-06 Simon Josefsson <simon@josefsson.org>
     Prepare for upload to GNU.

2011-05-05 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.  Add clang rules.

2011-05-05 Simon Josefsson <simon@josefsson.org>
     tests: Added several new Arabic test vectors.

2011-05-05 Simon Josefsson <simon@josefsson.org>
     libidn2: Fix domain name maximum size issue.

2011-05-05 Simon Josefsson <simon@josefsson.org>
     Documentation clarification of IDN2_DOMAIN_MAX_LENGTH.

2011-05-05 Simon Josefsson <simon@josefsson.org>
     Fix return codes for overlong ASCII labels/domains.

2011-05-05 Simon Josefsson <simon@josefsson.org>
     Only check ASCII labels for max length.
     
     Note that non-ASCII labels are checked implicitely by
     punycode_encode() and will yield IDN2_PUNYCODE_BIG_OUTPUT.

2011-05-05 Simon Josefsson <simon@josefsson.org>
     Test some corner cases.

2011-05-05 Simon Josefsson <simon@josefsson.org>
     Drop errorenous max domain length check applied to UTF-8 encoded values.

2011-04-20 Simon Josefsson <simon@josefsson.org>
     Bump versions.

2011-04-20 Simon Josefsson <simon@josefsson.org>
     Version 0.3.

2011-04-20 Simon Josefsson <simon@josefsson.org>
     Add texinfo manual and man pages.

2011-04-19 Simon Josefsson <simon@josefsson.org>
     Add examples.

2011-04-19 Simon Josefsson <simon@josefsson.org>
     Add.

2011-04-11 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.  Fix syntax-check warning.

2011-03-31 Simon Josefsson <simon@josefsson.org>
     Reduce code duplication.

2011-03-31 Simon Josefsson <simon@josefsson.org>
     Add.

2011-03-31 Simon Josefsson <simon@josefsson.org>
     Add U+19DA test vector.

2011-03-30 Simon Josefsson <simon@josefsson.org>
     Bump version.

2011-03-30 Simon Josefsson <simon@josefsson.org>
     Dist more.

2011-03-30 Simon Josefsson <simon@josefsson.org>
     Bump versions.

2011-03-30 Simon Josefsson <simon@josefsson.org>
     Fix release target.

2011-03-30 Simon Josefsson <simon@josefsson.org>
     Version 0.2.

2011-03-30 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-03-30 Simon Josefsson <simon@josefsson.org>
     Indent.

2011-03-30 Simon Josefsson <simon@josefsson.org>
     Add command line tool.

2011-03-30 Simon Josefsson <simon@josefsson.org>
     Workaround genhtml bugs.

2011-03-30 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.

2011-03-29 Simon Josefsson <simon@josefsson.org>
     Improve utc tests.

2011-03-29 Simon Josefsson <simon@josefsson.org>
     Drop UTC's test vectors.

2011-03-29 Simon Josefsson <simon@josefsson.org>
     Fix UTC tests.

2011-03-29 Simon Josefsson <simon@josefsson.org>
     Hack it.

2011-03-29 Simon Josefsson <simon@josefsson.org>
     Add UTC test vectors.

2011-03-29 Simon Josefsson <simon@josefsson.org>
     Bump versions.

2011-03-29 Simon Josefsson <simon@josefsson.org>
     Version 0.1.

2011-03-29 Simon Josefsson <simon@josefsson.org>
     Add test vectors.

2011-03-29 Simon Josefsson <simon@josefsson.org>
     Fix U+200C.

2011-03-29 Simon Josefsson <simon@josefsson.org>
     Use valgrind.

2011-03-29 Simon Josefsson <simon@josefsson.org>
     Namespace fixes for gtk-doc.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Doc fixes.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Doc fix.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Warning cleanup.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     More warnings.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Fix warning.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Use visibility.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     C++ fix.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Fix cludge.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Doc fix.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Register test vectors.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     More register.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     More register.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     More register.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     More register.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     More register.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Add backup rule.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Generalize.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Simplify what.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Revamp ascii.

2011-03-28 Simon Josefsson <simon@josefsson.org>
     Revamp allocation.

2011-03-27 Simon Josefsson <simon@josefsson.org>
     Rewrite lookup.

2011-03-27 Simon Josefsson <simon@josefsson.org>
     Drop getopt stuff.

2011-03-27 Simon Josefsson <simon@josefsson.org>
     Fix comment.

2011-03-27 Simon Josefsson <simon@josefsson.org>
     Add constants.

2011-03-27 Simon Josefsson <simon@josefsson.org>
     Add data.c, for offline work.

2011-03-27 Simon Josefsson <simon@josefsson.org>
     Build static to make valgrind produce useful output.

2011-03-27 Simon Josefsson <simon@josefsson.org>
     Constify.

2011-03-22 Simon Josefsson <simon@josefsson.org>
     Fix tests.

2011-03-22 Simon Josefsson <simon@josefsson.org>
     Drop striconv stuff.

2011-03-22 Simon Josefsson <simon@josefsson.org>
     Remove unused gnulib module.

2011-03-22 Simon Josefsson <simon@josefsson.org>
     Ignore more.

2011-03-22 Simon Josefsson <simon@josefsson.org>
     Fix U+200C rule.

2011-03-22 Simon Josefsson <simon@josefsson.org>
     Add.

2011-03-22 Simon Josefsson <simon@josefsson.org>
     Add joiningtype gnulib module.

2011-03-20 Simon Josefsson <simon@josefsson.org>
     Parts of U+200C rule.

2011-03-20 Simon Josefsson <simon@josefsson.org>
     More self tests.

2011-03-19 Simon Josefsson <simon@josefsson.org>
     doc fix

2011-03-19 Simon Josefsson <simon@josefsson.org>
     fix

2011-03-19 Simon Josefsson <simon@josefsson.org>
     Add more.

2011-03-19 Simon Josefsson <simon@josefsson.org>
     Ignore more.

2011-03-19 Simon Josefsson <simon@josefsson.org>
     Fix U+200D contet rule.  Fix combining mark bug.

2011-03-09 Simon Josefsson <simon@josefsson.org>
     Bump version.

2011-03-09 Simon Josefsson <simon@josefsson.org>
     Fix release target.

2011-03-09 Simon Josefsson <simon@josefsson.org>
     No .clcopying.

2011-03-09 Simon Josefsson <simon@josefsson.org>
     Update gtk-doc files.

2011-03-09 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-03-09 Simon Josefsson <simon@josefsson.org>
     Fix version.

2011-03-09 Simon Josefsson <simon@josefsson.org>
     Version 0.0.

2011-03-09 Simon Josefsson <simon@josefsson.org>
     Add.

2011-03-09 Simon Josefsson <simon@josefsson.org>
     Hard code version for now.

2011-03-08 Simon Josefsson <simon@josefsson.org>
     Version fix.

2011-03-08 Simon Josefsson <simon@josefsson.org>
     Version fixes.

2011-03-08 Simon Josefsson <simon@josefsson.org>
     Add.

2011-03-08 Simon Josefsson <simon@josefsson.org>
     Fix name.

2011-03-08 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-03-08 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-03-08 Simon Josefsson <simon@josefsson.org>
     Reorder.

2011-03-08 Simon Josefsson <simon@josefsson.org>
     Split up.

2011-03-08 Simon Josefsson <simon@josefsson.org>
     Improve errors.

2011-03-08 Simon Josefsson <simon@josefsson.org>
     Reorder.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Simplify.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Add FIXME.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Add nl_langinfo replacement.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Add striconv.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Doc fix.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Fix errcodes.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Fix version.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Fix version.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Ignore more.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Revamp punycode.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Doc fix.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Doc fix.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Add gtk-doc.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Header cleanup.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Reorder.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Error handling.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Internalize punycode too.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Update.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Move gnulib to gl/.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Move self-tests to tests/.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Internalize some interfaces.

2011-03-07 Simon Josefsson <simon@josefsson.org>
     Improve self checks.

2011-03-02 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-03-02 Simon Josefsson <simon@josefsson.org>
     Improve self-test.

2011-03-02 Simon Josefsson <simon@josefsson.org>
     Add.

2011-03-02 Simon Josefsson <simon@josefsson.org>
     Add more.

2011-03-02 Simon Josefsson <simon@josefsson.org>
     Cleanup self-tests.

2011-03-02 Simon Josefsson <simon@josefsson.org>
     Ignore more.

2011-03-02 Simon Josefsson <simon@josefsson.org>
     Add strerror functions.

2011-03-02 Simon Josefsson <simon@josefsson.org>
     Fix some syntax-check bugs.

2011-03-02 Simon Josefsson <simon@josefsson.org>
     Ignore gnulib files.

2011-03-01 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.

2011-02-28 Simon Josefsson <simon@josefsson.org>
     Update gnulib files.

2011-02-28 Simon Josefsson <simon@josefsson.org>
     Relicense under GPLv3+.

2011-02-24 Simon Josefsson <simon@josefsson.org>
     Handle empty strings.

2011-02-24 Simon Josefsson <simon@josefsson.org>
     Add.

2011-02-24 Simon Josefsson <simon@josefsson.org>
     Add.

2011-02-24 Simon Josefsson <simon@josefsson.org>
     Add.

2011-02-24 Simon Josefsson <simon@josefsson.org>
     New.

2011-02-24 Simon Josefsson <simon@josefsson.org>
     Fix off by one bug.

2011-02-24 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-02-23 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-02-23 Simon Josefsson <simon@josefsson.org>
     Add.

2011-02-23 Simon Josefsson <simon@josefsson.org>
     Update.

2011-02-23 Simon Josefsson <simon@josefsson.org>
     Commit old stuff.

2011-01-30 Simon Josefsson <simon@josefsson.org>
     Rename APIs.

2011-01-30 Simon Josefsson <simon@josefsson.org>
     Stick at Unicode 5.2 files.

2011-01-30 Simon Josefsson <simon@josefsson.org>
     More testing.

2011-01-25 Simon Josefsson <simon@josefsson.org>
     Fixup punycode.

2011-01-25 Simon Josefsson <simon@josefsson.org>
     Revamp punycode implementation.

2011-01-13 Simon Josefsson <simon@josefsson.org>
     Simplistic ace.

2011-01-11 Simon Josefsson <simon@josefsson.org>
     Fix output.

2011-01-11 Simon Josefsson <simon@josefsson.org>
     Rename.

2011-01-11 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-01-11 Simon Josefsson <simon@josefsson.org>
     Rename from libidna to libidn2.

2011-01-09 Simon Josefsson <simon@josefsson.org>
     Goodnight.

2011-01-09 Simon Josefsson <simon@josefsson.org>
     Add u8-from-locale.

2011-01-09 Simon Josefsson <simon@josefsson.org>
     Add hyphen-startend.

2011-01-09 Simon Josefsson <simon@josefsson.org>
     Update.

2011-01-09 Simon Josefsson <simon@josefsson.org>
     Update bidi.

2011-01-09 Simon Josefsson <simon@josefsson.org>
     Fix warning.

2011-01-09 Simon Josefsson <simon@josefsson.org>
     Update libunistring to 5.2.0.

2011-01-09 Simon Josefsson <simon@josefsson.org>
     Improve bidi.

2011-01-09 Simon Josefsson <simon@josefsson.org>
     Add bidi functions.

2011-01-09 Simon Josefsson <simon@josefsson.org>
     Bidi template.

2011-01-09 Simon Josefsson <simon@josefsson.org>
     Unassigned.

2011-01-09 Simon Josefsson <simon@josefsson.org>
     Update.

2011-01-09 Simon Josefsson <simon@josefsson.org>
     contexto-has-rule.

2011-01-08 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-08 Simon Josefsson <simon@josefsson.org>
     Update.

2011-01-08 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-01-08 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-08 Simon Josefsson <simon@josefsson.org>
     Update.

2011-01-08 Simon Josefsson <simon@josefsson.org>
     Fixes.

2011-01-08 Simon Josefsson <simon@josefsson.org>
     Fixes.

2011-01-08 Simon Josefsson <simon@josefsson.org>
     Add context rule template.

2011-01-08 Simon Josefsson <simon@josefsson.org>
     Fix first bug.

2011-01-08 Simon Josefsson <simon@josefsson.org>
     Improve.

2011-01-08 Simon Josefsson <simon@josefsson.org>
     Improve.

2011-01-08 Simon Josefsson <simon@josefsson.org>
     Add contextj.

2011-01-08 Simon Josefsson <simon@josefsson.org>
     Dist tables.h.

2011-01-08 Simon Josefsson <simon@josefsson.org>
     Drop NFC api.

2011-01-06 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-06 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-06 Simon Josefsson <simon@josefsson.org>
     Terminate array.

2011-01-05 Simon Josefsson <simon@josefsson.org>
     LGPLv3+

2011-01-05 Simon Josefsson <simon@josefsson.org>
     Add test vectors.

2011-01-05 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-05 Simon Josefsson <simon@josefsson.org>
     Update.

2011-01-05 Simon Josefsson <simon@josefsson.org>
     Use uint32 internally.

2011-01-05 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-01-05 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-05 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-05 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-05 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-05 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-05 Simon Josefsson <simon@josefsson.org>
     Update.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     More.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Update.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Update.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Update.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Fix.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add NFC module.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Update.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Typo.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Fix range.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Update.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Update.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Update.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.

2011-01-04 Simon Josefsson <simon@josefsson.org>
     Add.