Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 054b42415763146894c6d3f82078ab011e4903e2 (plain)
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
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
2018-01-03  Arthur de Jong <arthur@arthurdejong.org>

	* [db9b278] tox.ini: Fix Sphinx dependency name

2018-01-03  Arthur de Jong <arthur@arthurdejong.org>

	* [fbb9d24] docs/index.rst, stdnum/__init__.py: Move get_cc_module()
	  function to package for public use

2018-01-03  Arthur de Jong <arthur@arthurdejong.org>

	* [7bb0e5f] setup.py, stdnum/util.py: Try the non-caching zeep
	  client on older versions

	  This uses the "normal" Client class from zeep if CachingClient
	  is not available (this is the case on older zeep versions).

	  This also records (and documents) the dependencies for SOAP
	  libraries in setup.py.

2018-01-01  Arthur de Jong <arthur@arthurdejong.org>

	* [6d7ba46] .travis.yml: Add a Travis configuration file

2018-01-01  Arthur de Jong <arthur@arthurdejong.org>

	* [db7be06] stdnum/do/ncf.py, stdnum/do/rnc.py, tox.ini: Fix Python
	  2.6 compatibility

2018-01-01  Arthur de Jong <arthur@arthurdejong.org>

	* [8107f08] stdnum/cn/loc.dat, stdnum/eu/nace.dat, stdnum/imsi.dat,
	  stdnum/isbn.dat, stdnum/us/ein.dat: Update database files

	  Note that the Swift IBAN Registry in txt format is currently
	  unavailable so hasn't been updated.

2018-01-01  Arthur de Jong <arthur@arthurdejong.org>

	* [e781eee] MANIFEST.in, tox.ini, update/README, update/cn_loc.py,
	  update/do_whitelists.py, update/eu_nace.py, update/iban.py,
	  update/imsi.py, update/isbn.py, update/isil.py, update/my_bp.py,
	  update/numlist.py, update/requirements.txt: Move update scripts
	  to own directory

	  This moves all the update scripts to their own directory so they
	  don't clutter the toplevel directory.

	  This also ensures that the scripts are passed through flake8
	  and makes some adjustments for that alongside a few other cleanups.

2017-12-01  srikanthlogic <srik.lak@gmail.com>

	* [442aa82] stdnum/in_/pan.py, tests/test_in_pan.doctest: Add
	  Indian PAN

	  Closes https://github.com/arthurdejong/python-stdnum/pull/57

2017-12-31  Arthur de Jong <arthur@arthurdejong.org>

	* [8a34b4e] stdnum/util.py: Correctly quote regular expression

	  Fixes a6ae1d0.

2017-12-31  Arthur de Jong <arthur@arthurdejong.org>

	* [271b9e4] docs/stdnum.is_.kennitala.rst, docs/stdnum.is_.vsk.rst,
	  tox.ini: Add Sphinx documentation checks

	  This also fixes an escaping issue in the automatically generated
	  documentation for modules that end with an underscore.

2017-12-06  Arthur de Jong <arthur@arthurdejong.org>

	* [be094f8] README, docs/conf.py, docs/index.rst, getnumlist.py,
	  setup.py, stdnum/__init__.py: Use README as package long
	  description

	  This also shortens the stdnum module docstring and updates the
	  Sphinx configuration.

2017-12-01  srikanthlogic <srik.lak@gmail.com>

	* [c576bc4] stdnum/in_/__init__.py, stdnum/in_/aadhaar.py: Add
	  Indian Aadhaar

	  Closes https://github.com/arthurdejong/python-stdnum/pull/56

2017-11-26  Arthur de Jong <arthur@arthurdejong.org>

	* [bafdb70] stdnum/casrn.py, tests/test_casrn.doctest: Add CAS
	  Registry Number

	  This adds validation of the Chemical Abstracts Service Registry
	  Number.

2017-11-24  Arthur de Jong <arthur@arthurdejong.org>

	* [d5f97e9] online_check/check.js, online_check/stdnum.wsgi:
	  Change output of online lookups

	  This puts the number before the number name to make it a little
	  clearer.

2017-11-24  Arthur de Jong <arthur@arthurdejong.org>

	* [f7b4615] online_check/check.js: Store online check numbers
	  in history

	  This updates the browser history with with the numbers that
	  were checked so that you can easily go back and forth between
	  checked number.

2017-11-24  Arthur de Jong <arthur@arthurdejong.org>

	* [7cb114b] online_check/stdnum.wsgi: Correctly escape number for
	  use in attribute

2017-11-26  Arthur de Jong <arthur@arthurdejong.org>

	* [90067f7] tests/test_eu_banknote.doctest: Fix incorrect banknote
	  test

	  Also add a few verified correct numbers.

	  Fixes b7b812c.

2017-11-22  Arthur de Jong <arthur@arthurdejong.org>

	* [b7b812c] stdnum/eu/banknote.py, tests/test_eu_banknote.doctest:
	  Add Euro bank notes serial number

	  This adds validation of serial numbers that appear on Euro bills.

2017-11-02  Arthur de Jong <arthur@arthurdejong.org>

	* [a6ae1d0] docs/index.rst, docs/stdnum.bic.rst,
	  docs/stdnum.iso9362.rst, stdnum/bic.py, stdnum/iso9362.py,
	  stdnum/util.py: Rename stdnum.iso9362 to stdnum.bic

	  The new name is more descriptive and easier to remember. This
	  makes stdnum.iso9362 a compatibility module that can be imported
	  with the old name but provides a deprecation warning.

2017-10-22  Arthur de Jong <arthur@arthurdejong.org>

	* [6be1754] stdnum/util.py: Support zeep as preferred SOAP library

	  This tries zeep, suds (suds-jurko) and falls back to using
	  pysimplesoap for performing the SOAP requests. From those zeep
	  seems to be the best supported implementation.

2017-10-22  Arthur de Jong <arthur@arthurdejong.org>

	* [9ab1d66] stdnum/eu/vat.py, tests/test_eu_vat.py: Add tests for
	  the VIES VAT validation functions

	  These tests are not normally run as part of the normal test suite
	  and have to be explicitly enabled by setting the ONLINE_TESTS
	  environment variable to avoid overloading these online services.

2017-10-18  Arthur de Jong <arthur@arthurdejong.org>

	* [ab21159] stdnum/do/ncf.py, tests/test_do_ncf.py: Add
	  stdnum.do.ncf.check_dgii()

	  This adds functions for querying the Dirección General de
	  Impuestos Internos (DGII) API to check if the RNC and NCF
	  combination provided is valid.

2017-10-18  Arthur de Jong <arthur@arthurdejong.org>

	* [6b09c5d] stdnum/do/rnc.py, tests/test_do_rnc.py, tox.ini:
	  Add stdnum.do.rnc.check_dgii() and search_dgii()

	  This adds functions for querying the Dirección General de
	  Impuestos Internos (DGII) API to validate the RNC and search
	  the register by keyword.

2017-10-16  Arthur de Jong <arthur@arthurdejong.org>

	* [665bf7a] stdnum/do/ncf.py, tests/test_do_ncf.doctest: Add
	  Dominican Republic receipt number (NCF)

	  This number does not have a check digit but uses a distinctive
	  enough format that it should not be too great of a problem.

2017-10-14  Arthur de Jong <arthur@arthurdejong.org>

	* [4ab1e3b] stdnum/eu/vat.py, stdnum/tr/tckimlik.py, stdnum/util.py:
	  Cache SOAP client in get_soap_client()

	  This caches the instantiated SOAP client classes in the util
	  module instead of doing the caching in every module that performs
	  requests.

2017-10-18  Arthur de Jong <arthur@arthurdejong.org>

	* [cecd35c] getdowhitelists.py: Add a script for updating RNC and
	  Cedula whitelists

2017-10-13  Arthur de Jong <arthur@arthurdejong.org>

	* [399321b] stdnum/do/rnc.py, tests/test_do_rnc.doctest: Also add
	  a whitelist for Dominican Republic RNC

	  Some RNCs are apparently valid while having an incorrect check
	  digit (though most appear to be inactive). There also appear to
	  be valid RNCs that do not have 9 digits.

2017-10-13  Arthur de Jong <arthur@arthurdejong.org>

	* [58511dc] stdnum/do/cedula.py, tests/test_do_cedula.doctest:
	  Add a few new numbers to the Cedula whitelist

	  These numbers were found to be valid but had an invalid check
	  digit nonetheless (though most appear to be inactive). Also
	  there appear to be a few valid Cedula that do not have 11 digits.

2017-10-13  David Arnold <dar@devco.co>

	* [74c1721] stdnum/util.py, tests/test_util.doctest: Handle unicode
	  arguments in get_cc_module()

	  Closes https://github.com/arthurdejong/python-stdnum/issues/54

2017-09-15  Arthur de Jong <arthur@arthurdejong.org>

	* [12cd072] stdnum/eu/at_02.py: Fix spelling errors

2017-09-12  Arthur de Jong <arthur@arthurdejong.org>

	* [4496ffe] ChangeLog, NEWS, README, docs/index.rst,
	  docs/stdnum.ca.bn.rst, docs/stdnum.ca.sin.rst,
	  docs/stdnum.de.idnr.rst, docs/stdnum.ee.registrikood.rst,
	  docs/stdnum.fi.veronumero.rst, docs/stdnum.gb.upn.rst,
	  stdnum/__init__.py: Get files ready for 1.7 release

2017-09-12  Arthur de Jong <arthur@arthurdejong.org>

	* [28092b3] stdnum/damm.py: Add example with custom table to Damm

2017-09-11  Arthur de Jong <arthur@arthurdejong.org>

	* [24d4a76] stdnum/cn/loc.dat, stdnum/eu/nace.dat, stdnum/imsi.dat,
	  stdnum/isbn.dat, stdnum/isil.dat: Update database files

2017-09-11  Arthur de Jong <arthur@arthurdejong.org>

	* [5071636] getisbn.py: Update getisbn to allow TLSv1

	  The www.isbn-international.org site uses TLSv1 which seems to be
	  blocked by recent Python/OpenSSL combinations unless configured
	  otherwise.

2017-09-11  Arthur de Jong <arthur@arthurdejong.org>

	* [edaad05] setup.cfg, tox.ini: Run flake8 from tox

2017-09-10  Arthur de Jong <arthur@arthurdejong.org>

	* [0ce5d0b] stdnum/bg/egn.py, stdnum/cz/dic.py, stdnum/dk/cpr.py,
	  stdnum/es/cups.py, stdnum/es/referenciacatastral.py,
	  stdnum/eu/nace.py, stdnum/fr/nir.py, stdnum/fr/siren.py,
	  stdnum/iban.py, stdnum/it/codicefiscale.py, stdnum/lv/pvn.py,
	  stdnum/numdb.py, stdnum/ro/cnp.py, stdnum/util.py: Minor code
	  improvements (mostly PEP8)

2017-09-10  Arthur de Jong <arthur@arthurdejong.org>

	* [e468c1b] stdnum/ch/vat.py, stdnum/cn/ric.py, stdnum/do/cedula.py,
	  stdnum/ee/ik.py, stdnum/ee/registrikood.py, stdnum/es/nif.py,
	  stdnum/fi/__init__.py, stdnum/fi/hetu.py, stdnum/gb/nhs.py,
	  stdnum/gb/upn.py, stdnum/gb/vat.py, stdnum/is_/kennitala.py,
	  stdnum/it/codicefiscale.py, stdnum/nl/onderwijsnummer.py,
	  stdnum/numdb.py, stdnum/rs/pib.py, stdnum/sk/rc.py,
	  stdnum/us/tin.py: Make import ordering consistent

2017-09-10  Arthur de Jong <arthur@arthurdejong.org>

	* [1c27639] stdnum/al/nipt.py, stdnum/ar/cbu.py, stdnum/ar/cuit.py,
	  stdnum/at/businessid.py, stdnum/at/uid.py, stdnum/au/abn.py,
	  stdnum/au/acn.py, stdnum/au/tfn.py, stdnum/be/vat.py,
	  stdnum/bg/egn.py, stdnum/bg/pnf.py, stdnum/bg/vat.py,
	  stdnum/br/cnpj.py, stdnum/br/cpf.py, stdnum/ca/bn.py,
	  stdnum/ca/sin.py, stdnum/ch/ssn.py, stdnum/ch/uid.py,
	  stdnum/ch/vat.py, stdnum/cl/rut.py, stdnum/cn/ric.py,
	  stdnum/co/nit.py, stdnum/cusip.py, stdnum/cy/vat.py,
	  stdnum/cz/dic.py, stdnum/cz/rc.py, stdnum/damm.py,
	  stdnum/de/idnr.py, stdnum/de/vat.py, stdnum/de/wkn.py,
	  stdnum/dk/cpr.py, stdnum/dk/cvr.py, stdnum/do/cedula.py,
	  stdnum/do/rnc.py, stdnum/ean.py, stdnum/ec/ci.py, stdnum/ec/ruc.py,
	  stdnum/ee/ik.py, stdnum/ee/kmkr.py, stdnum/ee/registrikood.py,
	  stdnum/es/ccc.py, stdnum/es/cif.py, stdnum/es/cups.py,
	  stdnum/es/dni.py, stdnum/es/iban.py, stdnum/es/nie.py,
	  stdnum/es/nif.py, stdnum/es/referenciacatastral.py,
	  stdnum/eu/at_02.py, stdnum/eu/eic.py, stdnum/eu/nace.py,
	  stdnum/eu/vat.py, stdnum/fi/alv.py, stdnum/fi/associationid.py,
	  stdnum/fi/hetu.py, stdnum/fi/veronumero.py, stdnum/fi/ytunnus.py,
	  stdnum/fr/nif.py, stdnum/fr/nir.py, stdnum/fr/siren.py,
	  stdnum/fr/siret.py, stdnum/fr/tva.py, stdnum/gb/nhs.py,
	  stdnum/gb/sedol.py, stdnum/gb/upn.py, stdnum/gb/vat.py,
	  stdnum/gr/vat.py, stdnum/grid.py, stdnum/hr/oib.py,
	  stdnum/hu/anum.py, stdnum/iban.py, stdnum/ie/pps.py,
	  stdnum/ie/vat.py, stdnum/imei.py, stdnum/imo.py,
	  stdnum/imsi.py, stdnum/is_/kennitala.py, stdnum/is_/vsk.py,
	  stdnum/isan.py, stdnum/isbn.py, stdnum/isil.py, stdnum/isin.py,
	  stdnum/ismn.py, stdnum/iso6346.py, stdnum/iso7064/mod_11_10.py,
	  stdnum/iso7064/mod_11_2.py, stdnum/iso7064/mod_37_2.py,
	  stdnum/iso7064/mod_37_36.py, stdnum/iso7064/mod_97_10.py,
	  stdnum/iso9362.py, stdnum/issn.py, stdnum/it/codicefiscale.py,
	  stdnum/it/iva.py, stdnum/lei.py, stdnum/lt/pvm.py,
	  stdnum/lu/tva.py, stdnum/luhn.py, stdnum/lv/pvn.py,
	  stdnum/mc/tva.py, stdnum/meid.py, stdnum/mt/vat.py,
	  stdnum/mx/rfc.py, stdnum/my/nric.py, stdnum/nl/brin.py,
	  stdnum/nl/bsn.py, stdnum/nl/btw.py, stdnum/nl/onderwijsnummer.py,
	  stdnum/nl/postcode.py, stdnum/no/mva.py, stdnum/no/orgnr.py,
	  stdnum/numdb.py, stdnum/pl/nip.py, stdnum/pl/pesel.py,
	  stdnum/pl/regon.py, stdnum/pt/nif.py, stdnum/ro/cf.py,
	  stdnum/ro/cnp.py, stdnum/rs/pib.py, stdnum/ru/inn.py,
	  stdnum/se/orgnr.py, stdnum/se/vat.py, stdnum/si/ddv.py,
	  stdnum/sk/dph.py, stdnum/sm/coe.py, stdnum/tr/__init__.py,
	  stdnum/tr/tckimlik.py, stdnum/us/atin.py, stdnum/us/ein.py,
	  stdnum/us/itin.py, stdnum/us/ptin.py, stdnum/us/rtn.py,
	  stdnum/us/ssn.py, stdnum/us/tin.py, stdnum/verhoeff.py: Docstring
	  improvements

2017-09-08  Arthur de Jong <arthur@arthurdejong.org>

	* [2cc39ea] stdnum/cz/dic.py, tests/test_eu_vat.doctest: Fix Czech
	  DIČ check digit calculation

	  This fixes a bug in the check digit calculation for the 9-digit
	  numbers that start with a 6 for individuals without a RČ. This
	  also adds a few tests for Czech VAT numbers.

	  See https://github.com/arthurdejong/python-stdnum/issues/51

2017-09-04  Arthur de Jong <arthur@arthurdejong.org>

	* [d24a439] stdnum/ee/registrikood.py,
	  tests/test_ee_registrikood.doctest: Add Estonian Registrikood

	  This is based on what was done by Mohammed Salman of Holvi. This
	  adds more tests and validates the check digit.

	  This uses the check digit algorithm from Isikukood which seems
	  to work with all tested numbers although there is no confirmation
	  that this is the correct algorithm.

