From 41cecb5f2714d75a09e35385fd45b15fb8a03d29 Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Sat, 5 Mar 2016 23:42:43 +0100 Subject: Get files ready for 1.3 release --- ChangeLog | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ NEWS | 9 +++++++++ getnumlist.py | 4 ++-- setup.py | 2 +- stdnum/__init__.py | 4 ++-- 5 files changed, 73 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9307465..a78944c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,62 @@ +2016-03-03 Arthur de Jong + + * [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 + + * [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 + + * [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 + + * [2881b86] stdnum/eu/vat.py: Fix problem with check_vies_approx() + +2015-10-15 Ronald Paloschi + + * [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 + + * [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 * [1327045] getcnloc.py, stdnum/cn/loc.dat, stdnum/iban.dat, diff --git a/NEWS b/NEWS index f40fdee..50e94c4 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +changes from 1.2 to 1.3 +----------------------- + +* fix ISO 6346 check digit calculation (thanks Ronald Paloschi) +* fix problem with check_vies_approx() (thanks Lionel Elie Mamane) +* fix problem with SOAP client when using suds +* include documentation that was previously on the Trac wiki + + changes from 1.1 to 1.2 ----------------------- diff --git a/getnumlist.py b/getnumlist.py index 97c91bc..4c74479 100755 --- a/getnumlist.py +++ b/getnumlist.py @@ -2,7 +2,7 @@ # getnumlist.py - script to get a list of number formats in stdnum # -# Copyright (C) 2012, 2013 Arthur de Jong +# Copyright (C) 2012-2016 Arthur de Jong # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -57,7 +57,7 @@ if __name__ == '__main__': for module in get_number_modules(): print ' %s' % module.__name__.replace('stdnum.', '') print '' - print 'For index.xml:' + print 'For formats.xml:' print '' for module in get_number_modules(): print '
  • %s
  • ' % util.get_module_name(module) diff --git a/setup.py b/setup.py index 2562691..d91a7a9 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # setup.py - python-stdnum installation script # -# Copyright (C) 2010-2015 Arthur de Jong +# Copyright (C) 2010-2016 Arthur de Jong # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/stdnum/__init__.py b/stdnum/__init__.py index 78c033d..8da7c35 100644 --- a/stdnum/__init__.py +++ b/stdnum/__init__.py @@ -1,7 +1,7 @@ # __init__.py - main module # coding: utf-8 # -# Copyright (C) 2010-2015 Arthur de Jong +# Copyright (C) 2010-2016 Arthur de Jong # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -153,4 +153,4 @@ parsing, validation, formatting or conversion functions. # the version number of the library -__version__ = '1.2' +__version__ = '1.3' -- cgit v1.2.3