Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2016-03-05 23:42:43 +0100
committerArthur de Jong <arthur@arthurdejong.org>2016-03-05 23:42:43 +0100
commit41cecb5f2714d75a09e35385fd45b15fb8a03d29 (patch)
treebc2f5c24ba5b212540548f52df9ed141d4fb5355
parent64577342c86a759a6c72905774ca269bf1820f03 (diff)
Get files ready for 1.3 release1.3
-rw-r--r--ChangeLog59
-rw-r--r--NEWS9
-rwxr-xr-xgetnumlist.py4
-rwxr-xr-xsetup.py2
-rw-r--r--stdnum/__init__.py4
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 <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,
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 ' <li>%s</li>' % 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'