2017-08-25  Mohammed Salman <mohammed@holvi.com>

	* [53cc0dc] stdnum/de/idnr.py, tests/test_de_idnr.doctest: Add
	  support for German tax id number

2017-08-30  Arthur de Jong <arthur@arthurdejong.org>

	* [a71a1ac] stdnum/isbn.py, tests/test_isbn.doctest: Check bookland
	  code in ISBN

	  This ensures that an InvalidComponent() exception is raised when
	  an unknown EAN bookland code is found. It will also raise this
	  exception when using to_isbn10() when not using the 978 code.

2017-08-28  Arthur de Jong <arthur@arthurdejong.org>

	* [8f6fa7d] setup.cfg, stdnum/iban.py, stdnum/ismn.py,
	  stdnum/meid.py, stdnum/numdb.py, stdnum/util.py,
	  tests/numdb-test.dat, tests/test_util.doctest: Ensure 100%
	  branch coverage

	  This ensures that the tests fail if 100% branch coverage is
	  not achieved. It also adds some pragma statements for code that
	  cannot be covered or is Python version dependent.

	  Furthermore, the get_module_list() function was removed
	  from stdnum.util and more tests were made from stdnum.util
	  and stdnum.numdb. The functionality to call format() in a
	  country-specific IBAN implementation was also dropped because
	  it was not used.

2017-08-27  Arthur de Jong <arthur@arthurdejong.org>

	* [fbc92f8] stdnum/gb/upn.py: Add English Unique Pupil Number (UPN)

2017-08-26  Arthur de Jong <arthur@arthurdejong.org>

	* [b8389eb] stdnum/ca/bn.py, tests/test_ca_bn.doctest: Add Canadian
	  Business Number (BN)

2017-08-26  Arthur de Jong <arthur@arthurdejong.org>

	* [efd2eb9] stdnum/ca/__init__.py, stdnum/ca/sin.py: Add Canadian
	  Social Insurance Number (SIN)

2017-08-24  Arthur de Jong <arthur@arthurdejong.org>

	* [b8e12d6] setup.cfg: Ensure all Python files are in coverage report

2017-08-17  Mohammed Salman <mohammed@holvi.com>

	* [0c91b43] stdnum/fi/veronumero.py: Implement Finnish individual
	  tax number validation

2017-07-11  Arthur de Jong <arthur@arthurdejong.org>

	* [bd0c7c7] online_check/check.js, online_check/stdnum.wsgi,
	  online_check/template.html: Include search term in online form

	  This also makes the Javascript regular expression used for
	  highlighting links the same as the Python equivalent.

2017-06-02  Arthur de Jong <arthur@arthurdejong.org>

	* [81446fd] stdnum/iso7064/mod_97_10.py: Use slightly more
	  compact code

	  This changes the alphanumeric to numeric translation to be
	  slightly more compact and slightly faster.

2017-04-16  Arthur de Jong <arthur@arthurdejong.org>

	* [ed9ac5b] tests/test_isbn.doctest: Add a few ISBNs found online

	  This adds a number of ISBNs found online from various sources
	  to the test suite.

2017-04-15  Arthur de Jong <arthur@arthurdejong.org>

	* [57c12d8] stdnum/ismn.py, tests/test_ismn.doctest: An ISMN can
	  only be 10 or 13 digits

	  This also adds the test that an ISMN should start with 9790.

2017-04-15  Arthur de Jong <arthur@arthurdejong.org>

	* [6fb2e89] stdnum/isbn.py, tests/test_isbn.doctest: Fix conversion
	  of 9 digit ISBN to ISBN13

2017-04-13  Arthur de Jong <arthur@arthurdejong.org>

	* [5604d91] docs/index.rst, setup.py, stdnum/fr/nir.py,
	  stdnum/fr/siren.py, stdnum/gb/nhs.py, stdnum/isil.py,
	  stdnum/iso6346.py, stdnum/lv/pvn.py, stdnum/nl/brin.py,
	  stdnum/us/ein.dat, tests/test_al_nipt.doctest: Switch to HTTPS URLs

2017-04-13  Arthur de Jong <arthur@arthurdejong.org>

	* [d14ea3b] online_check/README, online_check/check.js,
	  online_check/stdnum.wsgi: Show possible conversions in online check

	  This shows possible converted values. For example it will show
	  ISBN13 conversions for ISBN10 values.

2017-04-13  Arthur de Jong <arthur@arthurdejong.org>

	* [6b588d1] stdnum/damm.py: Fix bug in damm.is_valid() function

2017-04-11  Arthur de Jong <arthur@arthurdejong.org>

	* [35542c1] ChangeLog, MANIFEST.in, NEWS, README, docs/index.rst,
	  docs/stdnum.ar.cbu.rst, docs/stdnum.eu.eic.rst,
	  docs/stdnum.eu.nace.rst, docs/stdnum.lei.rst,
	  docs/stdnum.mc.tva.rst, docs/stdnum.rs.pib.rst, stdnum/__init__.py:
	  Get files ready for 1.6 release

2017-04-10  Arthur de Jong <arthur@arthurdejong.org>

	* [93459d3] stdnum/cn/loc.dat, stdnum/eu/nace.dat, stdnum/iban.dat,
	  stdnum/imsi.dat, stdnum/isbn.dat: Update database files

2017-04-10  Arthur de Jong <arthur@arthurdejong.org>

	* [bb1712d] online_check/README, online_check/check.js,
	  online_check/jquery-1.7.1.js, online_check/jquery-1.7.1.min.js,
	  online_check/stdnum.wsgi, online_check/template.html: Add simple
	  online check example

	  This adds the code that is used to find formats for which a
	  supplied number is valid. This is the code that is used on
	    https://arthurdejong.org/python-stdnum/check/

2017-04-10  Arthur de Jong <arthur@arthurdejong.org>

	* [5398247] stdnum/lei.py, tests/test_lei.doctest: Add Legal
	  Entity Identifier

2017-04-10  Arthur de Jong <arthur@arthurdejong.org>

	* [e844b52] stdnum/iban.py, stdnum/iso7064/mod_97_10.py: Integrate
	  base10 conversion into Mod 97, 10

	  This moves the conversion of an alphanumeric string to a numeric
	  representation for modulo 97 calculation to the mod_97_10 module
	  because this mechanism seems to be used by multiple formats.

2017-04-10  Arthur de Jong <arthur@arthurdejong.org>

	* [1b3d16e] stdnum/es/nie.py: Add missing export (__all__)

2017-04-10  Arthur de Jong <arthur@arthurdejong.org>

	* [72f5c6c] stdnum/rs/__init__.py, stdnum/rs/pib.py,
	  tests/test_rs_pib.doctest: Add Serbian Poreski Identifikacioni Broj

2017-04-10  Arthur de Jong <arthur@arthurdejong.org>

	* [800205c] tox.ini: Print warnings during tox run

2017-04-07  Arthur de Jong <arthur@arthurdejong.org>

	* [7493eca] stdnum/cusip.py, stdnum/ean.py, stdnum/ec/ci.py,
	  stdnum/isin.py, stdnum/tr/tckimlik.py: Use a slightly more
	  readable weight alternation

	  Switch to a slightly more readable syntax for alternating between
	  two weights in checksums calculations.

2017-04-01  Arthur de Jong <arthur@arthurdejong.org>

	* [23b2150] stdnum/eu/eic.py, tests/test_eu_eic.doctest: Add
	  European EIC (Energy Identification Code)

2017-03-26  Arthur de Jong <arthur@arthurdejong.org>

	* [194f025] stdnum/meid.py, tests/test_robustness.doctest: Add
	  unicode robustness tests

	  This tests a few unicode strings and fixes a bug in the MEID
	  module.

2017-03-26  Arthur de Jong <arthur@arthurdejong.org>

	* [d43c394] stdnum/es/referenciacatastral.py,
	  tests/test_es_referenciacatastral.doctest: Add test for Ñ in
	  Referencia Catastral

	  This supports the Referencia Catastral with an Ñ in it for
	  both byte strings (Python 2) and unicode strings (Python 2 and
	  3). Support for literal unicode strings in Python 2 doctests is
	  flaky so the test is a bit ugly.

	  This also adds a few numbers that were found online. Sadly no
	  real numbers with an Ñ in it have been found so the one in the
	  test was constructed.

2017-03-26  Arthur de Jong <arthur@arthurdejong.org>

	* [61d73c1] getnace.py, stdnum/eu/nace.dat, stdnum/eu/nace.py,
	  tests/test_robustness.doctest: Add European NACE classification

	  This number is used to classify business. Validation is done
	  based on a downloaded registry.

2017-03-26  Arthur de Jong <arthur@arthurdejong.org>

	* [649f073] stdnum/mc/tva.py: Remove unused import

2017-03-19  Arthur de Jong <arthur@arthurdejong.org>

	* [c957318] stdnum/fr/tva.py, stdnum/mc/__init__.py,
	  stdnum/mc/tva.py, tests/test_eu_vat.doctest: Add support for
	  Monaco VAT number

	  The number uses the French TVA number but, unlike normal French
	  VAT numbers, they are not valid French SIREN numbers.

	  See https://github.com/arthurdejong/python-stdnum/issues/46

2016-12-11  Arthur de Jong <arthur@arthurdejong.org>

	* [5b43857] stdnum/au/tfn.py: Remove unused import

