8000 Get files ready for 1.3 release · waldemar-becker/python-stdnum@41cecb5 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Mar 4, 2019. It is now read-only.

Commit 41cecb5

Browse files
committed
Get files ready for 1.3 release
1 parent 6457734 commit 41cecb5

File tree

5 files changed

+73
-5
lines changed

5 files changed

+73
-5
lines changed

ChangeLog

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,62 @@
1+
2016-03-03 Arthur de Jong <arthur@arthurdejong.org>
2+
3+
* [6457734] getcnloc.py, getiban.py, stdnum/cn/loc.dat,
4+
stdnum/iban.dat, stdnum/imsi.dat, stdnum/isbn.dat, stdnum/isil.dat:
5+
Update database files
6+
7+
This also updates the getcnloc and getiban scripts to use new URLs.
8+
9+
2015-10-30 Arthur de Jong <arthur@arthurdejong.org>
10+
11+
* [0061564] stdnum/dk/cpr.py, stdnum/iban.py, stdnum/imei.py,
12+
stdnum/isbn.py, stdnum/isil.py, stdnum/issn.py, stdnum/nl/bsn.py,
13+
stdnum/us/ssn.py, stdnum/verhoeff.py: Integrate information from
14+
the wiki
15+
16+
This adds the information that was previously in the Trac wiki
17+
into the source docstrings because the Trac instance is being
18+
phased out.
19+
20+
This also includes small updates to the ISIL module.
21+
22+
2015-10-28 Arthur de Jong <arthur@arthurdejong.org>
23+
24+
* [96c8151] stdnum/eu/vat.py: Fix SOAP client re-use
25+
26+
This fixes a bug when checking re-use of the global SOAP client
27+
object. The object could not be evaluated in boolean context
28+
so is no explicitly compared to None. For suds a MethodNotFound
29+
exception would be raised for __nonzero__() (which Python uses
30+
for boolean comparison).
31+
32+
2015-10-28 Lionel Elie Mamane <lionel@mamane.lu>
33+
34+
* [2881b86] stdnum/eu/vat.py: Fix problem with check_vies_approx()
35+
36+
2015-10-15 Ronald Paloschi <ronald.paloschi@gmail.com>
37+
38+
* [fb0efe0] stdnum/iso6346.py, tests/test_iso6346.doctest: Fix
39+
for when ISO 6346 checksum is 10
40+
41+
Bug fix for when the checksum is 10, it was compared to 0 and
42+
failed. New doctest exposing the bug that passes after the fix
43+
is applied.
44+
45+
See: https://github.com/arthurdejong/python-stdnum/pull/30
46+
47+
2015-10-11 Arthur de Jong <arthur@arthurdejong.org>
48+
49+
* [1361817] ChangeLog, MANIFEST.in, NEWS, README, docs/index.rst,
50+
docs/stdnum.at.businessid.rst, docs/stdnum.br.cnpj.rst,
51+
docs/stdnum.ch.uid.rst, docs/stdnum.ch.vat.rst,
52+
docs/stdnum.cusip.rst, docs/stdnum.de.wkn.rst,
53+
docs/stdnum.ee.ik.rst, docs/stdnum.fi.associationid.rst,
54+
docs/stdnum.fi.ytunnus.rst, docs/stdnum.gb.sedol.rst,
55+
docs/stdnum.imo.rst, docs/stdnum.isin.rst, docs/stdnum.mx.rfc.rst,
56+
docs/stdnum.pl.pesel.rst, docs/stdnum.pl.regon.rst,
57+
docs/stdnum.ru.inn.rst, setup.py, stdnum/__init__.py: Get files
58+
ready for 1.2 release
59+
160
2015-10-11 Arthur de Jong <arthur@arthurdejong.org>
261

362
* [1327045] getcnloc.py, stdnum/cn/loc.dat, stdnum/iban.dat,

NEWS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
changes from 1.2 to 1.3
2+
-----------------------
3+
4+
* fix ISO 6346 check digit calculation (thanks Ronald Paloschi)
5+
* fix problem with check_vies_approx() (thanks Lionel Elie Mamane)
6+
* fix problem with SOAP client when using suds
7+
* include documentation that was previously on the Trac wiki
8+
9+
110
changes from 1.1 to 1.2
211
-----------------------
312

getnumlist.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# getnumlist.py - script to get a list of number formats in stdnum
44
#
5-
# Copyright (C) 2012, 2013 Arthur de Jong
5+
# Copyright (C) 2012-2016 Arthur de Jong
66
#
77
# This library is free software; you can redistribute it and/or
88
# modify it under the terms of the GNU Lesser General Public
@@ -57,7 +57,7 @@ def get_number_modules():
5757
for module in get_number_modules():
5858
print ' %s' % module.__name__.replace('stdnum.', '')
5959
print ''
60-
print 'For index.xml:'
60+
print 'For formats.xml:'
6161
print ''
6262
for module in get_number_modules():
6363
print ' <li>%s</li>' % util.get_module_name(module)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# setup.py - python-stdnum installation script
44
#
5-
# Copyright (C) 2010-2015 Arthur de Jong
5+
# Copyright (C) 2010-2016 Arthur de Jong
66
#
77
# This library is free software; you can redistribute it and/or
88
# modify it under the terms of the GNU Lesser General Public

stdnum/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# __init__.py - main module
22
# coding: utf-8
33
#
4-
# Copyright (C) 2010-2015 Arthur de Jong
4+
# Copyright (C) 2010-2016 Arthur de Jong
55
#
66
# This library is free software; you can redistribute it and/or
77
# modify it under the terms of the GNU Lesser General Public
@@ -153,4 +153,4 @@
153153

154154

155155
# the version number of the library
156-
__version__ = '1.2'
156+
__version__ = '1.3'

0 commit comments

Comments
 (0)
0