|
| 1 | +2020-01-19 Arthur de Jong <arthur@arthurdejong.org> |
| 2 | + |
| 3 | + * [334e907] online_check/stdnum.wsgi: Fix online check to be Python |
| 4 | + 3 compatible |
| 5 | + |
| 6 | +2020-01-18 Arthur de Jong <arthur@arthurdejong.org> |
| 7 | + |
| 8 | + * [53d9934] stdnum/at/postleitzahl.dat, stdnum/be/banks.dat, |
| 9 | + stdnum/cn/loc.dat, stdnum/eu/nace.dat, stdnum/iban.dat, |
| 10 | + stdnum/imsi.dat, stdnum/isbn.dat, stdnum/isil.dat, |
| 11 | + stdnum/nz/banks.dat, stdnum/oui.dat, update/iban.py: Update |
| 12 | + database files |
| 13 | + |
| 14 | +2020-01-18 Arthur de Jong <arthur@arthurdejong.org> |
| 15 | + |
| 16 | + * [f23c549] stdnum/za/idnr.py, tests/test_za_idnr.doctest: Add |
| 17 | + South African Identity Document number |
| 18 | + |
| 19 | + Closes https://github.com/arthurdejong/python-stdnum/issues/126 |
| 20 | + |
| 21 | +2020-01-12 Arthur de Jong <arthur@arthurdejong.org> |
| 22 | + |
| 23 | + * [42e096e] stdnum/isin.py, tests/test_isin.doctest: Add temporary |
| 24 | + and internal ISIN country codes |
| 25 | + |
| 26 | + This adds a few temporary and internal country codes that are |
| 27 | + used by various agencies so that they can also be validated. This |
| 28 | + does not mean that all these numbers are globally valid. |
| 29 | + |
| 30 | + Closes https://github.com/arthurdejong/python-stdnum/issues/158 |
| 31 | + |
| 32 | +2019-12-06 anwarbaroudi <m.a.baroudi96@gmail.com> |
| 33 | + |
| 34 | + * [87c195f] stdnum/isin.py, tests/test_isin.doctest: Add three |
| 35 | + country codes to ISIN |
| 36 | + |
| 37 | + This adds three missing country codes: 'AN' for 'Netherlands |
| 38 | + Antilles', 'CS' for 'Serbia and Montenegro' and 'XK' for 'Kosovo'. |
| 39 | + |
| 40 | + Closes https://github.com/arthurdejong/python-stdnum/issues/173 |
| 41 | + Closes https://github.com/arthurdejong/python-stdnum/pull/174 |
| 42 | + Closes https://github.com/arthurdejong/python-stdnum/pull/176 |
| 43 | + |
| 44 | +2020-01-09 Emmanuel Arias <eamanu@yaerobi.com> |
| 45 | + |
| 46 | + * [0b30c4b] stdnum/ar/cuit.py, tests/test_ar_cuit.doctest: Test |
| 47 | + Argentinian CUIT type |
| 48 | + |
| 49 | + The first two digits of the CUIT indicate the type of CUIT |
| 50 | + (personal, company or international) and can only have certain |
| 51 | + values. |
| 52 | + |
| 53 | + Closes https://github.com/arthurdejong/python-stdnum/issues/179 |
| 54 | + Closes https://github.com/arthurdejong/python-stdnum/pull/181 |
| 55 | + |
| 56 | +2020-01-09 Arthur de Jong <arthur@arthurdejong.org> |
| 57 | + |
| 58 | + * [a9b3e90] stdnum/nl/btw.py, tests/test_eu_vat.doctest: Support |
| 59 | + new btw-identificatienummer |
| 60 | + |
| 61 | + The btw-identificatienummer has been introduced on January 1st |
| 62 | + 2020 in the Netherlands as an alternative to the btw-nummer that |
| 63 | + contains the BSN personal identifier. The number has the same |
| 64 | + structure and function but does not contain a BSN and uses a |
| 65 | + different check digit algorithm. |
| 66 | + |
| 67 | + Thanks to Cas Vissers, Jeroen van Heiningen, Jerome Hanke, Nicolas |
| 68 | + Martinelli, Ronald Portier and Tim Muller for contributing to |
| 69 | + the fix. |
| 70 | + |
| 71 | + More information: |
| 72 | + |
| 73 | + * |
| 74 | + http://kleineondernemer.nl/index.php/nieuw-btw-identificatienummer-vanaf-1-januari-2020-voor-eenmanszaken |
| 75 | + * https://nl.wikipedia.org/wiki/Btw-nummer_(Nederland) * |
| 76 | + https://www.belastingdienst.nl/wps/wcm/connect/bldcontenten/belastingdienst/business/vat/new-vat-id/ |
| 77 | + * |
| 78 | + https://www.belastingdienst.nl/wps/wcm/connect/bldcontentnl/belastingdienst/zakelijk/btw/administratie_bijhouden/btw_nummers_controleren/uw_btw_nummer |
| 79 | + |
| 80 | + Closes https://github.com/arthurdejong/python-stdnum/issues/182 |
| 81 | + Closes https://github.com/arthurdejong/python-stdnum/pull/183 |
| 82 | + Closes https://github.com/arthurdejong/python-stdnum/pull/184 |
| 83 | + Closes https://github.com/arthurdejong/python-stdnum/pull/185 |
| 84 | + |
| 85 | +2020-01-04 Arthur de Jong <arthur@arthurdejong.org> |
| 86 | + |
| 87 | + * [9605dbe] stdnum/it/codicefiscale.py, |
| 88 | + tests/test_it_codicefiscale.doctest: The Italian IVA is also a |
| 89 | + Codice Fiscale |
| 90 | + |
| 91 | + Closes https://github.com/arthurdejong/python-stdnum/issues/180 |
| 92 | + |
| 93 | +2019-12-18 Sergi Almacellas Abellana <sergi@koolpi.com> |
| 94 | + |
| 95 | + * [087c668] .travis.yml, setup.py, tox.ini: Add support for |
| 96 | + Python 3.8 |
| 97 | + |
| 98 | + Closes https://github.com/arthurdejong/python-stdnum/pull/177 |
| 99 | + |
| 100 | +2019-12-27 Arthur de Jong <arthur@arthurdejong.org> |
| 101 | + |
| 102 | + * [922505a] stdnum/eu/nace.py: Broaden noqa docstring exclusion |
| 103 | + |
| 104 | + Nowadays flake8 seems to report this as D401 (First line should |
| 105 | + be in imperative mood) while before it was D402 (First line |
| 106 | + should not be the function’s signature). |
| 107 | + |
| 108 | +2019-12-27 Arthur de Jong <arthur@arthurdejong.org> |
| 109 | + |
| 110 | + * [de50109] stdnum/do/ncf.py: Switch to using lxml for HTML parsing |
| 111 | + |
| 112 | + This avoids an extra dependency on BeautifulSoup and makes the |
| 113 | + code more consistent. |
| 114 | + |
| 115 | +2019-11-12 Jakub Wilk <jwilk@jwilk.net> |
| 116 | + |
| 117 | + * [831c669] NEWS, README, stdnum/br/__init__.py, stdnum/br/cnpj.py, |
| 118 | + stdnum/br/cpf.py: Fix typos |
| 119 | + |
| 120 | + Closes https://github.com/arthurdejong/python-stdnum/pull/172 |
| 121 | + |
| 122 | +2019-11-04 Kurt Keller <Kurt@pinboard.jp> |
| 123 | + |
| 124 | + * [388bac9] stdnum/iso11649.py: Add format to iso11649 |
| 125 | + |
| 126 | + Closes https://github.com/arthurdejong/python-stdnum/pull/171 |
| 127 | + |
| 128 | +2019-11-02 Kurt Keller <Kurt@pinboard.jp> |
| 129 | + |
| 130 | + * [a45d4f7] stdnum/ch/esr.py, tests/test_ch_esr.doctest: Add Swiss |
| 131 | + ESR/ISR/QR-reference |
| 132 | + |
| 133 | + Closes https://github.com/arthurdejong/python-stdnum/pull/170 |
| 134 | + |
| 135 | +2019-10-27 Arthur de Jong <arthur@arthurdejong.org> |
| 136 | + |
| 137 | + * [41b9c94] ChangeLog, NEWS, README, docs/index.rst, |
| 138 | + docs/stdnum.ad.nrt.rst, docs/stdnum.cr.cpf.rst, |
| 139 | + docs/stdnum.cr.cpj.rst, docs/stdnum.cr.cr.rst, |
| 140 | + docs/stdnum.gt.nit.rst, docs/stdnum.il.idnr.rst, |
| 141 | + docs/stdnum.jp.cn.rst, docs/stdnum.kr.rrn.rst, |
| 142 | + docs/stdnum.nz.ird.rst, docs/stdnum.pe.cui.rst, |
| 143 | + docs/stdnum.pe.ruc.rst, docs/stdnum.py.ruc.rst, |
| 144 | + docs/stdnum.tr.vkn.rst, docs/stdnum.uy.rut.rst, |
| 145 | + docs/stdnum.ve.rif.rst, docs/stdnum.za.tin.rst, stdnum/__init__.py: |
| 146 | + Get files ready for 1.12 release |
| 147 | + |
1 | 148 | 2019-10-27 Arthur de Jong <arthur@arthurdejong.org>
|
2 | 149 |
|
3 | 150 | * [6ca5b53] stdnum/at/postleitzahl.dat, stdnum/be/banks.dat,
|
|
0 commit comments