2016-12-01  Greg Kuwaye <gkuwaye@lyft.com>

	* [7d16ea5] stdnum/us/ein.dat: Add new 47 EIN prefix; fix duplicate
	  46; move 81

	  47 appears to be a new Internet campus code. Prefix 46
	  was listed twice, once under the Philadelphia campus and
	  again under the Internet campus.  This error may be seen
	  on the IRS website itself. The Wikipedia article on EIN
	  (https://en.wikipedia.org/wiki/Employer_Identification_Number)
	  does not have 46 listed twice. 81 has moved from the Philadelphia
	  campus to the Internet campus.

2016-11-14  Luciano Rossi <lukio@gcoop.coop>

	* [dcde8f4] stdnum/ar/cbu.py, tests/test_ar_cbu.doctest: Implement
	  CBU (unique bank code) of Argentina

	  See https://github.com/arthurdejong/python-stdnum/issues/43

2016-11-14  Arthur de Jong <arthur@arthurdejong.org>

	* [da18e3b] setup.py, stdnum/fi/associationid.py, stdnum/meid.py,
	  tests/test_mx_rfc.doctest, tox.ini: Add Python 2.6 support

	  This also brings the list of Python versions in setup.py in line
	  with tox.ini.

2016-11-13  Arthur de Jong <arthur@arthurdejong.org>

	* [62ebbce] ChangeLog, NEWS, README, docs/index.rst,
	  docs/stdnum.au.abn.rst, docs/stdnum.au.acn.rst,
	  docs/stdnum.au.tfn.rst, docs/stdnum.es.ccc.rst,
	  docs/stdnum.es.cups.rst, docs/stdnum.es.iban.rst,
	  docs/stdnum.es.referenciacatastral.rst, stdnum/__init__.py:
	  Get files ready for 1.5 release

2016-11-13  Arthur de Jong <arthur@arthurdejong.org>

	* [c9beb00] stdnum/cn/loc.dat, stdnum/iban.dat, stdnum/imsi.dat,
	  stdnum/isbn.dat, stdnum/isil.dat, tests/test_iban.doctest:
	  Update database files

	  This removes the Costa Rica IBAN test because the format of the
	  IBAN seems to have been changed. The old length still seems to
	  be in use so a more permanent solution is probably required.

2016-11-13  Arthur de Jong <arthur@arthurdejong.org>

	* [ac560a7] getisbn.py: Update getisbn to Python3

	  There were some SSL-related issues with the urllib module. This
	  was the easiest solution.

2016-11-13  Arthur de Jong <arthur@arthurdejong.org>

	* [458c310] getiban.py: Update gettin IBAN registry

	  The format of the registry file has changed. Before it was a
	  straightforward CSV file with countries in rows but countries
	  are now in columns.

2016-11-09  Sergi Almacellas Abellana <sergi@koolpi.com>

	* [45faa7c] .gitignore, tox.ini: Add tox.ini file

2016-11-08  Sergi Almacellas Abellana <sergi@koolpi.com>

	* [a9e5405] stdnum/eu/at_02.py: Implement calc_check_digits in
	  SEPA Identifier of the Creditor (AT-02)

2016-10-14  Arthur de Jong <arthur@arthurdejong.org>

	* [8ea76ba] stdnum/au/tfn.py, tests/test_au_tfn.doctest: Add
	  Australian Tax File Number

	  Based on the implementation provided by Vincent Bastos
	  <vincent@lavalab.com.au>

	  See https://github.com/arthurdejong/python-stdnum/pull/40

2016-10-14  Arthur de Jong <arthur@arthurdejong.org>

	* [8028c3a] stdnum/au/acn.py, tests/test_au_acn.doctest: Add
	  Australian Company Number

	  Based on the implementation provided by Vincent Bastos
	  <vincent@lavalab.com.au>

	  See https://github.com/arthurdejong/python-stdnum/pull/40

2016-10-14  Arthur de Jong <arthur@arthurdejong.org>

	* [70b94ee] stdnum/au/__init__.py, stdnum/au/abn.py,
	  tests/test_au_abn.doctest: Add Australian Business Number

	  Based on the implementation provided by Vincent Bastos
	  <vincent@lavalab.com.au>

	  See https://github.com/arthurdejong/python-stdnum/pull/40

2016-10-14  Arthur de Jong <arthur@arthurdejong.org>

	* [d7cff5d] stdnum/be/__init__.py, stdnum/be/vat.py: Provide
	  businessid as an alias

	  The Belgian company number or enterprise number
	  (ondernemingsnummer) is the new name for what was previously
	  the VAT number.

2016-09-10  Arthur de Jong <arthur@arthurdejong.org>

	* [352aa8a] stdnum/es/referenciacatastral.py: Add reference to
	  Referencia Catastral implementation

2016-09-03  Arthur de Jong <arthur@arthurdejong.org>

	* [49db553] tests/test_es_referenciacatastral.doctest: Add more
	  tests for Referencia Catastral

	  This adds a number of extra tests for the Spanish Referencia
	  Catastral (stdnum.es.referenciacatastral) module, mostly based
	  on numbers found online.

	  This commit includes some of the documentation on the structure
	  of Referencia Catastral that was in the original pull request.

	  See https://github.com/arthurdejong/python-stdnum/pull/38

2016-08-31  David García Garzón <david.garcia@upf.edu>

	* [2c557a0] stdnum/es/referenciacatastral.py: Add Spansih Referencia
	  Catastral

	  The control digit check algorithm is based on Javascript
	  implementation by Vicente Sancho that can be found at
	  http://trellat.es/validar-la-referencia-catastral-en-javascript/

	  See https://github.com/arthurdejong/python-stdnum/pull/38

2016-09-10  Arthur de Jong <arthur@arthurdejong.org>

	* [b128c8d] tests/test_iban.doctest: Test a few Spanish IBANs
	  found online

2016-09-10  Arthur de Jong <arthur@arthurdejong.org>

	* [878e036] stdnum/numdb.py: Avoid leaving open file descriptor
	  in test

2016-09-08  Arthur de Jong <arthur@arthurdejong.org>

	* [be24790] stdnum/es/iban.py, tests/test_iban.doctest: Add Spanish
	  IBAN number module

	  This validates the country-specific part of the IBAN.

2016-09-08  Arthur de Jong <arthur@arthurdejong.org>

	* [2510932] stdnum/iban.py: Validate country-specific part of IBAN

	  This adds the possible of validating the country-specific part
	  of the IBAN. If the country has an IBAN module, checking is also
	  delegated to that module.

2016-09-06  Arthur de Jong <arthur@arthurdejong.org>

	* [d8cca82] stdnum/eu/vat.py, stdnum/util.py: Introduce
	  get_cc_module() utility function

	  This changes the get_vat_module() function to a more generic
	  get_cc_module() function so that it can also be used for other
	  things like IBAN checking.

2016-09-06  Arthur de Jong <arthur@arthurdejong.org>

	* [1622873] stdnum/es/ccc.py: Add to_iban() function to Spanish CCC

2016-09-08  Arthur de Jong <arthur@arthurdejong.org>

	* [7d969be] stdnum/iban.py: Implement calc_check_digits() in IBAN

	  Introduce a function to calculate the two check digits of an
	  IBAN. Since the check digits are the third and fourth characters
	  in the number, placeholders need to be provided when calling
	  this function.

2016-08-31  David García Garzón <voki@canvoki.net>

	* [294f872] stdnum/es/ccc.py: Add Spanish Código Cuenta Corriente
	  (CCC)

2016-08-28  David García Garzón <david.garcia@upf.edu>

	* [466cec8] stdnum/es/cups.py, tests/test_es_cups.doctest: Add
	  Spanish CUPS code

2016-08-28  Arthur de Jong <arthur@arthurdejong.org>

	* [d95382f] stdnum/exceptions.py: Properly print error message
	  of exceptions

	  This ensures that the message passed to the constructor is shown
	  in the traceback while falling back to the class default.

2016-07-26  Arthur de Jong <arthur@arthurdejong.org>

	* [01a7f34] ChangeLog, NEWS, README, docs/index.rst,
	  docs/stdnum.damm.rst, docs/stdnum.fr.nif.rst,
	  docs/stdnum.fr.nir.rst, docs/stdnum.fr.siret.rst,
	  docs/stdnum.gb.nhs.rst, docs/stdnum.tr.tckimlik.rst,
	  stdnum/__init__.py: Get files ready for 1.4 release

2016-07-26  Arthur de Jong <arthur@arthurdejong.org>

	* [3e4e9e2] getmybp.py, stdnum/cn/loc.dat, stdnum/iban.dat,
	  stdnum/imsi.dat, stdnum/isbn.dat, stdnum/isil.dat: Update
	  database files

	  This also updates the getmybp script to support the new layout.

2016-07-26  Arthur de Jong <arthur@arthurdejong.org>

	* [3e344d1] stdnum/iso6346.py: Add formatting of ISO 6346 container
	  codes

2016-07-26  Arthur de Jong <arthur@arthurdejong.org>

	* [aa1c298] getnumlist.py, stdnum/damm.py, tests/test_damm.doctest:
	  Implement Damm algorithm

	  This is a generic check digit algorithm.  2016-07-26	Arthur de
Jong <arthur@arthurdejong.org>

	* [411d038] stdnum/fr/nif.py: Fix French NIF format test

	  Fixes 2409ee9.  2016-07-26  Arthur de Jong
<arthur@arthurdejong.org>

	* [06e4165] stdnum/ch/ssn.py: Improve validation to Swiss SSN number

	  The EAN-13 number should start with 756.

2016-07-26  Arthur de Jong <arthur@arthurdejong.org>

	* [1907c67] stdnum/br/cpf.py: Add documentation to Brazillian CPF

2016-07-26  Arthur de Jong <arthur@arthurdejong.org>

	* [cf428ac] stdnum/iso6346.py: Add pointer to ISO 6346 information

2016-07-26  Arthur de Jong <arthur@arthurdejong.org>

	* [011c0f0] stdnum/gb/nhs.py: Fix copyright notice

2016-05-22  Dimitri Papadopoulos <dimitri.papadopoulos@cea.fr>

	* [2409ee9] stdnum/fr/nif.py: Add NIF - French tax identification
	  number

	  Add module for NIF also known as SPI number.

2016-07-26  Arthur de Jong <arthur@arthurdejong.org>

	* [43b58d3] stdnum/fr/nir.py: Move NIR check digit calculation
	  to function

	  This also fixes a number of formatting issues, improves the
	  module description and adds tests for the 2A and 2B departments.

2016-05-29  Dimitri Papadopoulos <dimitri.papadopoulos@cea.fr>

	* [879f2d3] stdnum/fr/nir.py: Improve French NIR validation

	  Please note that the 7th character of the NIR might be 'A' or
	  'B'. Other than that the NIR contains digits only.

2016-07-25  Arthur de Jong <arthur@arthurdejong.org>

	* [fd9f953] stdnum/fr/siren.py, stdnum/fr/siret.py,
	  tests/test_fr_siren.doctest, tests/test_fr_siret.doctest: Add
	  extra tests for SIREN and SIRET

	  This adds tests for a few numbers that have been found online
	  and allows the dot as a seprator because those numbers were found.

	  It also ensures that the SIREN validation is also called for
	  SIRET and adds a SIRET formatting function.

2016-05-27  Yoann Aubineau <y.aubineau@criteo.com>

	* [5ba3a87] stdnum/fr/siret.py: Add French SIRET number

	  Add a SIRET (Système d'Identification du Répertoire des
	  ETablissements, a French company etablishment identification
	  number) module.

2016-05-29  Arthur de Jong <arthur@arthurdejong.org>

	* [dc708f0] stdnum/isil.py, tests/test_isil.doctest: Add more
	  ISIL tests

	  This moves a few of the tests from the module to a dedicated
	  test file and adds tests for a number of ISIL numbers found online.

2016-05-29  Arthur de Jong <arthur@arthurdejong.org>

	* [4a57d84] stdnum/us/tin.py: Fix formatting of bulleted list

2016-05-28  Arthur de Jong <arthur@arthurdejong.org>

	* [9b74840] stdnum/ch/ssn.py, tests/test_ch_ssn.doctest: Fix bug
	  in Swiss SSN validation

	  The validation was delegated to the EAN module but the number
	  is supposed to be an EAN-13 only and and EAN-8 was also accepted.

	  This also reformats the docstring.

2016-05-28  Arthur de Jong <arthur@arthurdejong.org>

	* [f3c2491] stdnum/ie/vat.py, tests/test_ie_vat.doctest: Fix bug
	  in Irish VAT number validation

	  The last digits of the number that should be letters were not
	  tested to be letters which could result in ValueError being
	  raised for certain validations.

	  This also clarifies the documentation and adds a convert()
	  function to convert numbers from the old format (where the
	  second character would be a letter or symbol) to the new format
	  (7 digits followed by 1 or 2 letters).

2016-05-28  Arthur de Jong <arthur@arthurdejong.org>

	* [b5397ed] tests/test_robustness.doctest: Small improvements
	  to tests

	  This includes a formatting fix and removes an unused variable
	  from a test.

2016-05-28  Arthur de Jong <arthur@arthurdejong.org>

	* [d85b27f] stdnum/util.py: Fix get_module_description()

	  This fixes the initial implementation in 3f6d52a.

2016-05-22  Dimitri Papadopoulos <dimitri.papadopoulos@cea.fr>

	* [a1afa76] stdnum/fr/nir.py: Add French NIR

	  Add module for NIR also known as social security number.

2016-05-09  Arthur de Jong <arthur@arthurdejong.org>

	* [0a2f39e] stdnum/gb/nhs.py: Add United Kingdom NHS number

	  Add module for United Kingdom National Health Service patient
	  identifier.

2016-05-09  Arthur de Jong <arthur@arthurdejong.org>

	* [2126947] stdnum/numdb.py: Read numdb files in context manager

	  This ensures that the file is explicitly closed in the function
	  to avoid "unclosed file" warnings.

	  See: https://github.com/arthurdejong/python-stdnum/issues/33

2016-04-11  Arthur de Jong <arthur@arthurdejong.org>

	* [e28b5e1] stdnum/ch/uid.py, stdnum/ch/vat.py, stdnum/cusip.py,
	  stdnum/dk/cpr.py, stdnum/iban.py, stdnum/imei.py, stdnum/isbn.py,
	  stdnum/isil.py, stdnum/isin.py, stdnum/issn.py, stdnum/mx/rfc.py,
	  stdnum/nl/bsn.py, stdnum/nl/onderwijsnummer.py, stdnum/pl/regon.py,
	  stdnum/tr/tckimlik.py, stdnum/us/ssn.py, stdnum/verhoeff.py:
	  Make more information links consistent

	  Also fix a docstring in stdnum.nl.bsn and add a pointer to
	  stdnum.nl.onderwijsnummer.

2016-04-09  Arthur de Jong <arthur@arthurdejong.org>

	* [feab917] stdnum/eu/vat.py, stdnum/tr/tckimlik.py, stdnum/util.py:
	  Implement online TC Kimlik check

	  This refactors out the SOAP client function that was implemented
	  for VIES to the stdnum.utils module.

2016-04-09  Arthur de Jong <arthur@arthurdejong.org>

	* [619b097] stdnum/tr/__init__.py, stdnum/tr/tckimlik.py,
	  tests/test_tr_tckimlik.doctest: Add Turkish personal identification
	  number

2016-04-01  Arthur de Jong <arthur@arthurdejong.org>

	* [095dcbb] stdnum/mx/rfc.py, tests/test_mx_rfc.doctest: Document
	  accuracy of RFC check digit test

	  There is an online service that allows validating RFC numbers. It
	  seems there are a lot of numbers that do not match the check
	  digit algorithm which confirms disabling the check digit test
	  by default is a good idea.

	  Also see https://github.com/arthurdejong/python-stdnum/issues/32

2016-03-05  Arthur de Jong <arthur@arthurdejong.org>

	* [41cecb5] ChangeLog, NEWS, getnumlist.py, setup.py,
	  stdnum/__init__.py: Get files ready for 1.3 release

2016-03-03  Arthur de Jong <arthur@arthurdejong.org>

	* [6457734] getcnloc.py, getiban.py, stdnum/cn/loc.dat,
	  stdnum/iban.dat, stdnum/imsi.dat, stdnum/isbn.dat, stdnum/isil.dat:
	  Update database files

	  This also updates the getcnloc and getiban scripts to use new URLs.

2015-10-30  Arthur de Jong <arthur@arthurdejong.org>

	* [0061564] stdnum/dk/cpr.py, stdnum/iban.py, stdnum/imei.py,
	  stdnum/isbn.py, stdnum/isil.py, stdnum/issn.py, stdnum/nl/bsn.py,
	  stdnum/us/ssn.py, stdnum/verhoeff.py: Integrate information from
	  the wiki

	  This adds the information that was previously in the Trac wiki
	  into the source docstrings because the Trac instance is being
	  phased out.

	  This also includes small updates to the ISIL module.

2015-10-28  Arthur de Jong <arthur@arthurdejong.org>

	* [96c8151] stdnum/eu/vat.py: Fix SOAP client re-use

	  This fixes a bug when checking re-use of the global SOAP client
	  object.  The object could not be evaluated in boolean context
	  so is no explicitly compared to None. For suds a MethodNotFound
	  exception would be raised for __nonzero__() (which Python uses
	  for boolean comparison).

2015-10-28  Lionel Elie Mamane <lionel@mamane.lu>

	* [2881b86] stdnum/eu/vat.py: Fix problem with check_vies_approx()

2015-10-15  Ronald Paloschi <ronald.paloschi@gmail.com>

	* [fb0efe0] stdnum/iso6346.py, tests/test_iso6346.doctest: Fix
	  for when ISO 6346 checksum is 10

	  Bug fix for when the checksum is 10, it was compared to 0 and
	  failed.  New doctest exposing the bug that passes after the fix
	  is applied.

	  See: https://github.com/arthurdejong/python-stdnum/pull/30

2015-10-11  Arthur de Jong <arthur@arthurdejong.org>

	* [1361817] ChangeLog, MANIFEST.in, NEWS, README, docs/index.rst,
	  docs/stdnum.at.businessid.rst, docs/stdnum.br.cnpj.rst,
	  docs/stdnum.ch.uid.rst, docs/stdnum.ch.vat.rst,
	  docs/stdnum.cusip.rst, docs/stdnum.de.wkn.rst,
	  docs/stdnum.ee.ik.rst, docs/stdnum.fi.associationid.rst,
	  docs/stdnum.fi.ytunnus.rst, docs/stdnum.gb.sedol.rst,
	  docs/stdnum.imo.rst, docs/stdnum.isin.rst, docs/stdnum.mx.rfc.rst,
	  docs/stdnum.pl.pesel.rst, docs/stdnum.pl.regon.rst,
	  docs/stdnum.ru.inn.rst, setup.py, stdnum/__init__.py: Get files
	  ready for 1.2 release

2015-10-11  Arthur de Jong <arthur@arthurdejong.org>

	* [1327045] getcnloc.py, stdnum/cn/loc.dat, stdnum/iban.dat,
	  stdnum/imsi.dat, stdnum/isbn.dat, stdnum/isil.dat: Update
	  database files

	  This also updates the script to download updated Chinese
	  location names.

2015-10-11  Arthur de Jong <arthur@arthurdejong.org>

	* [a891c60] stdnum/al/nipt.py, stdnum/co/nit.py, stdnum/iban.py,
	  stdnum/ie/pps.py, stdnum/imei.py, stdnum/isan.py,
	  stdnum/iso6346.py, stdnum/it/codicefiscale.py, stdnum/meid.py,
	  stdnum/nl/postcode.py, stdnum/numdb.py, stdnum/pt/nif.py,
	  stdnum/us/atin.py, stdnum/us/ein.py, stdnum/us/itin.py,
	  stdnum/us/ptin.py, stdnum/us/ssn.py, stdnum/util.py: Code style
	  improvements

	  Ensure that regular expressions are r'' strings, avoid too
	  long lines and fix line wrapping. Also avoid catching toplevel
	  Exception when possible and use binascii for hex to binary
	  conversion which is available in both Python 2 and 3.

2015-10-11  Arthur de Jong <arthur@arthurdejong.org>

	* [3c7a302] stdnum/cusip.py, stdnum/de/wkn.py, stdnum/gb/sedol.py,
	  stdnum/isin.py: Convert security ids to ISIN

	  Allow conversion from national securities identifiers to the
	  international ISIN.

2015-10-11  Arthur de Jong <arthur@arthurdejong.org>

	* [c565517] stdnum/de/wkn.py, tests/test_de_wkn.doctest: Add
	  German Wertpapierkennnummer

	  The format itself is pretty simple (no check digit) but this
	  module is more for completeness sake.

2015-10-10  Arthur de Jong <arthur@arthurdejong.org>

	* [961815f] stdnum/gb/sedol.py, tests/test_gb_sedol.doctest:
	  Add SEDOL number

2015-10-10  Arthur de Jong <arthur@arthurdejong.org>

	* [fb91775] stdnum/ru/__init__.py: Add information to Russian package

2015-10-10  Arthur de Jong <arthur@arthurdejong.org>

	* [ebb5c07] MANIFEST.in, stdnum/numdb.py, tests/numdb-test.dat:
	  Move numdb test file

	  This places the test database file in the tests directory.

2015-10-10  Arthur de Jong <arthur@arthurdejong.org>

	* [fa8099e] stdnum/imo.py: Add int. maritime org. number (IMO)

	  This adds checks for the International Maritime Organization
	  number used to identify ships. However, there seem to be a lot
	  of ships with an IMO number that does not follow these rules
	  (different check digits or even length).

2015-10-10  Arthur de Jong <arthur@arthurdejong.org>

	* [111b4fd] stdnum/isan.py, tests/test_isan.doctest: Fix handling
	  of strip_check_digits in ISAN

	  This fixes the compact() function to honor the strip_check_digits
	  argument and does not validate the check digits if they are
	  passed to validate together with strip_check_digits.

2015-10-10  Arthur de Jong <arthur@arthurdejong.org>

	* [9f9d13c] stdnum/isin.py, tests/test_isin.doctest: Add
	  international securities id (ISIN)

	  This adds support for handling ISINs (International Securities
	  Identification Number). The can contain a CUSIP but performing
	  this additional validation is currently not performed.

2015-10-09  Arthur de Jong <arthur@arthurdejong.org>

	* [522611c] stdnum/cusip.py, tests/test_cusip.doctest: Add CUSIP
	  number

2015-10-08  Arthur de Jong <arthur@arthurdejong.org>

	* [320ecea] stdnum/ch/uid.py, stdnum/ch/vat.py,
	  tests/test_ch_uid.doctest, tests/test_ch_vat.doctest: Add Swiss
	  UID and VAT numbers

	  The Swiss VAT number (MWST, TVA, IVA, TPV) is the UID
	  (Unternehmens-Identifikationsnummer) followed by one of the
	  VAT abbreviations.

2015-10-05  Arthur de Jong <arthur@arthurdejong.org>

	* [ec9bcb0] stdnum/mx/__init__.py, stdnum/mx/rfc.py,
	  tests/test_mx_rfc.doctest: Add Mexican RFC number

	  This adds support for the Mexican tax number RFC (Registro
	  Federal de Contribuyentes).

	  This module includes a number of checks on the number but the
	  validation of the last check digit is disabled by default because
	  a large number of numbers were found that were otherwise valid
	  but had an invalid check digit.

2015-10-04  Arthur de Jong <arthur@arthurdejong.org>

	* [fd0cfd9] stdnum/eu/vat.py, stdnum/util.py: Move finding VAT
	  module to util

	  This moves the finding of a VAT module to the util module so
	  that it can be more easily re-used for non-EU countries.

2015-10-04  Arthur de Jong <arthur@arthurdejong.org>

	* [38ed9c0] stdnum/co/nit.py, tests/test_co_nit.doctest: Update
	  Colombian NIT checks

	  This adds a number of tests for numbers found online. The length
	  check has also been revisited because both shorter numbers and
	  longer number have been found.

	  This also updates the format() function to handle arbitrary
	  length numbers.

2015-10-02  Arthur de Jong <arthur@arthurdejong.org>

	* [d413f95] stdnum/isbn.py: Fix comment

2015-10-02  Arthur de Jong <arthur@arthurdejong.org>

	* [3d1dbbb] stdnum/ar/cuit.py, stdnum/bg/egn.py, stdnum/bg/pnf.py,
	  stdnum/bg/vat.py, stdnum/co/nit.py, stdnum/dk/cpr.py,
	  stdnum/dk/cvr.py, stdnum/do/rnc.py, stdnum/ec/ruc.py,
	  stdnum/ee/kmkr.py, stdnum/fi/alv.py, stdnum/gb/vat.py,
	  stdnum/hu/anum.py, stdnum/is_/kennitala.py, stdnum/lv/pvn.py,
	  stdnum/mt/vat.py, stdnum/no/orgnr.py, stdnum/pl/nip.py,
	  stdnum/pl/pesel.py, stdnum/pl/regon.py, stdnum/ro/cf.py,
	  stdnum/ro/cnp.py: Use zip() instead of enumerate()

	  Makes the code slightly simpler and more compact.

2015-10-01  Sergio Isidoro <sergio@holvi.com>

	* [222a87e] stdnum/fi/__init__.py: Add alias to hetu in for finnish
	  personal id code

2015-09-27  Arthur de Jong <arthur@arthurdejong.org>

	* [e045c71] tests/test_eu_vat.doctest: Add more numbers found online

2015-09-07  Dariusz Choruzy <darobial@gmail.com>

	* [36217ac] stdnum/pl/regon.py, tests/test_pl_regon.doctest:
	  Add Polish REGON number

2015-09-06  Dariusz Choruzy <darobial@gmail.com>

	* [a0cb61f] stdnum/pl/pesel.py: Add Polish PESEL number

2015-08-16  Arthur de Jong <arthur@arthurdejong.org>

	* [5ab8d24] stdnum/ru/__init__.py, stdnum/ru/inn.py,
	  tests/test_ru_inn.doctest: Add Russioan ИНН (INN) tax ID

	  This adds a basic implementation of the Russian
	  Идентификационный номер
	  налогоплательщика (tax identification
	  number). This currently only checks the format, length and check
	  digits but not whether each of the parts of the number are valid
	  (e.g. valid region specified).

2015-08-16  Arthur de Jong <arthur@arthurdejong.org>

	* [714fa60] stdnum/br/cnpj.py, tests/test_br_cnpj.doctest: Add
	  Brazillian CNPJ business identifier

	  Add module for Cadastro Nacional da Pessoa Jurídica, the
	  Brazillian company identifier.

2015-08-16  Arthur de Jong <arthur@arthurdejong.org>

	* [b939099] getiban.py, stdnum/iban.dat, tests/test_iban.doctest:
	  Update IBAN tests

	  This updates the iban.dat file from the IBAN registry, includes
	  a fix for handling spaces in the BBAN and adds some more IBAN
	  examples from the IBAN registry.

2015-08-16  Arthur de Jong <arthur@arthurdejong.org>

	* [7714db7] stdnum/iso9362.py: Make uppercase in compact()

	  This changes the compact() function of the ISO 9362 module to
	  make all the letters uppercase.

2015-08-16  Arthur de Jong <arthur@arthurdejong.org>

	* [6afa875] setup.cfg, stdnum/imei.py, stdnum/isbn.py,
	  stdnum/isil.py, stdnum/ismn.py, stdnum/meid.py, stdnum/us/atin.py,
	  stdnum/us/ein.py, stdnum/us/itin.py: Turn on and improve branch
	  coverage

2015-08-16  Arthur de Jong <arthur@arthurdejong.org>

	* [e88ba0b] stdnum/dk/cpr.py, stdnum/is_/kennitala.py,
	  stdnum/it/codicefiscale.py: Small typo and code style fixes

2015-08-03  Tomas Karasek <tom.to.the.k@gmail.com>

	* [243e50f] stdnum/ee/ik.py, tests/test_ee_ik.doctest: Add validation
	  of Estonian personal ID

2015-06-12  Lari Haataja <lari@holvi.com>

	* [7f9c94f] stdnum/at/businessid.py: Add company register number
	  validation for Austria

2015-07-12  Arthur de Jong <arthur@arthurdejong.org>

	* [0cbba6e] : Merge Finnish numbers provided by Holvi

	  This merges the Finnish numbers provided by Holvi Payment Services
	  Oy as found here: https://github.com/holvi/python-stdnum

2015-07-12  Arthur de Jong <arthur@arthurdejong.org>

	* [320326e] stdnum/fi/ytunnus.py: Split out format() function

	  This uses the stdnum.fi.alv module more extensively and ensures
	  that validate() returns a compact representation and a separate
	  format() function is available.

2015-06-23  Lari Haataja <lari@holvi.com>

	* [37f7fa6] stdnum/fi/__init__.py, stdnum/fi/ytunnus.py: Add
	  validation for Finnish y-tunnus (business identifier)

2015-07-12  Arthur de Jong <arthur@arthurdejong.org>

	* [db24746] stdnum/fi/associationid.py: Add a whitelist for short
	  numbers and fix API

	  This implements separate functions compact() and format() and
	  fixes the doctests. This also implements a whitelist of registered
	  short numbers to avoid accidentally validating just any number.

2015-06-16  Lari Haataja <lari@holvi.com>

	* [8d30992] stdnum/fi/associationid.py: Validation for Finnish
	  association identifier

2015-07-12  Arthur de Jong <arthur@arthurdejong.org>

	* [e107457] : Merge changes to use CN Open Data

2015-07-12  Arthur de Jong <arthur@arthurdejong.org>

	* [a1a134e] stdnum/eu/vat.py: Fall back to pysimplesoap if suds
	  is unavailable

	  Initial testing seems to suggest that proxy-support is not
	  complete with pysimplesoap (at least httplib2 and PySocks seem
	  to be required).

2015-04-28  Lionel Elie Mamane <lmamane@debian.org>

	* [8fe44f9] stdnum/eu/vat.py: Implement alternate VIES check

	  Add a function to stdnum.eu.vat so that when one does a VIES VAT
	  number check, one gets a proof (certificate) that one did the
	  check, as defence against the VAT administration later putting
	  this in doubt. This certificate is provided by the VIES service,
	  if one provides one's own VAT number.

2015-06-08  Jiangge Zhang <tonyseek@gmail.com>

	* [6308261] stdnum/cn/loc.dat: Download and generate latest Chinese
	  location data.

2015-06-08  Jiangge Zhang <tonyseek@gmail.com>

	* [12ba352] getcnloc.py: Download GB2260 data from github.com/cn.

2015-04-27  Arthur de Jong <arthur@arthurdejong.org>

	* [8925ae2] tests/test_iso6346.doctest: Fix copyright header

2015-04-27  Arthur de Jong <arthur@arthurdejong.org>

	* [58775d9] ChangeLog, NEWS, README, docs/index.rst,
	  docs/stdnum.al.nipt.rst, docs/stdnum.ar.cuit.rst,
	  docs/stdnum.cl.rut.rst, docs/stdnum.co.nit.rst,
	  docs/stdnum.do.cedula.rst, docs/stdnum.do.rnc.rst,
	  docs/stdnum.is_.kennitala.rst, docs/stdnum.is_.vsk.rst,
	  docs/stdnum.iso9362.rst, docs/stdnum.no.mva.rst,
	  docs/stdnum.no.orgnr.rst, docs/stdnum.se.orgnr.rst,
	  docs/stdnum.sm.coe.rst, setup.py, stdnum/__init__.py: Get files
	  ready for 1.1 release

2015-04-27  Arthur de Jong <arthur@arthurdejong.org>

	* [583b066] getcnloc.py, stdnum/cn/loc.dat, stdnum/iban.dat,
	  stdnum/imsi.dat, stdnum/isbn.dat, stdnum/isil.dat: Update
	  database files

	  This also updates the script to download updated Chinese
	  location names.

2014-10-24  Tomas Thor Jonsson <benregn@gmail.com>

	* [dd309e4] stdnum/se/orgnr.py, stdnum/se/vat.py: Add support for
	  SE orgnr

	  This also delegates some of the validation for the Swedish VAT
	  module to the orgnr module.

2015-04-27  Arthur de Jong <arthur@arthurdejong.org>

	* [23882e2] tests/test_ec_ruc.doctest: Add extra tests for the
	  stdnum.ec.ruc module

	  These numbers were found in various online sources.

2015-04-25  Arthur de Jong <arthur@arthurdejong.org>

	* [eac4d63] stdnum/fr/tva.py: Add extra test for French TVA

2014-10-14  P. Christeas <xrg@linux.gr>

	* [9934f76] stdnum/gr/vat.py: Change description of Greek FPA number

	  In Greece, our VAT number is used as a generic "tax registration"
	  num.	Update the docstring to reflect that name.

2015-04-22  Arthur de Jong <arthur@arthurdejong.org>

	* [4d7163c] stdnum/ar/__init__.py, stdnum/ar/cuit.py,
	  tests/test_ar_cuit.doctest: Add Argentinian CUIT (VAT) number

	  Based partially on the implementation in the vatnumber module.

2015-04-18  Arthur de Jong <arthur@arthurdejong.org>

	* [ba894d7] stdnum/sm/__init__.py, stdnum/sm/coe.py: Add San Marino
	  COE (VAT) number

	  Based partially on the implementation in the vatnumber module.

2015-04-18  Arthur de Jong <arthur@arthurdejong.org>

	* [144e1a4] stdnum/co/__init__.py, stdnum/co/nit.py: Add Colombian
	  NIT/RUT (VAT) code

	  Based on the implementation in the vatnumber module.

2015-04-18  Arthur de Jong <arthur@arthurdejong.org>

	* [c69c8f0] stdnum/cl/__init__.py, stdnum/cl/rut.py,
	  tests/test_cl_rut.doctest: Add Chilean national tax number (RUT)

	  Based on the implementation in the vatnumber module.

2015-04-18  Arthur de Jong <arthur@arthurdejong.org>

	* [3db826c] stdnum/al/__init__.py, stdnum/al/nipt.py,
	  tests/test_al_nipt.doctest: Add Albanian NIPT (VAT) number

	  Partially based on the implementation in the vatnumber module.

	  Some valid numbers appear to start with an L so those are allowed
	  as well.

2015-04-23  Arthur de Jong <arthur@arthurdejong.org>

	* [88d1af3] stdnum/do/cedula.py: Extend the list of valid Cedula

	  This is based on the list of Cedula found at
	  http://prd.org.do/2013/07/30/lista-del-cen-del-prd-actualizada-y-registrada-en-la-junta-central-electoral/
	  (link provided by José Arturo García)

2015-04-17  Arthur de Jong <arthur@arthurdejong.org>

	* [49d1e69] stdnum/do/cedula.py, tests/test_do_cedula.doctest:
	  Add Dominican Republic Cedula number

	  The Cedule is a Dominican Republic national identification number
	  for persons.

	  The number uses the Luhn checksum but apparently there are a lof
	  of valid numbers in use that do not match the checksum. For this
	  a whitelist is used.

2015-04-17  Arthur de Jong <arthur@arthurdejong.org>

	* [d003ac3] stdnum/do/__init__.py, stdnum/do/rnc.py,
	  tests/test_do_rnc.doctest: Add Dominican Republic RNC number

	  The RNC (Registro Nacional del Contribuyente) is the Dominican
	  Republic taxpayer registration number for companies.

2015-04-19  Arthur de Jong <arthur@arthurdejong.org>

	* [9e94ab8] tests/test_no_mva.doctest: Add more stdnum.no.mva tests

2015-04-18  Arthur de Jong <arthur@arthurdejong.org>

	* [c334bcf] stdnum/is_/kennitala.py, tests/test_is_kennitala.doctest:
	  Add more tests for Kennitala

2015-04-11  Tuomas Toivonen <toivotuo@kasvua.org>

	* [84620f8] stdnum/is_/__init__.py, stdnum/is_/kennitala.py,
	  stdnum/is_/vsk.py: Support Icelandic personal, organisation and
	  VAT identifiers

	  The package is named "is_" because "is" is a reserved word.

2015-04-11  Tuomas Toivonen <toivotuo@kasvua.org>

	* [699b340] stdnum/no/__init__.py, stdnum/no/mva.py,
	  stdnum/no/orgnr.py: Add support for Norwegian organisation and
	  VAT numbers

	  This commit also includes changes from Tomas Thor Jonsson
	  <benregn@gmail.com>.

2015-02-09  Tony Bajan <tony.bajan@onefinestay.com>

	* [75bcef0] stdnum/iso9362.py: Add ISO 9362 (BIC) support

2015-04-17  Arthur de Jong <arthur@arthurdejong.org>

	* [2574f89] stdnum/imsi.py: Raise InvalidComponent for unregistered
	  IMSI

2014-12-23  Emiliano Castro <emiliano@typeform.com>

	* [9883c72] stdnum/eu/vat.py, stdnum/hr/__init__.py: Adding HR
	  (Croatia) to the list of available countries

2014-11-01  Arthur de Jong <arthur@arthurdejong.org>

	* [3a7c9f7] stdnum/bg/vat.py, stdnum/eu/at_02.py, stdnum/iban.py,
	  stdnum/isan.py, stdnum/meid.py, stdnum/numdb.py: Fix common
	  spelling mistake

2014-10-31  Matt McDonald <mmcdonald@google.com>

	* [6e332b1] stdnum/meid.py, tests/test_meid.doctest: Fix for
	  invalidating MEIDs with invalid decimal bit length

	  See: http://arthurdejong.org/trac/python-stdnum/ticket/10

2014-10-20  Arthur de Jong <arthur@arthurdejong.org>

	* [3fa795d] getnumlist.py: Restore section for on homepage

2014-10-19  Arthur de Jong <arthur@arthurdejong.org>

	* [147eeb1] ChangeLog, NEWS, README, docs/index.rst,
	  docs/stdnum.ch.ssn.rst, docs/stdnum.cn.ric.rst,
	  docs/stdnum.ec.ci.rst, docs/stdnum.ec.ruc.rst,
	  docs/stdnum.eu.at_02.rst, docs/stdnum.iso6346.rst,
	  docs/stdnum.it.codicefiscale.rst, docs/stdnum.us.rtn.rst,
	  getnumlist.py, setup.py, stdnum/__init__.py: Get files ready
	  for 1.0 release

2014-10-19  Arthur de Jong <arthur@arthurdejong.org>

	* [72c0ff1] stdnum/iso6346.py: Remove unused import

2014-10-19  Arthur de Jong <arthur@arthurdejong.org>

	* [e713cc7] stdnum/iban.dat, stdnum/imsi.dat, stdnum/isbn.dat,
	  stdnum/isil.dat: Update database files

2014-10-13  Denis Krienbühl <denis@href.ch>

	* [256aa49] stdnum/ch/__init__.py, stdnum/ch/ssn.py: Adds the
	  Swiss social security number

	  Also known as "Sozialversicherungsnummer" / "Neue AHV Nummer".

2014-10-18  Arthur de Jong <arthur@arthurdejong.org>

	* [2cc50e2] stdnum/eu/at_02.py, stdnum/iban.py, stdnum/imei.py,
	  stdnum/iso7064/mod_11_10.py, stdnum/iso7064/mod_11_2.py,
	  stdnum/iso7064/mod_37_2.py, stdnum/iso7064/mod_37_36.py,
	  stdnum/iso7064/mod_97_10.py, stdnum/luhn.py, stdnum/util.py,
	  stdnum/verhoeff.py: Only catch Exception

2014-10-17  Arthur de Jong <arthur@arthurdejong.org>

	* [e2948bb] : Add Ecuadorian CI and RUC numbers

	  Add modules for Ecuadorian Identification Card (CI - Cédula
	  de identidad) and Fiscal Numbers (RUC - Registro Único de
	  Contribuyentes)

	  See: https://github.com/arthurdejong/python-stdnum/pull/12

2014-10-17  Arthur de Jong <arthur@arthurdejong.org>

	* [e5250be] stdnum/ec/ci.py, stdnum/ec/ruc.py,
	  tests/test_ec_ci.doctest, tests/test_ec_ruc.doctest: Validate
	  parts of numbers

	  This raises exceptions when the provice or establishment number
	  part of the number contains invalid values.

2014-10-17  Arthur de Jong <arthur@arthurdejong.org>

	* [10a044f] stdnum/ec/ci.py, stdnum/ec/ruc.py: Refactor checksum
	  functions

	  Use the CI checks from within the RUC module for natural RUC
	  numbers (thereby eliminating a bug in the RUC checksum calculation)
	  and simplify the checksum functions.

2014-10-17  Arthur de Jong <arthur@arthurdejong.org>

	* [f61b855] stdnum/ec/ci.py, stdnum/ec/ruc.py,
	  tests/test_ec_ci.doctest, tests/test_ec_ruc.doctest: Use
	  dedicated doctests

	  This moves a number of the existing test cases to dedicated doctest
	  files and extend the tests with more numbers and corner cases.

	  This also fixes a few docstrings.

2014-10-12  Jonathan Finlay <jfinlay@riseup.net>

	* [e8f1ca6] stdnum/ec/__init__.py, stdnum/ec/ci.py, stdnum/ec/ruc.py:
	  Add Ecuadorian CI and RUC numbers

	  Add modules for Ecuadorian Identification Card (CI - Cédula
	  de identidad) and Fiscal Numbers (RUC - Registro Único de
	  Contribuyentes)

2014-10-06  Arthur de Jong <arthur@arthurdejong.org>

	* [2700b7a] : Add Chinese Resident Identity Card Number

2014-10-06  Jiangge Zhang <tonyseek@gmail.com>

	* [141d576] stdnum/cn/ric.py, tests/test_cn_ric.doctest: Support
	  the Resident Identity Card Number of People's Republic China

2014-10-05  Jiangge Zhang <tonyseek@gmail.com>

	* [10ae548] getcnloc.py, stdnum/cn/loc.dat: Download locations
	  from the China (PRC) government site

2014-10-05  Jiangge Zhang <tonyseek@gmail.com>

	* [e9eb546] stdnum/cn/__init__.py: Add stdnum.cn package for Chinese
	  (PRC) numbers

2014-10-05  Arthur de Jong <arthur@arthurdejong.org>

	* [97ac94d] stdnum/my/nric.py, tests/test_my_nric.doctest: Update
	  NRIC tests

2014-10-05  Arthur de Jong <arthur@arthurdejong.org>

	* [123e9cb] getmybp.py, stdnum/my/bp.dat: Update URLs for Malaysian
	  code lists

	  This updates the URLs for the state and country codes as published
	  by the National Registration Department of Malaysia and changes
	  the parsing to the new page layout.

	  This also updates the data file.

	  https://github.com/arthurdejong/python-stdnum/issues/14

2014-09-01  Tony Bajan <tony.bajan@onefinestay.com>

	* [86f60a2] stdnum/us/rtn.py: Add US bank routing transit numbers

2014-07-05  Arthur de Jong <arthur@arthurdejong.org>

	* [fbb0316] getisbn.py: Use ElementTree for simpler XML parsing

2014-07-05  Arthur de Jong <arthur@arthurdejong.org>

	* [03e4f97] getisbn.py, stdnum/isbn.dat: Fix getisbn script and
	  update ISBN data file

2014-04-11  Arthur de Jong <arthur@arthurdejong.org>

	* [26517fe] getnumlist.py, stdnum/__init__.py: Improve package
	  docstring formatting and show example

2014-03-18  Sharoon Thomas <sharoon.thomas@openlabs.co.in>

	* [85dd6f2] stdnum/iso6346.py, tests/test_iso6346.doctest: Add
	  support for ISO6346

	  Add validation and creation of check digit for ISO6346 codes.

	  See: https://github.com/arthurdejong/python-stdnum/pull/9

2014-03-05  Jussi Räsänen <jussi@skyred.fi>

	* [2405c89] stdnum/eu/vat.py: Added a simple backwards compability
	  check

2014-02-17  Arthur de Jong <arthur@arthurdejong.org>

	* [a4012f5] stdnum/ie/pps.py, stdnum/ie/vat.py,
	  tests/test_eu_vat.doctest: Add support for 2013 extension of
	  Irish PPS Numbers

	  References: - https://www.welfare.ie/en/Pages/PPSN.aspx -
	  http://www.citizensinformation.ie/en/social_welfare/irish_social_welfare_system/personal_public_service_number.html
2014-02-06  Arthur de Jong <arthur@arthurdejong.org>

	* [71d9837] stdnum/eu/at_02.py: Rename AT-02 module to
	  stdnum.eu.at_02

2014-02-05  Sergi Almacellas Abellana <sergi@koolpi.com>

	* [099078e] stdnum/at_02.py: Add SEPA Creditor identifier (AT-02)

2014-02-02  Arthur de Jong <arthur@arthurdejong.org>

	* [1ac00a0] stdnum/it/codicefiscale.py,
	  tests/test_it_codicefiscale.doctest: Add an Italian Codice
	  Fiscale module

	  This module validates 16 digit Italian tax codes for individuals.
	  https://en.wikipedia.org/wiki/Italian_fiscal_code_card

	  It is based on the pycodicefiscale module that can be found here:
	  https://github.com/baxeico/pycodicefiscale

	  Functions have been renamed to follow the stdnum naming scheme:
	  isvalid() -> is_valid(), control_code -> calc_check_digit(),
	  get_birthday() -> get_birth_date(), get_sex() -> get_gender(). The
	  build() function for generating tax codes (based on name,
	  birth place and date) has been left out because this number
	  cannot be uniquely constructed with this information alone
	  (numbers are issued by the Italian tax office with a mechanism
	  handle duplicates).

	  Addresses trac ticket #9.

2014-01-01  Arthur de Jong <arthur@arthurdejong.org>

	* [c3d669c] setup.py: Remove requirement on distribute

	  This accidentally slipped into 907e410.  2013-12-31  Arthur de
Jong <arthur@arthurdejong.org>

	* [d933aab] .gitignore, ChangeLog, NEWS, README, docs/index.rst,
	  docs/stdnum.my.nric.rst, docs/stdnum.nl.brin.rst,
	  docs/stdnum.nl.postcode.rst, docs/stdnum.us.atin.rst,
	  docs/stdnum.us.ein.rst, docs/stdnum.us.itin.rst,
	  docs/stdnum.us.ptin.rst, docs/stdnum.us.tin.rst, getiban.py,
	  getimsi.py, stdnum/__init__.py: Get files ready for 0.9 release

2013-12-31  Arthur de Jong <arthur@arthurdejong.org>

	* [5c1765e] stdnum/iban.dat, stdnum/isbn.dat: Update database files

2013-12-31  Arthur de Jong <arthur@arthurdejong.org>

	* [4217c35] stdnum/isan.py, stdnum/meid.py, stdnum/util.py: Add
	  pragma: no cover for Python 3

	  Some statements are not covered in Python 3 tests.

2013-12-31  Arthur de Jong <arthur@arthurdejong.org>

	* [6c49ca8] getiban.py: Update getiban script

	  This switches to use the csv module to support multi-line column
	  values.  This also handles some problems in the BBAN structure
	  column that would contain an IBAN structure.

2013-12-31  Arthur de Jong <arthur@arthurdejong.org>

	* [0ee74e5] ChangeLog: Generate Changelog with different formatter

	  git log --date=short --name-only \ --format="%x0c%ad	%aN
	      <%aE>%n%n%x09* [%h]%x00%s%n%x00%+b%x00" | \
	    awk 'BEGIN { RS="\f"; FS="\0" } { if ($1) { gsub(/\n*$/,
	    "", $4); gsub(/^\n*/, "", $4); gsub(/\n/, ", ", $4);
	    gsub(/\ngit-svn-id.*/, "", $3); gsub(/\n/, "\n\t  ", $3); print
	    $1 " " $4 ": "; print "\t  " $2 $3 }}' | \ fmt --width=78 -c
	    > ChangeLog

