|
| 1 | +2017-04-10 Arthur de Jong <arthur@arthurdejong.org> |
| 2 | + |
| 3 | + * [93459d3] stdnum/cn/loc.dat, stdnum/eu/nace.dat, stdnum/iban.dat, |
| 4 | + stdnum/imsi.dat, stdnum/isbn.dat: Update database files |
| 5 | + |
| 6 | +2017-04-10 Arthur de Jong <arthur@arthurdejong.org> |
| 7 | + |
| 8 | + * [bb1712d] online_check/README, online_check/check.js, |
| 9 | + online_check/jquery-1.7.1.js, online_check/jquery-1.7.1.min.js, |
| 10 | + online_check/stdnum.wsgi, online_check/template.html: Add simple |
| 11 | + online check example |
| 12 | + |
| 13 | + This adds the code that is used to find formats for which a |
| 14 | + supplied number is valid. This is the code that is used on |
| 15 | + https://arthurdejong.org/python-stdnum/check/ |
| 16 | + |
| 17 | +2017-04-10 Arthur de Jong <arthur@arthurdejong.org> |
| 18 | + |
| 19 | + * [5398247] stdnum/lei.py, tests/test_lei.doctest: Add Legal |
| 20 | + Entity Identifier |
| 21 | + |
| 22 | +2017-04-10 Arthur de Jong <arthur@arthurdejong.org> |
| 23 | + |
| 24 | + * [e844b52] stdnum/iban.py, stdnum/iso7064/mod_97_10.py: Integrate |
| 25 | + base10 conversion into Mod 97, 10 |
| 26 | + |
| 27 | + This moves the conversion of an alphanumeric string to a numeric |
| 28 | + representation for modulo 97 calculation to the mod_97_10 module |
| 29 | + because this mechanism seems to be used by multiple formats. |
| 30 | + |
| 31 | +2017-04-10 Arthur de Jong <arthur@arthurdejong.org> |
| 32 | + |
| 33 | + * [1b3d16e] stdnum/es/nie.py: Add missing export (__all__) |
| 34 | + |
| 35 | +2017-04-10 Arthur de Jong <arthur@arthurdejong.org> |
| 36 | + |
| 37 | + * [72f5c6c] stdnum/rs/__init__.py, stdnum/rs/pib.py, |
| 38 | + tests/test_rs_pib.doctest: Add Serbian Poreski Identifikacioni Broj |
| 39 | + |
| 40 | +2017-04-10 Arthur de Jong <arthur@arthurdejong.org> |
| 41 | + |
| 42 | + * [800205c] tox.ini: Print warnings during tox run |
| 43 | + |
| 44 | +2017-04-07 Arthur de Jong <arthur@arthurdejong.org> |
| 45 | + |
| 46 | + * [7493eca] stdnum/cusip.py, stdnum/ean.py, stdnum/ec/ci.py, |
| 47 | + stdnum/isin.py, stdnum/tr/tckimlik.py: Use a slightly more |
| 48 | + readable weight alternation |
| 49 | + |
| 50 | + Switch to a slightly more readable syntax for alternating between |
| 51 | + two weights in checksums calculations. |
| 52 | + |
| 53 | +2017-04-01 Arthur de Jong <arthur@arthurdejong.org> |
| 54 | + |
| 55 | + * [23b2150] stdnum/eu/eic.py, tests/test_eu_eic.doctest: Add |
| 56 | + European EIC (Energy Identification Code) |
| 57 | + |
| 58 | +2017-03-26 Arthur de Jong <arthur@arthurdejong.org> |
| 59 | + |
| 60 | + * [194f025] stdnum/meid.py, tests/test_robustness.doctest: Add |
| 61 | + unicode robustness tests |
| 62 | + |
| 63 | + This tests a few unicode strings and fixes a bug in the MEID |
| 64 | + module. |
| 65 | + |
| 66 | +2017-03-26 Arthur de Jong <arthur@arthurdejong.org> |
| 67 | + |
| 68 | + * [d43c394] stdnum/es/referenciacatastral.py, |
| 69 | + tests/test_es_referenciacatastral.doctest: Add test for Ñ in |
| 70 | + Referencia Catastral |
| 71 | + |
| 72 | + This supports the Referencia Catastral with an Ñ in it for |
| 73 | + both byte strings (Python 2) and unicode strings (Python 2 and |
| 74 | + 3). Support for literal unicode strings in Python 2 doctests is |
| 75 | + flaky so the test is a bit ugly. |
| 76 | + |
| 77 | + This also adds a few numbers that were found online. Sadly no |
| 78 | + real numbers with an Ñ in it have been found so the one in the |
| 79 | + test was constructed. |
| 80 | + |
| 81 | +2017-03-26 Arthur de Jong <arthur@arthurdejong.org> |
| 82 | + |
| 83 | + * [61d73c1] getnace.py, stdnum/eu/nace.dat, stdnum/eu/nace.py, |
| 84 | + tests/test_robustness.doctest: Add European NACE classification |
| 85 | + |
| 86 | + This number is used to classify business. Validation is done |
| 87 | + based on a downloaded registry. |
| 88 | + |
| 89 | +2017-03-26 Arthur de Jong <arthur@arthurdejong.org> |
| 90 | + |
| 91 | + * [649f073] stdnum/mc/tva.py: Remove unused import |
| 92 | + |
| 93 | +2017-03-19 Arthur de Jong <arthur@arthurdejong.org> |
| 94 | + |
| 95 | + * [c957318] stdnum/fr/tva.py, stdnum/mc/__init__.py, |
| 96 | + stdnum/mc/tva.py, tests/test_eu_vat.doctest: Add support for |
| 97 | + Monaco VAT number |
| 98 | + |
| 99 | + The number uses the French TVA number but, unlike normal French |
| 100 | + VAT numbers, they are not valid French SIREN numbers. |
| 101 | + |
| 102 | + See https://github.com/arthurdejong/python-stdnum/issues/46 |
| 103 | + |
| 104 | +2016-12-11 Arthur de Jong <arthur@arthurdejong.org> |
| 105 | + |
| 106 | + * [5b43857] stdnum/au/tfn.py: Remove unused import |
| 107 | + |
| 108 | +2016-12-01 Greg Kuwaye <gkuwaye@lyft.com> |
| 109 | + |
| 110 | + * [7d16ea5] stdnum/us/ein.dat: Add new 47 EIN prefix; fix duplicate |
| 111 | + 46; move 81 |
| 112 | + |
| 113 | + 47 appears to be a new Internet campus code. Prefix 46 |
| 114 | + was listed twice, once under the Philadelphia campus and |
| 115 | + again under the Internet campus. This error may be seen |
| 116 | + on the IRS website itself. The Wikipedia article on EIN |
| 117 | + (https://en.wikipedia.org/wiki/Employer_Identification_Number) |
| 118 | + does not have 46 listed twice. 81 has moved from the Philadelphia |
| 119 | + campus to the Internet campus. |
| 120 | + |
| 121 | +2016-11-14 Luciano Rossi <lukio@gcoop.coop> |
| 122 | + |
| 123 | + * [dcde8f4] stdnum/ar/cbu.py, tests/test_ar_cbu.doctest: Implement |
| 124 | + CBU (unique bank code) of Argentina |
| 125 | + |
| 126 | + See https://github.com/arthurdejong/python-stdnum/issues/43 |
| 127 | + |
| 128 | +2016-11-14 Arthur de Jong <arthur@arthurdejong.org> |
| 129 | + |
| 130 | + * [da18e3b] setup.py, stdnum/fi/associationid.py, stdnum/meid.py, |
| 131 | + tests/test_mx_rfc.doctest, tox.ini: Add Python 2.6 support |
| 132 | + |
| 133 | + This also brings the list of Python versions in setup.py in line |
| 134 | + with tox.ini. |
| 135 | + |
| 136 | +2016-11-13 Arthur de Jong <arthur@arthurdejong.org> |
| 137 | + |
| 138 | + * [62ebbce] ChangeLog, NEWS, README, docs/index.rst, |
| 139 | + docs/stdnum.au.abn.rst, docs/stdnum.au.acn.rst, |
| 140 | + docs/stdnum.au.tfn.rst, docs/stdnum.es.ccc.rst, |
| 141 | + docs/stdnum.es.cups.rst, docs/stdnum.es.iban.rst, |
| 142 | + docs/stdnum.es.referenciacatastral.rst, stdnum/__init__.py: |
| 143 | + Get files ready for 1.5 release |
| 144 | + |
1 | 145 | 2016-11-13 Arthur de Jong <arthur@arthurdejong.org> |
2 | 146 |
|
3 | 147 | * [c9beb00] stdnum/cn/loc.dat, stdnum/iban.dat, stdnum/imsi.dat, |
|
0 commit comments