2013-12-30  Cédric Krier <ced@b2ck.com>

	* [a148835] stdnum/gb/vat.py, tests/test_gb_vat.doctest: Add some
	  new VAT numbers for GB

	  Add support for restarting from November 2009 using 9755.
	  Add support for EU format of health authorities

	  See: https://github.com/arthurdejong/python-stdnum/pull/4

2013-12-12  eneq123 <koc@loki.glas.net>

	* [4609a22] getimsi.py, stdnum/imsi.dat: Update parsing in getimsi
	  script

	  This updates the regexes and includes seom optimizations.

	  See: https://github.com/arthurdejong/python-stdnum/issues/1

2013-12-30  Cédric Krier <ced@b2ck.com>

	* [9ec3cb0] stdnum/eu/vat.py: Add support for proxy

2013-12-04  Arthur de Jong <arthur@arthurdejong.org>

	* [7f30979] getimsi.py, stdnum/imsi.dat: Update getimsi script

	  This updates the script due to the Wikipedia article change and
	  removes the code for getting the data from ITU for now.

	  See: https://github.com/arthurdejong/python-stdnum/issues/1

2013-11-09  Arthur de Jong <arthur@arthurdejong.org>

	* [b0c47d5] stdnum/nl/__init__.py, stdnum/nl/postcode.py: Add a
	  Dutch postal code module

	  The Dutch postal code (postcode) consists of four digits followed
	  by two characters and together with the house number should
	  uniquely identify any address.

	  Addresses trac ticket #7.

2013-11-09  Arthur de Jong <arthur@arthurdejong.org>

	* [73d05b0] stdnum/nl/brin.py: Add a Dutch Brin number module

	  The Brin (Basis Registratie Instellingen) is a number to identify
	  schools and related institutions.

	  Addresses trac ticket #6.

2013-11-09  Arthur de Jong <arthur@arthurdejong.org>

	* [73330a1] stdnum/nl/onderwijsnummer.py: Clarify onderwijsnummer
	  description

2013-11-09  Arthur de Jong <arthur@arthurdejong.org>

	* [188d3ea] : Add various United States Tax number modules

	  This adds modules for the Individual Taxpayer Identification Number
	  (ITIN), the Employer Identification Number (EIN), Adoption Taxpayer
	  Identification Number (ATIN) and Preparer Tax Identification
	  Number (PTIN) that together with the Social Security Number
	  (SSN) are valid Taxpayer Identification Numbers (TIN)

2013-10-12  Arthur de Jong <arthur@arthurdejong.org>

	* [9530635] stdnum/us/tin.py: Add a United States TIN module

	  The Taxpayer Identification Number is used used for tax purposes
	  in the United States. This module uses the SSN, ITIN, EIN,
	  PTIN and ATIN modules to determine validitiy of the TIN.

2013-10-11  Arthur de Jong <arthur@arthurdejong.org>

	* [316e3f2] stdnum/us/ptin.py: Add a United States PTIN module

	  A Preparer Tax Identification Number (PTIN) is United States
	  identification number for tax return preparers. It is an
	  eight-digit number prefixed with a capital P.

2013-10-11  Arthur de Jong <arthur@arthurdejong.org>

	* [47ea6ea] stdnum/us/atin.py: Add a United States ATIN module

	  An Adoption Taxpayer Identification Number (ATIN) is a temporary
	  nine-digit number issued by the United States IRS for a child for
	  whom the adopting parents cannot obtain a Social Security Number.

2013-10-11  Arthur de Jong <arthur@arthurdejong.org>

	* [b1c9ba5] stdnum/us/ein.dat, stdnum/us/ein.py: Add a United
	  States EIN module

	  The Employer Identification Number (EIN), also known as Federal
	  Employer Identification Number (FEIN), is used to identify a
	  business entity in the United States. It is issued to anyone
	  that has to pay withholding taxes on employees.

2013-10-11  Arthur de Jong <arthur@arthurdejong.org>

	* [19039f7] stdnum/us/itin.py: Add a United States ITIN module

	  The ITIN (Individual Taxpayer Identification Number) is issued
	  by the United States IRS to individuals who are required to
	  have a taxpayer identification number but who are not eligible
	  to obtain a Social Security Number.

2013-10-11  Arthur de Jong <arthur@arthurdejong.org>

	* [70b974b] stdnum/meid.py: Remove unused import

2013-11-08  Arthur de Jong <arthur@arthurdejong.org>

	* [f122c88] stdnum/util.py: Try to replace Unicode characters
	  with ASCII

	  This changes the stdnum.util.clean() method that is used by all
	  modules to replace alternative Unicode dashes, dots, etc. by
	  their ASCII equivalent so the numbers will be automatically
	  converted and validated.

	  Inspiration for this change came from
	  https://github.com/JNRowe/pyisbn/pull/6

2013-06-14  Arthur de Jong <arthur@arthurdejong.org>

	* [c042f02] ChangeLog, NEWS, stdnum/__init__.py: Get files ready
	  for 0.8.1 release

2013-06-14  Arthur de Jong <arthur@arthurdejong.org>

	* [31e5e81] MANIFEST.in, setup.py: Ensure that all used files are
	  included in the sdist

2013-06-09  Arthur de Jong <arthur@arthurdejong.org>

	* [7fa9822] ChangeLog, NEWS, README, docs/index.rst, getnumlist.py,
	  setup.py, stdnum/__init__.py: Get files ready for 0.8 release

2013-06-09  Arthur de Jong <arthur@arthurdejong.org>

	* [9597010] stdnum/iban.dat, stdnum/imsi.dat, stdnum/isbn.dat,
	  stdnum/isil.dat: Update database files

	  We manually tweak the Finland IBAN entry. We should probably
	  change the parsing so that it uses the IBAN structure instead
	  of the BBAN structure.

2013-06-09  Arthur de Jong <arthur@arthurdejong.org>

	* [19cbb3c] stdnum/my/nric.py: Fix NRIC module description

2013-06-08  Arthur de Jong <arthur@arthurdejong.org>

	* [46a7996] getmybp.py, stdnum/my/__init__.py, stdnum/my/bp.dat,
	  stdnum/my/nric.py, tests/test_my_nric.doctest: Add a Malaysian
	  NRIC No. module

	  NRIC No. (National Registration Identity Card Number) is the
	  unique identifier for issued to Malaysian citizens and permanent
	  residents.

2013-06-08  Arthur de Jong <arthur@arthurdejong.org>

	* [999f2c3] : Provide a validate() function in all modules

	  This provides an additional means of doing number validation that
	  allows applications calling this library to get more information
	  about why the validation failed and present more informative
	  messages to the user.

	  This introduces a collection of exceptions which will be raised
	  by the validate() function in each module. All modules have been
	  updated to provide this new function.

2013-05-22  Arthur de Jong <arthur@arthurdejong.org>

	* [cb69921] README, docs/index.rst, docs/stdnum.exceptions.rst:
	  Document the validate() function and exceptions

2013-05-18  Arthur de Jong <arthur@arthurdejong.org>

	* [e00744c] stdnum/util.py: Use validate() in stdnum.util

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [3d3a97d] stdnum/us/ssn.py: Implement validate() for U.S. Social
	  Security Number

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [4bfce3f] stdnum/eu/vat.py, tests/test_eu_vat.doctest: Implement
	  validate() for European VAT numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [1aaf902] stdnum/sk/dph.py, stdnum/sk/rc.py: Implement validate()
	  for Slovak numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [8982d1e] stdnum/si/ddv.py: Implement validate() for Slovenian
	  VAT numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [522a599] stdnum/se/vat.py: Implement validate() for Swedish
	  VAT numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [8e7d807] stdnum/pt/nif.py: Implement validate() for Portuguese
	  VAT numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [7e865db] stdnum/pl/nip.py: Implement validate() for Polish numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [96c5080] stdnum/mt/vat.py: Implement validate() for Maltese
	  numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [2ff4950] stdnum/lv/pvn.py: Implement validate() for Latvian
	  numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [9845b0a] stdnum/lu/tva.py: Implement validate() for Luxembourgian
	  numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [04cfb84] stdnum/lt/pvm.py: Implement validate() for Lithuanian
	  numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [b1d5a72] stdnum/it/iva.py: Implement validate() for Italian
	  numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [083993b] stdnum/ie/pps.py, stdnum/ie/vat.py: Implement validate()
	  for Irish numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [301ba25] stdnum/hu/anum.py: Implement validate() for Hungarian
	  numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [31f2684] stdnum/hr/oib.py: Implement validate() for Croatian
	  numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [1932f69] stdnum/gr/vat.py: Implement validate() for Greek numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [10710dc] stdnum/gb/vat.py, tests/test_gb_vat.doctest: Implement
	  validate() for United Kingdom numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [4753c09] stdnum/fi/alv.py, stdnum/fi/hetu.py,
	  tests/test_fi_hetu.doctest: Implement validate() for Finnish
	  numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [2259cbb] stdnum/es/cif.py, stdnum/es/dni.py, stdnum/es/nie.py,
	  stdnum/es/nif.py: Implement validate() for Spanish numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [07c66e1] stdnum/ee/kmkr.py: Implement validate() for Estonian
	  numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [8caecc5] stdnum/dk/cpr.py, stdnum/dk/cvr.py: Implement validate()
	  for Danish numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [360480b] stdnum/de/vat.py: Implement validate() for German numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [fce6196] stdnum/cy/vat.py: Implement validate() for Cypriot
	  numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [14e382f] stdnum/cz/dic.py, stdnum/cz/rc.py: Implement validate()
	  for Czech numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [54ce2d7] stdnum/br/cpf.py: Implement validate() for Brazillian
	  numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [6080907] stdnum/bg/egn.py, stdnum/bg/pnf.py, stdnum/bg/vat.py,
	  tests/test_bg_vat.doctest: Implement validate() for Bulgarian
	  numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [33ce4e9] stdnum/be/vat.py: Implement validate() for Belgian
	  numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [66d6259] stdnum/at/uid.py: Implement validate() for Austrian
	  numbers

2013-05-11  Arthur de Jong <arthur@arthurdejong.org>

	* [05547a4] stdnum/ro/cf.py, stdnum/ro/cnp.py: Implement validate()
	  for Romanian numbers

2013-05-17  Arthur de Jong <arthur@arthurdejong.org>

	* [fc1432c] stdnum/fr/siren.py, stdnum/fr/tva.py: Implement
	  validate() for French numbers

2013-05-05  Arthur de Jong <arthur@arthurdejong.org>

	* [62cafb4] stdnum/nl/bsn.py, stdnum/nl/btw.py,
	  stdnum/nl/onderwijsnummer.py: Implement validate() for Dutch
	  numbers

2013-05-04  Arthur de Jong <arthur@arthurdejong.org>

	* [cf88e23] stdnum/meid.py, tests/test_meid.doctest: Implement
	  validate() for MEID

2013-05-04  Arthur de Jong <arthur@arthurdejong.org>

	* [c6f41f6] stdnum/issn.py: Implement validate() for ISSN

2013-05-04  Arthur de Jong <arthur@arthurdejong.org>

	* [21f07b3] stdnum/ismn.py, tests/test_ismn.doctest: Implement
	  validate() for ISMN

2013-05-04  Arthur de Jong <arthur@arthurdejong.org>

	* [c07609f] stdnum/isil.py: Implement validate() for ISIL

2013-05-04  Arthur de Jong <arthur@arthurdejong.org>

	* [a18f1ac] stdnum/isan.py, tests/test_isan.doctest: Implement
	  validate() for ISAN

2013-05-01  Arthur de Jong <arthur@arthurdejong.org>

	* [3ac8164] stdnum/iban.py: Implement validate() for IBAN

2013-05-03  Arthur de Jong <arthur@arthurdejong.org>

	* [12bd684] stdnum/grid.py: Implement validate() for GRid numbers

2013-05-04  Arthur de Jong <arthur@arthurdejong.org>

	* [9cee495] stdnum/imsi.py: Implement validate() for IMSI

2013-05-04  Arthur de Jong <arthur@arthurdejong.org>

	* [6e4bb71] stdnum/imei.py, tests/test_imei.doctest: Implement
	  validate() for IMEI numbers

2013-05-04  Arthur de Jong <arthur@arthurdejong.org>

	* [efa2550] stdnum/iso7064/mod_11_10.py, stdnum/iso7064/mod_11_2.py,
	  stdnum/iso7064/mod_37_2.py, stdnum/iso7064/mod_37_36.py,
	  stdnum/iso7064/mod_97_10.py, tests/test_iso7064.doctest: Implement
	  validate() for ISO 7064 algorithms

2013-05-03  Arthur de Jong <arthur@arthurdejong.org>

	* [5c9090b] stdnum/verhoeff.py, tests/test_verhoeff.doctest:
	  Implement validate() for the Verhoeff checksum

2013-05-03  Arthur de Jong <arthur@arthurdejong.org>

	* [9ad5139] stdnum/luhn.py, tests/test_luhn.doctest: Implement
	  validate() for the Luhn algorithms

2013-05-03  Arthur de Jong <arthur@arthurdejong.org>

	* [9580046] stdnum/isbn.py, tests/test_isbn.doctest: Implement
	  validate() for ISBN

2013-05-03  Arthur de Jong <arthur@arthurdejong.org>

	* [fa1864f] stdnum/ean.py, tests/test_ean.doctest: Implement
	  validate() for EAN

2013-06-07  Arthur de Jong <arthur@arthurdejong.org>

	* [8b9ef8f] stdnum/util.py: Raise a proper exception if cleaning
	  fails

2013-06-07  Arthur de Jong <arthur@arthurdejong.org>

	* [1ac5437] setup.cfg, stdnum/exceptions.py: Provide a module with
	  validation exceptions

	  This introduces a new module for switching the validation
	  scheme. Instead of using the is_valid() function that returns
	  a boolean a validate() function either returns the sanitised
	  number or raises an exception that should indicate the kind of
	  validation failure.

	  This should make it easier for applications calling this library
	  to present more informative messages to the user.

2013-06-07  Arthur de Jong <arthur@arthurdejong.org>

	* [99586c9] stdnum/__init__.py, stdnum/de/vat.py, stdnum/nl/bsn.py,
	  stdnum/util.py: Revert generating stdnum docstring dynamically

	  Generating the docstring dynamically results in all stdnum modules
	  being imported for every import from any stdnum module which is
	  a performance hit.

	  So we switch back to a manually generated list, using:

	  from stdnum.util import get_module_list print
	  '\n'.join(get_module_list())

	  This also shortens a few short descriptions to attempt to fit
	  things on one line.

2013-06-07  Arthur de Jong <arthur@arthurdejong.org>

	* [a655e82] docs/conf.py, docs/index.rst: Documentation consistency
	  improvements

2013-06-07  Arthur de Jong <arthur@arthurdejong.org>

	* [37a2afd] tests/test_iso7064.doctest: The robustness test were
	  moved to the general tests

2013-06-07  Arthur de Jong <arthur@arthurdejong.org>

	* [90b7c4a] stdnum/numdb.py: Remove empty line

2013-06-07  Arthur de Jong <arthur@arthurdejong.org>

	* [bcb0a0b] stdnum/grid.py: GRid's format() function shouldn't
	  have add_check_digit parameter

2013-04-26  Arthur de Jong <arthur@arthurdejong.org>

	* [2d956eb] stdnum/util.py: Use a cleaner way to get all stdnum
	  modules

	  This mechanism should work from Python 2.6 up to and including
	  Python 3.3.

2013-04-26  Arthur de Jong <arthur@arthurdejong.org>

	* [30c832f] stdnum/numdb.py: Fix doctest to not be dependant on
	  dict ordering

2013-04-26  Arthur de Jong <arthur@arthurdejong.org>

	* [51a55be] .gitignore: Add a .gitignore file

2012-09-22  Arthur de Jong <arthur@arthurdejong.org>

	* [3f6d52a] stdnum/__init__.py, stdnum/util.py: generate part of
	  the stdnum docstring based on introspection of the modules

2012-06-16  Arthur de Jong <arthur@arthurdejong.org>

	* [af7e837] : set svn:ignore properly

2012-02-26  Arthur de Jong <arthur@arthurdejong.org>

	* [8f2e44c] stdnum/bg/egn.py, stdnum/cz/rc.py, stdnum/dk/cpr.py,
	  stdnum/fi/hetu.py, stdnum/isan.py, stdnum/lv/pvn.py,
	  stdnum/meid.py, stdnum/ro/cnp.py, tests/test_isan.doctest,
	  tests/test_ismn.doctest, tests/test_robustness.doctest: re-add
	  Python3 support

2012-02-26  Arthur de Jong <arthur@arthurdejong.org>

	* [3325052] ChangeLog, NEWS, stdnum/__init__.py: get files ready
	  for 0.7 release

2012-02-26  Arthur de Jong <arthur@arthurdejong.org>

	* [a3ba206] stdnum/iban.dat, stdnum/imsi.dat, stdnum/isbn.dat,
	  stdnum/isil.dat: update data files

2012-02-26  Arthur de Jong <arthur@arthurdejong.org>

	* [c240eff] getnumlist.py: also generate a list of modules for
	  use in the Spinx documentation

2012-02-26  Arthur de Jong <arthur@arthurdejong.org>

	* [54b0f47] README, getnumlist.py, stdnum/__init__.py: use a script
	  to generate the list of number formats in stdnum

2012-02-26  Arthur de Jong <arthur@arthurdejong.org>

	* [dada6a4] stdnum/eu/vat.py, stdnum/gb/vat.py, stdnum/gr/vat.py,
	  stdnum/grid.py, stdnum/hr/oib.py, stdnum/hu/anum.py,
	  stdnum/iban.py, stdnum/ie/pps.py, stdnum/ie/vat.py,
	  stdnum/imei.py, stdnum/isan.py, stdnum/iso7064/__init__.py,
	  stdnum/iso7064/mod_11_10.py, stdnum/iso7064/mod_11_2.py,
	  stdnum/iso7064/mod_37_2.py, stdnum/iso7064/mod_37_36.py,
	  stdnum/iso7064/mod_97_10.py, stdnum/lt/pvm.py, stdnum/luhn.py,
	  stdnum/meid.py, stdnum/verhoeff.py: some more documentation
	  improvements

2012-02-26  Arthur de Jong <arthur@arthurdejong.org>

	* [13218a0] setup.py: make script executable

2012-02-26  Arthur de Jong <arthur@arthurdejong.org>

	* [c2f0ea2] stdnum/fr/siren.py: add a to_vta() function to the
	  stdnum.fr.siren module

2012-02-26  Arthur de Jong <arthur@arthurdejong.org>

	* [902a656] stdnum/__init__.py, stdnum/at/uid.py, stdnum/be/vat.py,
	  stdnum/bg/egn.py, stdnum/bg/pnf.py, stdnum/bg/vat.py,
	  stdnum/br/cpf.py, stdnum/cy/vat.py, stdnum/cz/dic.py,
	  stdnum/cz/rc.py, stdnum/de/vat.py, stdnum/dk/cpr.py,
	  stdnum/dk/cvr.py, stdnum/ean.py, stdnum/ee/kmkr.py,
	  stdnum/es/cif.py, stdnum/es/dni.py, stdnum/es/nie.py,
	  stdnum/es/nif.py, stdnum/eu/vat.py, stdnum/fi/alv.py,
	  stdnum/fi/hetu.py, stdnum/fr/siren.py, stdnum/fr/tva.py,
	  stdnum/gb/vat.py, stdnum/gr/vat.py, stdnum/grid.py,
	  stdnum/hr/oib.py, stdnum/hu/anum.py, stdnum/iban.py,
	  stdnum/ie/pps.py, stdnum/ie/vat.py, stdnum/imei.py, stdnum/imsi.py,
	  stdnum/isan.py, stdnum/isbn.py, stdnum/isil.py, stdnum/ismn.py,
	  stdnum/iso7064/__init__.py, stdnum/iso7064/mod_11_10.py,
	  stdnum/iso7064/mod_11_2.py, stdnum/iso7064/mod_37_2.py,
	  stdnum/iso7064/mod_37_36.py, stdnum/iso7064/mod_97_10.py,
	  stdnum/issn.py, stdnum/it/iva.py, stdnum/lt/pvm.py,
	  stdnum/lu/tva.py, stdnum/luhn.py, stdnum/lv/pvn.py,
	  stdnum/meid.py, stdnum/mt/vat.py, stdnum/nl/bsn.py,
	  stdnum/nl/btw.py, stdnum/nl/onderwijsnummer.py, stdnum/numdb.py,
	  stdnum/pl/nip.py, stdnum/pt/nif.py, stdnum/ro/cf.py,
	  stdnum/ro/cnp.py, stdnum/se/vat.py, stdnum/si/ddv.py,
	  stdnum/sk/dph.py, stdnum/sk/rc.py, stdnum/us/ssn.py,
	  stdnum/util.py, stdnum/verhoeff.py: ensure that the module
	  docstrings are in a somewhat more usable format

2012-02-25  Arthur de Jong <arthur@arthurdejong.org>

	* [907e410] setup.py: add the optional dependency on suds for the
	  stdnum.eu.vat.check_vies() function

2012-02-24  Arthur de Jong <arthur@arthurdejong.org>

	* [ae9268b] stdnum/cz/rc.py: make the get_birth_date() function
	  publically available

2012-02-24  Arthur de Jong <arthur@arthurdejong.org>

	* [4dfc8d7] docs/_templates/autosummary/module.rst, docs/conf.py,
	  docs/index.rst, docs/stdnum.at.uid.rst, docs/stdnum.be.vat.rst,
	  docs/stdnum.bg.egn.rst, docs/stdnum.bg.pnf.rst,
	  docs/stdnum.bg.vat.rst, docs/stdnum.br.cpf.rst,
	  docs/stdnum.cy.vat.rst, docs/stdnum.cz.dic.rst,
	  docs/stdnum.cz.rc.rst, docs/stdnum.de.vat.rst,
	  docs/stdnum.dk.cpr.rst, docs/stdnum.dk.cvr.rst,
	  docs/stdnum.ean.rst, docs/stdnum.ee.kmkr.rst,
	  docs/stdnum.es.cif.rst, docs/stdnum.es.dni.rst,
	  docs/stdnum.es.nie.rst, docs/stdnum.es.nif.rst,
	  docs/stdnum.eu.vat.rst, docs/stdnum.fi.alv.rst,
	  docs/stdnum.fi.hetu.rst, docs/stdnum.fr.siren.rst,
	  docs/stdnum.fr.tva.rst, docs/stdnum.gb.vat.rst,
	  docs/stdnum.gr.vat.rst, docs/stdnum.grid.rst,
	  docs/stdnum.hr.oib.rst, docs/stdnum.hu.anum.rst,
	  docs/stdnum.iban.rst, docs/stdnum.ie.pps.rst,
	  docs/stdnum.ie.vat.rst, docs/stdnum.imei.rst, docs/stdnum.imsi.rst,
	  docs/stdnum.isan.rst, docs/stdnum.isbn.rst, docs/stdnum.isil.rst,
	  docs/stdnum.ismn.rst, docs/stdnum.iso7064.rst,
	  docs/stdnum.issn.rst, docs/stdnum.it.iva.rst,
	  docs/stdnum.lt.pvm.rst, docs/stdnum.lu.tva.rst,
	  docs/stdnum.luhn.rst, docs/stdnum.lv.pvn.rst, docs/stdnum.meid.rst,
	  docs/stdnum.mt.vat.rst, docs/stdnum.nl.bsn.rst,
	  docs/stdnum.nl.btw.rst, docs/stdnum.nl.onderwijsnummer.rst,
	  docs/stdnum.pl.nip.rst, docs/stdnum.pt.nif.rst,
	  docs/stdnum.ro.cf.rst, docs/stdnum.ro.cnp.rst,
	  docs/stdnum.se.vat.rst, docs/stdnum.si.ddv.rst,
	  docs/stdnum.sk.dph.rst, docs/stdnum.sk.rc.rst,
	  docs/stdnum.us.ssn.rst, docs/stdnum.verhoeff.rst, setup.cfg:
	  generate documentation using Sphinx

2012-02-23  Arthur de Jong <arthur@arthurdejong.org>

	* [093b1a1] README, stdnum/__init__.py, stdnum/dk/cpr.py: add a CPR
	  (personnummer, the Danish citizen number) module

2012-02-23  Arthur de Jong <arthur@arthurdejong.org>

	* [89e4d78] README, stdnum/__init__.py, stdnum/ie/pps.py: add a PPS
	  No (Personal Public Service Number, Irish personal number) module

2012-02-22  Arthur de Jong <arthur@arthurdejong.org>

	* [3a9c407] README, stdnum/__init__.py, stdnum/hr/__init__.py,
	  stdnum/hr/oib.py: add an OIB (Osobni identifikacijski broj,
	  Croatian personal identification number) module

2012-02-20  Arthur de Jong <arthur@arthurdejong.org>

	* [680b7d1] numdb-test.dat, stdnum/numdb.py: rename numdb test file

2012-02-20  Arthur de Jong <arthur@arthurdejong.org>

	* [68f62bf] stdnum/eu/vat.py: add a stdnum.eu.vat.check_vies()
	  function to do an on-line check of the VAT number

2012-02-19  Arthur de Jong <arthur@arthurdejong.org>

	* [e640e3b] stdnum/iban.py, stdnum/numdb.py: add "pragma: no cover"
	  statements to code that isn't expected to be covered

2012-02-19  Arthur de Jong <arthur@arthurdejong.org>

	* [b561d59] README, stdnum/__init__.py, stdnum/eu/__init__.py,
	  stdnum/eu/vat.py, tests/test_eu_vat.doctest: add a VAT (European
	  Union VAT number) module

2012-02-19  Arthur de Jong <arthur@arthurdejong.org>

	* [61af19d] README, stdnum/__init__.py: make number description
	  consistent

2012-02-19  Arthur de Jong <arthur@arthurdejong.org>

	* [eeb5c61] stdnum/at/__init__.py, stdnum/cz/__init__.py,
	  stdnum/dk/__init__.py, stdnum/ee/__init__.py,
	  stdnum/es/__init__.py, stdnum/fi/__init__.py,
	  stdnum/fr/__init__.py, stdnum/hu/__init__.py,
	  stdnum/it/__init__.py, stdnum/lt/__init__.py,
	  stdnum/lu/__init__.py, stdnum/lv/__init__.py,
	  stdnum/nl/__init__.py, stdnum/pl/__init__.py,
	  stdnum/pt/__init__.py, stdnum/ro/__init__.py,
	  stdnum/si/__init__.py, stdnum/sk/__init__.py: for all countries,
	  provide vat as an alias for the local vat identifier

2012-02-19  Arthur de Jong <arthur@arthurdejong.org>

	* [6755b94] stdnum/at/__init__.py, stdnum/be/__init__.py,
	  stdnum/bg/__init__.py, stdnum/br/__init__.py,
	  stdnum/cy/__init__.py, stdnum/cz/__init__.py,
	  stdnum/de/__init__.py, stdnum/dk/__init__.py,
	  stdnum/ee/__init__.py, stdnum/es/__init__.py,
	  stdnum/fi/__init__.py, stdnum/fr/__init__.py,
	  stdnum/gb/__init__.py, stdnum/gr/__init__.py,
	  stdnum/hu/__init__.py, stdnum/ie/__init__.py,
	  stdnum/it/__init__.py, stdnum/lt/__init__.py,
	  stdnum/lu/__init__.py, stdnum/lv/__init__.py,
	  stdnum/mt/__init__.py, stdnum/nl/__init__.py,
	  stdnum/pl/__init__.py, stdnum/pt/__init__.py,
	  stdnum/ro/__init__.py, stdnum/se/__init__.py,
	  stdnum/si/__init__.py, stdnum/sk/__init__.py,
	  stdnum/us/__init__.py: give all packages a description

2012-02-19  Arthur de Jong <arthur@arthurdejong.org>

	* [6d74fe9] stdnum/nl/vat.py: remove stdnum.nl.vat alias module

2012-02-19  Arthur de Jong <arthur@arthurdejong.org>

	* [528901d] stdnum/util.py, tests/test_robustness.doctest: use
	  introspection to find number modules and test them

2012-02-18  Arthur de Jong <arthur@arthurdejong.org>

	* [2d80a24] README, stdnum/__init__.py, stdnum/bg/vat.py,
	  tests/test_bg_vat.doctest, tests/test_robustness.doctest: add
	  a VAT (Идентификационен номер по ДДС,
	  Bulgarian VAT numbers) module

2012-02-18  Arthur de Jong <arthur@arthurdejong.org>

	* [1384488] README, stdnum/__init__.py, stdnum/bg/pnf.py,
	  tests/test_robustness.doctest: add a PNF (ЛНЧ, Личен
	  номер на чужденец, Bulgarian personal number of
	  a foreigner) module

2012-02-18  Arthur de Jong <arthur@arthurdejong.org>

	* [a24e98e] README, stdnum/__init__.py, stdnum/bg/__init__.py,
	  stdnum/bg/egn.py, tests/test_robustness.doctest: add an EGN
	  (ЕГН, Единен граждански номер, Bulgarian
	  personal identity codes) module

2012-02-18  Arthur de Jong <arthur@arthurdejong.org>

	* [4ac3fe7] tests/test_robustness.doctest: explicitly test for False

2012-02-18  Arthur de Jong <arthur@arthurdejong.org>

	* [0c78d90] stdnum/lt/pvm.py: explicitly return False if no
	  rule matches

2012-02-18  Arthur de Jong <arthur@arthurdejong.org>

	* [cddb5f9] README, stdnum/__init__.py, stdnum/gb/__init__.py,
	  stdnum/gb/vat.py, tests/test_gb_vat.doctest,
	  tests/test_robustness.doctest: add a VAT (United Kingdom (and
	  Isle of Man) VAT registration number) module

2012-02-18  Arthur de Jong <arthur@arthurdejong.org>

	* [6c436ec] tests/test_fi_hetu.doctest: fix typo

2012-02-18  Arthur de Jong <arthur@arthurdejong.org>

	* [aa39c92] README, stdnum/__init__.py, stdnum/se/__init__.py,
	  stdnum/se/vat.py, tests/test_robustness.doctest: add a VAT (Moms,
	  Mervärdesskatt, Swedish VAT number) module

2012-02-18  Arthur de Jong <arthur@arthurdejong.org>

	* [3a7a91c] README, stdnum/__init__.py, stdnum/si/__init__.py,
	  stdnum/si/ddv.py, tests/test_robustness.doctest: add a ID za DDV
	  (Davčna številka, Slovenian VAT number) module

2012-02-18  Arthur de Jong <arthur@arthurdejong.org>

	* [ebbd1af] README, stdnum/__init__.py, stdnum/pl/__init__.py,
	  stdnum/pl/nip.py, tests/test_robustness.doctest: add a NIP
	  (Numer Identyfikacji Podatkowej, Polish VAT number) module

2012-02-18  Arthur de Jong <arthur@arthurdejong.org>

	* [c75f072] README, stdnum/__init__.py, stdnum/mt/__init__.py,
	  stdnum/mt/vat.py, tests/test_robustness.doctest: add a VAT
	  (Maltese VAT number) module

2012-02-17  Arthur de Jong <arthur@arthurdejong.org>

	* [0922f3c] stdnum/it/iva.py: strip a few more separators

2012-02-17  Arthur de Jong <arthur@arthurdejong.org>

	* [b708920] README, stdnum/__init__.py, stdnum/fr/tva.py,
	  tests/test_robustness.doctest: add a TVA (Numéro d'identification
	  à la taxe sur la valeur ajoutée, French VAT number) module

2012-02-17  Arthur de Jong <arthur@arthurdejong.org>

	* [dc8e9a3] README, stdnum/__init__.py, stdnum/lt/__init__.py,
	  stdnum/lt/pvm.py, tests/test_robustness.doctest: add a PVM
	  (Pridėtinės vertės mokestis mokėtojo kodas, Lithuanian VAT
	  number) module

2012-02-17  Arthur de Jong <arthur@arthurdejong.org>

	* [20296ef] README, stdnum/__init__.py, stdnum/ee/__init__.py,
	  stdnum/ee/kmkr.py, tests/test_robustness.doctest: add a KMKR
	  (Käibemaksukohuslase, Estonian VAT number) module

2012-02-17  Arthur de Jong <arthur@arthurdejong.org>

	* [2100c28] README, stdnum/__init__.py, stdnum/ie/__init__.py,
	  stdnum/ie/vat.py, tests/test_robustness.doctest: add a VAT
	  (Irish VAT number) module

2012-02-17  Arthur de Jong <arthur@arthurdejong.org>

	* [d2f1348] README, stdnum/__init__.py, stdnum/hu/__init__.py,
	  stdnum/hu/anum.py, tests/test_robustness.doctest: add an ANUM
	  (Közösségi adószám, Hungarian VAT number) module

2012-02-17  Arthur de Jong <arthur@arthurdejong.org>

	* [d803443] README, stdnum/__init__.py, stdnum/cz/dic.py,
	  tests/test_robustness.doctest: add a DIČ (Daňové identifikační
	  číslo, Czech VAT number) module

2012-02-17  Arthur de Jong <arthur@arthurdejong.org>

	* [0d2e4cc] README, stdnum/__init__.py, stdnum/fi/alv.py,
	  tests/test_robustness.doctest: add an ALV nro
	  (Arvonlisäveronumero, Finnish VAT number) module

2012-02-17  Arthur de Jong <arthur@arthurdejong.org>

	* [03eccc4] README, stdnum/__init__.py, stdnum/sk/dph.py,
	  tests/test_robustness.doctest: add IČ DPH (Identifikačné
	  číslo pre daň z pridanej hodnoty, Slovak VAT number) module

2012-02-16  Arthur de Jong <arthur@arthurdejong.org>

	* [389c306] README, stdnum/__init__.py, stdnum/pt/__init__.py,
	  stdnum/pt/nif.py, tests/test_robustness.doctest: add a NIF
	  (Número de identificação fiscal, Portuguese VAT number) module

2012-02-13  Arthur de Jong <arthur@arthurdejong.org>

	* [cdc7f96] README, stdnum/__init__.py, stdnum/at/__init__.py,
	  stdnum/at/uid.py, tests/test_robustness.doctest: add a UID
	  (Umsatzsteuer-Identifikationsnummer, Austrian VAT number) module

2012-02-13  Arthur de Jong <arthur@arthurdejong.org>

	* [e0bb4e8] README, stdnum/__init__.py, stdnum/cy/__init__.py,
	  stdnum/cy/vat.py, tests/test_robustness.doctest: add a
	  Αριθμός Εγγραφής Φ.Π.Α. (Cypriot VAT number)
	  module

2012-02-12  Arthur de Jong <arthur@arthurdejong.org>

	* [402a0d5] stdnum/es/cif.py, stdnum/it/iva.py, stdnum/util.py:
	  use the luhn module where possible

2012-02-12  Arthur de Jong <arthur@arthurdejong.org>

	* [1c2b4c3] tests/test_robustness.doctest: fix typo in header

2012-02-12  Arthur de Jong <arthur@arthurdejong.org>

	* [09ef54d] README, stdnum/__init__.py, stdnum/it/__init__.py,
	  stdnum/it/iva.py, tests/test_robustness.doctest: add a Partita
	  IVA (Italian VAT number) module

2012-02-12  Arthur de Jong <arthur@arthurdejong.org>

	* [ffc824b] README, stdnum/__init__.py, stdnum/ro/cf.py,
	  tests/test_robustness.doctest: add a CF (Cod de înregistrare
	  în scopuri de TVA, Romanian VAT number) module

2012-02-12  Arthur de Jong <arthur@arthurdejong.org>

	* [9d65f6a] README, stdnum/__init__.py, stdnum/ro/__init__.py,
	  stdnum/ro/cnp.py, tests/test_robustness.doctest: add a CNP
	  (Cod Numeric Personal, Romanian Numerical Personal Code) module

2012-02-12  Arthur de Jong <arthur@arthurdejong.org>

	* [60533cd] stdnum/gr/vat.py: also strip : as seen in some numbers

2012-02-11  Arthur de Jong <arthur@arthurdejong.org>

	* [74c4c71] README, stdnum/__init__.py, stdnum/lu/__init__.py,
	  stdnum/lu/tva.py, tests/test_robustness.doctest: add a TVA
	  (Numéro d'identification à la taxe sur la valeur ajoutée,
	  Luxembourgian VAT number) module

2012-02-11  Arthur de Jong <arthur@arthurdejong.org>

	* [74f4e2a] README, stdnum/__init__.py, stdnum/dk/__init__.py,
	  stdnum/dk/cvr.py, tests/test_robustness.doctest: add a CVR
	  (Momsregistreringsnummer, Danish VAT number) module

2012-02-11  Arthur de Jong <arthur@arthurdejong.org>

	* [3c64f1e] stdnum/be/vat.py: add missing test

2012-02-11  Arthur de Jong <arthur@arthurdejong.org>

	* [b8c3ba6] stdnum/be/vat.py: clean up numbers starting with (0)

2012-02-11  Arthur de Jong <arthur@arthurdejong.org>

	* [8a10861] README, stdnum/__init__.py, stdnum/lv/__init__.py,
	  stdnum/lv/pvn.py, tests/test_robustness.doctest: add a PVN
	  (Pievienotās vērtības nodokļa, Latvian VAT number) module

2012-02-11  Arthur de Jong <arthur@arthurdejong.org>

	* [a3610a3] README, stdnum/__init__.py, stdnum/es/nif.py,
	  tests/test_robustness.doctest: add a NIF (Número de
	  Identificación Fiscal, Spanish VAT number) module

2012-02-11  Arthur de Jong <arthur@arthurdejong.org>

	* [aa90c4f] README, stdnum/__init__.py, stdnum/es/cif.py,
	  tests/test_robustness.doctest: add a CIF (Certificado de
	  Identificación Fiscal, Spanish tax identification number) module

2012-02-11  Arthur de Jong <arthur@arthurdejong.org>

	* [a574e6c] stdnum/util.py: implement a digitsum() function to
	  find the sub of all digits in a number

2012-02-11  Arthur de Jong <arthur@arthurdejong.org>

	* [84d1ee7] stdnum/es/nie.py: fix description and remove unnecessary
	  import

2012-02-10  Arthur de Jong <arthur@arthurdejong.org>

	* [fa2d398] README, stdnum/__init__.py, stdnum/es/nie.py,
	  tests/test_robustness.doctest: add a NIE (Número de
	  Identificación de Extranjeros, Spanish identification number
	  for foreigners) module

2012-02-10  Arthur de Jong <arthur@arthurdejong.org>

	* [fe3210f] README, stdnum/__init__.py, stdnum/es/__init__.py,
	  stdnum/es/dni.py, tests/test_robustness.doctest: add a DNI
	  (Documento nacional de identidad, Spanish personal identity
	  codes) module

2012-02-10  Arthur de Jong <arthur@arthurdejong.org>

	* [4439f47] README, stdnum/__init__.py, stdnum/be/__init__.py,
	  stdnum/be/vat.py, tests/test_robustness.doctest: add a BTW, TVA,
	  NWSt (Belgian VAT number) module

2012-02-10  Arthur de Jong <arthur@arthurdejong.org>

	* [1ab602c] README, stdnum/__init__.py, stdnum/sk/__init__.py,
	  stdnum/sk/rc.py: also make the stdnum.cz.rc module available
	  as stdnum.sk.rc

2012-02-10  Arthur de Jong <arthur@arthurdejong.org>

	* [e9e5861] stdnum/nl/vat.py: also make the stdnum.nl.btw module
	  available as stdnum.nl.vat

2012-02-10  Arthur de Jong <arthur@arthurdejong.org>

	* [c795b3c] stdnum/nl/btw.py: fix number in test and ensure that
	  number is not all zeroes

2012-02-10  Arthur de Jong <arthur@arthurdejong.org>

	* [2bb9231] stdnum/cz/rc.py: add some info to description

2012-02-10  Arthur de Jong <arthur@arthurdejong.org>

	* [1aeeaf4] README, stdnum/__init__.py, stdnum/de/__init__.py,
	  stdnum/de/vat.py, tests/test_robustness.doctest: add an Ust ID
	  Nr. (Umsatzsteur Identifikationnummer, the German VAT number)
	  module

2012-02-10  Arthur de Jong <arthur@arthurdejong.org>

	* [473b3ca] README, stdnum/__init__.py, stdnum/gr/__init__.py,
	  stdnum/gr/vat.py, tests/test_robustness.doctest: add a FPA,
	  ΦΠΑ (Foros Prostithemenis Aksias, the Greek VAT number) module

2012-02-05  Arthur de Jong <arthur@arthurdejong.org>

	* [9f1d47b] README, stdnum/__init__.py, stdnum/fr/__init__.py,
	  stdnum/fr/siren.py, tests/test_robustness.doctest: add a SIREN
	  (Système d'Identification du Répertoire des Entreprises,
	  a French company identification number) module

2012-02-05  Arthur de Jong <arthur@arthurdejong.org>

	* [575fc75] README, stdnum/__init__.py, stdnum/cz/__init__.py,
	  stdnum/cz/rc.py, tests/test_robustness.doctest: add a RČ
	  (Rodné číslo, the Czech birth numbers) module

2012-02-04  Arthur de Jong <arthur@arthurdejong.org>

	* [41dd815] stdnum/br/cpf.py, stdnum/ean.py, stdnum/grid.py,
	  stdnum/iban.py, stdnum/imei.py, stdnum/imsi.py, stdnum/isan.py,
	  stdnum/isbn.py, stdnum/ismn.py, stdnum/issn.py, stdnum/meid.py,
	  stdnum/nl/bsn.py, stdnum/nl/btw.py, stdnum/nl/onderwijsnummer.py,
	  stdnum/us/ssn.py, stdnum/util.py: implement a stdnum.util module
	  for holding utility functions (for now clean())

2012-02-04  Arthur de Jong <arthur@arthurdejong.org>

	* [54cc207] tests/test_robustness.doctest: some extra rubustness
	  checks

2012-02-04  Arthur de Jong <arthur@arthurdejong.org>

	* [b43817c] stdnum/nl/bsn.py, stdnum/nl/onderwijsnummer.py: rename
	  calc_checksum() to checksum() for consistency

2012-02-04  Arthur de Jong <arthur@arthurdejong.org>

	* [548f129] stdnum/iso7064/mod_37_36.py: use integer division

2012-02-02  Arthur de Jong <arthur@arthurdejong.org>

	* [9efde4f] README, stdnum/__init__.py, stdnum/nl/btw.py,
	  tests/test_robustness.doctest: add a BTW (the Dutch VAT number)
	  module

2012-02-02  Arthur de Jong <arthur@arthurdejong.org>

	* [086e509] README, stdnum/__init__.py, stdnum/nl/bsn.py,
	  stdnum/nl/onderwijsnummer.py, tests/test_robustness.doctest:
	  add an onderwijsnummer (Dutch school number) module

2011-12-31  Arthur de Jong <arthur@arthurdejong.org>

	* [587c538] setup.py: revert switching to distutils part of r93,
	  keep restructuring part

2011-12-31  Arthur de Jong <arthur@arthurdejong.org>

	* [6756d79] setup.cfg, setup.py: switch to distutils

2011-11-07  Arthur de Jong <arthur@arthurdejong.org>

	* [e6020b9] README, stdnum/__init__.py, stdnum/fi/__init__.py,
	  stdnum/fi/hetu.py, tests/test_fi_hetu.doctest,
	  tests/test_robustness.doctest: add a HETU (Finnish personal
	  identity code) module as provided by Jussi Judin (#5)

2011-09-30  Arthur de Jong <arthur@arthurdejong.org>

	* [77ac8d4] setup.py: fix version number use (fix r86)

2011-09-30  Arthur de Jong <arthur@arthurdejong.org>

	* [6cdfb6b] ChangeLog, NEWS, stdnum/__init__.py: get files ready
	  for 0.6 release

2011-09-30  Arthur de Jong <arthur@arthurdejong.org>

	* [1451b47] stdnum/imsi.dat, stdnum/isbn.dat, stdnum/isil.dat:
	  update data files

2011-09-30  Arthur de Jong <arthur@arthurdejong.org>

	* [6ec6c7e] setup.py, stdnum/__init__.py: move the version number
	  definition to the stdnum package

2011-09-25  Arthur de Jong <arthur@arthurdejong.org>

	* [ae2013d] stdnum/ismn.py: implement an ismn_type() function

2011-09-23  Arthur de Jong <arthur@arthurdejong.org>

	* [14b97f9] : ignore __pycache__ directories

2011-09-23  Arthur de Jong <arthur@arthurdejong.org>

	* [cbd114e] README, getimsi.py, stdnum/__init__.py, stdnum/imsi.dat,
	  stdnum/imsi.py, tests/test_robustness.doctest: add an IMSI
	  (International Mobile Subscriber Identity) module

2011-09-23  Arthur de Jong <arthur@arthurdejong.org>

	* [68c98f0] stdnum/imei.py: implement an imei.split() function
	  that splits the number into a TAC, serial number and checksum
	  or software version

2011-09-23  Arthur de Jong <arthur@arthurdejong.org>

	* [e6cd768] getiban.py: remove unneeded import

2011-09-20  Arthur de Jong <arthur@arthurdejong.org>

	* [4e8d7e4] stdnum/isbn.py, tests/test_isbn.doctest: implement a
	  conversion function from ISBN13 to ISBN10

2011-09-20  Arthur de Jong <arthur@arthurdejong.org>

	* [d6f9ba2] tests/test_imei.doctest, tests/test_isan.doctest,
	  tests/test_isbn.doctest, tests/test_ismn.doctest: fix space
	  before inline comments

2011-09-20  Arthur de Jong <arthur@arthurdejong.org>

	* [c4ad099] stdnum/isbn.py, tests/test_isbn.doctest: fix a problem
	  with an ISBN13 with a valid check digit but with an unknown
	  bookland prefix

2011-09-04  Arthur de Jong <arthur@arthurdejong.org>

	* [1c7c198] setup.py: fix homepage URL

2011-08-19  Arthur de Jong <arthur@arthurdejong.org>

	* [881e8a6] getiban.py, getisbn.py, getisil.py, setup.py,
	  stdnum/br/cpf.py, stdnum/ean.py, stdnum/grid.py,
	  stdnum/iban.py, stdnum/imei.py, stdnum/isan.py, stdnum/isbn.py,
	  stdnum/isil.py, stdnum/ismn.py, stdnum/iso7064/mod_11_10.py,
	  stdnum/iso7064/mod_11_2.py, stdnum/iso7064/mod_37_2.py,
	  stdnum/iso7064/mod_37_36.py, stdnum/iso7064/mod_97_10.py,
	  stdnum/issn.py, stdnum/luhn.py, stdnum/meid.py, stdnum/nl/bsn.py,
	  stdnum/numdb.py, stdnum/us/ssn.py, stdnum/verhoeff.py: make
	  source code layout follow PEP8 more

2011-07-09  Arthur de Jong <arthur@arthurdejong.org>

	* [8dbcedd] ChangeLog, NEWS, setup.py: get files ready for 0.5
	  release

2011-07-09  Arthur de Jong <arthur@arthurdejong.org>

	* [596c7a1] stdnum/iban.dat, stdnum/isbn.dat, stdnum/isil.dat:
	  update data files

2011-06-20  Arthur de Jong <arthur@arthurdejong.org>

	* [63b2b0a] stdnum/issn.py: implement a conversion function from
	  ISSN to EAN

2011-06-20  Arthur de Jong <arthur@arthurdejong.org>

	* [d101acf] stdnum/isbn.py, stdnum/ismn.py: use the ean module
	  for calculating the check digit

2011-06-20  Arthur de Jong <arthur@arthurdejong.org>

	* [f5747bc] README, stdnum/__init__.py, stdnum/ean.py,
	  tests/test_robustness.doctest: add an EAN (International Article
	  Number) module

2011-03-06  Arthur de Jong <arthur@arthurdejong.org>

	* [1b904ba] setup.py, stdnum/numdb.py: also support Python3 with
	  the same codebase (see #3)

2011-03-06  Arthur de Jong <arthur@arthurdejong.org>

	* [a45079f] setup.py: ensure that data files are always included

2011-03-02  Arthur de Jong <arthur@arthurdejong.org>

	* [c17920a] stdnum/verhoeff.py: Python 2.5 compatibility improvement

2011-02-06  Arthur de Jong <arthur@arthurdejong.org>

	* [e6ba399] ChangeLog, NEWS, setup.py: get files ready for 0.4
	  release

2011-02-06  Arthur de Jong <arthur@arthurdejong.org>

	* [060dfce] stdnum/isbn.dat: include an updated version

2011-02-06  Arthur de Jong <arthur@arthurdejong.org>

	* [8806d2a] README, stdnum/__init__.py, stdnum/us/__init__.py,
	  stdnum/us/ssn.py, tests/test_robustness.doctest: add an SSN
	  (U.S. Social Security Number) module

2011-02-05  Arthur de Jong <arthur@arthurdejong.org>

	* [c260626] README, stdnum/__init__.py: add ISIL to the documentation

2011-02-05  Arthur de Jong <arthur@arthurdejong.org>

	* [e517903] getisil.py, stdnum/isil.dat, stdnum/isil.py,
	  tests/test_robustness.doctest: add an ISIL (International Standard
	  Identifier for Libraries and Related Organizations) module

2011-02-05  Arthur de Jong <arthur@arthurdejong.org>

	* [96f4f7c] stdnum/numdb.py: allow most kind of characters in
	  number ranges

2011-02-05  Arthur de Jong <arthur@arthurdejong.org>

	* [33611d1] stdnum/iban.py: move more validation into try/except
	  (specifically the _convert() call)

2011-02-05  Arthur de Jong <arthur@arthurdejong.org>

	* [62aa496] tests/test_iban.doctest, tests/test_imei.doctest,
	  tests/test_isan.doctest, tests/test_isbn.doctest,
	  tests/test_ismn.doctest, tests/test_issn.doctest,
	  tests/test_luhn.doctest, tests/test_meid.doctest,
	  tests/test_nl_bsn.doctest, tests/test_robustness.doctest,
	  tests/test_verhoeff.doctest: move all robustness tests into one
	  test file

2011-02-05  Arthur de Jong <arthur@arthurdejong.org>

	* [9081e90] tests/test_iso7064.doctest: fix imports of
	  iso7064.mod_*_* modules

2011-02-05  Arthur de Jong <arthur@arthurdejong.org>

	* [e5678ca] stdnum/isbn.py: fix typo in r53

2011-02-05  Arthur de Jong <arthur@arthurdejong.org>

	* [ea737ff] stdnum/__init__.py: add encoding header

2011-01-31  Arthur de Jong <arthur@arthurdejong.org>

	* [cc7a6d8] README, stdnum/__init__.py: get README and package
	  docstring in sync

2011-01-21  Arthur de Jong <arthur@arthurdejong.org>

	* [6724e50] stdnum/isbn.py, tests/test_isbn.doctest: add a convert
	  parameter to most isbn functions to automatically convert
	  to ISBN-13

2011-01-17  Arthur de Jong <arthur@arthurdejong.org>

	* [411874e] README: add note about CPF and update copyright year

2011-01-16  Arthur de Jong <arthur@arthurdejong.org>

	* [db2238c] README, getiban.py, stdnum/iban.dat, stdnum/iban.py,
	  tests/test_iban.doctest: add an IBAN (International Bank Account
	  Number) module

2011-01-16  Arthur de Jong <arthur@arthurdejong.org>

	* [2b4aff6] setup.py, stdnum/numdb.py: revert r49 because it wasn't
	  needed after all

2011-01-16  Arthur de Jong <arthur@arthurdejong.org>

	* [0bf31c9] setup.py, stdnum/numdb.py: introduce a full parameter
	  that can be used to only return the part that is in the database

2011-01-16  Arthur de Jong <arthur@arthurdejong.org>

	* [4fe17ba] stdnum/grid.py, stdnum/isan.py: fix import of iso7064
	  modules

2011-01-16  Arthur de Jong <arthur@arthurdejong.org>

	* [c1f03c2] stdnum/numdb.py, test.dat: add test for partial match

2011-01-15  Arthur de Jong <arthur@arthurdejong.org>

	* [81a99d3] tests/test_nl_bsn.doctest: fix comments to refer to
	  the new path of the module

2011-01-15  Arthur de Jong <arthur@arthurdejong.org>

	* [fda67ac] stdnum/br/__init__.py, stdnum/br/cpf.py,
	  tests/test_br_cpf.doctest: add a CPF (Cadastro de Pessoas
	  Físicas) module

2011-01-15  Arthur de Jong <arthur@arthurdejong.org>

	* [8d3a92c] stdnum/nl/__init__.py, stdnum/nl/bsn.py,
	  tests/test_nl_bsn.doctest: move bsn module inside nl package

2010-11-26  Arthur de Jong <arthur@arthurdejong.org>

	* [6ed480c] setup.py, stdnum/__init__.py: move general description
	  to package __init__.py file

2010-11-24  Arthur de Jong <arthur@arthurdejong.org>

	* [124c16d] getisbn.py, stdnum/isbn.dat, stdnum/isbn.py,
	  stdnum/isbn/ranges.py, stdnum/numdb.py, test.dat,
	  tests/test_isbn.doctest: implement a new numdb module to hold
	  information on hierarchically organised numbers and switch the
	  isbn module to use this format instead

2010-09-11  Arthur de Jong <arthur@arthurdejong.org>

	* [72a0b96] ChangeLog, NEWS, README, setup.py: get files ready
	  for 0.3 release

2010-09-05  Arthur de Jong <arthur@arthurdejong.org>

	* [cd844b5] setup.py: have sdist target create a tarball with
	  reasonable permissions

2010-08-29  Arthur de Jong <arthur@arthurdejong.org>

	* [2e64eb8] stdnum/bsn.py, stdnum/isan.py,
	  stdnum/iso7064/mod_37_2.py, stdnum/iso7064/mod_37_36.py,
	  stdnum/meid.py, stdnum/verhoeff.py, tests/test_bsn.doctest,
	  tests/test_ismn.doctest: spelling check

2010-08-28  Arthur de Jong <arthur@arthurdejong.org>

	* [2a7afff] README, stdnum/grid.py: add a GRid (Global Release
	  Identifier) module

2010-08-27  Arthur de Jong <arthur@arthurdejong.org>

	* [9970652] README, stdnum/isan.py, tests/test_isan.doctest:
	  add ISAN (International Standard Audiovisual Number) module

2010-08-27  Arthur de Jong <arthur@arthurdejong.org>

	* [fda9552] README, stdnum/iso7064/__init__.py,
	  stdnum/iso7064/mod_11_10.py, stdnum/iso7064/mod_11_2.py,
	  stdnum/iso7064/mod_37_2.py, stdnum/iso7064/mod_37_36.py,
	  stdnum/iso7064/mod_97_10.py, tests/test_iso7064.doctest: implement
	  some ISO/IEC 7064 check digit schemes

2010-08-26  Arthur de Jong <arthur@arthurdejong.org>

	* [4017d83] stdnum/isbn/__init__.py, stdnum/ismn.py, stdnum/issn.py,
	  stdnum/verhoeff.py: switch to using enumerate() for looping over
	  numbers where needed

2010-08-21  Arthur de Jong <arthur@arthurdejong.org>

	* [8bdb6ef] README, stdnum/ismn.py, tests/test_ismn.doctest:
	  add an ISMN (International Standard Music Number) module

2010-08-21  Arthur de Jong <arthur@arthurdejong.org>

	* [97d5280] tests/test_isbn.doctest: simplify ranges tests a bit

2010-08-21  Arthur de Jong <arthur@arthurdejong.org>

	* [f3b025b] stdnum/isbn/ranges.py: update ranges from newly
	  downloaded file

2010-08-20  Arthur de Jong <arthur@arthurdejong.org>

	* [8748830] README, stdnum/meid.py, tests/test_meid.doctest:
	  add a MEID (Mobile Equipment Identifier) module

2010-08-20  Arthur de Jong <arthur@arthurdejong.org>

	* [f125f3e] setup.cfg, tests/test_isbn.doctest,
	  tests/test_issn.doctest: write some more tests (some of which
	  are a bit of a hack) to get coverage to 100%

2010-08-20  Arthur de Jong <arthur@arthurdejong.org>

	* [d622d92] stdnum/imei.py, tests/test_imei.doctest: add an
	  add_check_digit option to the format() function to add a check
	  digit if needed and possible

2010-08-20  Arthur de Jong <arthur@arthurdejong.org>

	* [a74a6f7] stdnum/luhn.py: make checksum calculation a little
	  more readable

2010-08-20  Arthur de Jong <arthur@arthurdejong.org>

	* [6bb04af] README, stdnum/imei.py, tests/test_imei.doctest:
	  add an IMEI (International Mobile Equipment Identity) module

2010-08-20  Arthur de Jong <arthur@arthurdejong.org>

	* [ca08995] README, stdnum/luhn.py, tests/test_luhn.doctest:
	  add functions for handling the Luhn and Luhn mod N algorithms

2010-08-20  Arthur de Jong <arthur@arthurdejong.org>

	* [7e800c3] stdnum/issn.py: fix typo

2010-08-20  Arthur de Jong <arthur@arthurdejong.org>

	* [571dc83] README, stdnum/verhoeff.py, tests/test_verhoeff.doctest:
	  add functions for handling the Verhoeff algorithm

2010-08-16  Arthur de Jong <arthur@arthurdejong.org>

	* [9ffa9fd] ChangeLog, NEWS, setup.py: get files ready for 0.2
	  release

2010-08-16  Arthur de Jong <arthur@arthurdejong.org>

	* [19b7d2d] debian/changelog, debian/compat, debian/control,
	  debian/copyright, debian/docs, debian/rules, debian/source/format,
	  debian/watch: debian package configuration is now available at
	  http://svn.debian.org/viewsvn/python-modules/packages/python-stdnum/trunk/

2010-08-14  Arthur de Jong <arthur@arthurdejong.org>

	* [85e9e3b] setup.cfg, tests/test_bsn.doctest,
	  tests/test_isbn.doctest: add more doctests that are not part of
	  the module documentation

2010-07-27  Arthur de Jong <arthur@arthurdejong.org>

	* [c536356] README, stdnum/bsn.py, stdnum/isbn/__init__.py,
	  stdnum/issn.py: rename validate() function to is_valid()

2010-07-27  Arthur de Jong <arthur@arthurdejong.org>

	* [85a5fc8] stdnum/isbn/ranges.py: fix typo in output() function

2010-07-27  Arthur de Jong <arthur@arthurdejong.org>

	* [1071603] stdnum/isbn/ranges.py: fix range detection to handle
	  lookup errors more gracefully

2010-07-27  Arthur de Jong <arthur@arthurdejong.org>

	* [a86c4cc] stdnum/bsn.py, stdnum/isbn/__init__.py, stdnum/issn.py:
	  handle wrong types passed to validate() more gracefully

2010-07-26  Arthur de Jong <arthur@arthurdejong.org>

	* [9495116] debian/changelog, debian/source/format, debian/watch:
	  make release 0.1-1

2010-07-25  Arthur de Jong <arthur@arthurdejong.org>

	* [55a97d4] ChangeLog: get files ready for 0.1 release

2010-07-25  Arthur de Jong <arthur@arthurdejong.org>

	* [1e02d5a] debian/changelog, debian/compat, debian/control,
	  debian/copyright, debian/docs, debian/rules, debian/source/format:
	  add Debian packaging

2010-07-25  Arthur de Jong <arthur@arthurdejong.org>

	* [14bd2fe] COPYING, ChangeLog, MANIFEST.in, NEWS: include some
	  more files in the source distribution

2010-07-25  Arthur de Jong <arthur@arthurdejong.org>

	* [9940cf3] setup.cfg: use nose for testing and ignore generated
	  files and directories

2010-07-25  Arthur de Jong <arthur@arthurdejong.org>

	* [967f2ae] setup.py: add a setup.py script for use of setuptools

2010-07-25  Arthur de Jong <arthur@arthurdejong.org>

	* [ca5f850] README: add documentation to the README

2010-07-25  Arthur de Jong <arthur@arthurdejong.org>

	* [40aff16] stdnum/bsn.py, stdnum/isbn/__init__.py,
	  stdnum/isbn/ranges.py, stdnum/issn.py: spelling check an extra
	  doctest and a simplification

2010-07-23  Arthur de Jong <arthur@arthurdejong.org>

	* [6eabbc3] stdnum/bsn.py: add BSN (Burgerservicenummer, the Ducth
	  national identification number) module

2010-07-23  Arthur de Jong <arthur@arthurdejong.org>

	* [92e18aa] stdnum/issn.py: add an ISSN (International Standard
	  Serial Number) module

2010-07-23  Arthur de Jong <arthur@arthurdejong.org>

	* [31ce783] stdnum/isbn/__init__.py: fix example and fix ISBN13
	  conversion

2010-07-23  Arthur de Jong <arthur@arthurdejong.org>

	* [4b8c10e] stdnum/isbn/__init__.py: get rid of remainders of old
	  code that used exceptions

2010-07-23  Arthur de Jong <arthur@arthurdejong.org>

	* [7d2f15a] README, stdnum/__init__.py, stdnum/isbn/__init__.py,
	  stdnum/isbn/ranges.py: make a initial repository layout with an
	  implementation of the isbn module