8000 get files ready for 0.6 release · cedk/python-stdnum@6cdfb6b · GitHub
[go: up one dir, main page]

Skip to content

Commit 6cdfb6b

Browse files
committed
get files ready for 0.6 release
git-svn-id: http://arthurdejong.org/svn/python-stdnum/python-stdnum@88 9dea7c4f-944c-4273-ac1a-574ede026edc
1 parent 1451b47 commit 6cdfb6b

File tree

3 files changed

+87
-2
lines changed

3 files changed

+87
-2
lines changed

ChangeLog

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,75 @@
1+
2011-09-30 08:36 arthur
2+
3+
* [r87] stdnum/imsi.dat, stdnum/isbn.dat, stdnum/isil.dat: update
4+
data files
5+
6+
2011-09-30 08:22 arthur
7+
8+
* [r86] setup.py, stdnum/__init__.py: move the version number
9+
definition to the stdnum package
10+
11+
2011-09-25 07:45 arthur
12+
13+
* [r85] stdnum/ismn.py: implement an ismn_type() function
14+
15+
2011-09-23 19:07 arthur
16+
17+
* [r84] ., stdnum, stdnum/br, stdnum/iso7064, stdnum/nl, stdnum/us,
18+
tests: ignore __pycache__ directories
19+
20+
2011-09-23 18:35 arthur
21+
22+
* [r83] README, getimsi.py, stdnum/__init__.py, stdnum/imsi.dat,
23+
stdnum/imsi.py, tests/test_robustness.doctest: add an IMSI
24+
(International Mobile Subscriber Identity) module
25+
26+
2011-09-23 18:29 arthur
27+
28+
* [r82] stdnum/imei.py: implement an imei.split() function that
29+
splits the number into a TAC, serial number and checksum or
30+
software version
31+
32+
2011-09-23 14:52 arthur
33+
34+
* [r81] getiban.py: remove unneeded import
35+
36+
2011-09-20 21:14 arthur
37+
38+
* [r80] stdnum/isbn.py, tests/test_isbn.doctest: implement a
39+
conversion function from ISBN13 to ISBN10
40+
41+
2011-09-20 20:53 arthur
42+
43+
* [r79] tests/test_imei.doctest, tests/test_isan.doctest,
44+
tests/test_isbn.doctest, tests/test_ismn.doctest: fix space
45+
before inline comments
46+
47+
2011-09-20 20:52 arthur
48+
49+
* [r78] stdnum/isbn.py, tests/test_isbn.doctest: fix a problem with
50+
an ISBN13 with a valid check digit but with an unknown bookland
51+
prefix
52+
53+
2011-09-04 09:23 arthur
54+
55+
* [r77] setup.py: fix homepage URL
56+
57+
2011-08-19 08:22 arthur
58+
59+
* [r76] getiban.py, getisbn.py, getisil.py, setup.py,
60+
stdnum/br/cpf.py, stdnum/ean.py, stdnum/grid.py, stdnum/iban.py,
61+
stdnum/imei.py, stdnum/isan.py, stdnum/isbn.py, stdnum/isil.py,
62+
stdnum/ismn.py, stdnum/iso7064/mod_11_10.py,
63+
stdnum/iso7064/mod_11_2.py, stdnum/iso7064/mod_37_2.py,
64+
stdnum/iso7064/mod_37_36.py, stdnum/iso7064/mod_97_10.py,
65+
stdnum/issn.py, stdnum/luhn.py, stdnum/meid.py, stdnum/nl/bsn.py,
66+
stdnum/numdb.py, stdnum/us/ssn.py, stdnum/verhoeff.py: make
67+
source code layout follow PEP8 more
68+
69+
2011-07-09 15:15 arthur
70+
71+
* [r74] ChangeLog, NEWS, setup.py: get files ready for 0.5 release
72+
173
2011-07-09 15:12 arthur
274

375
* [r73] stdnum/iban.dat, stdnum/isbn.dat, stdnum/isil.dat: update

NEWS

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
changes from 0.5 to 0.6
2+
-----------------------
3+
4+
* fix a problem with handling an ISBN13 with a valid check digit but with an
5+
unknown bookland prefix
6+
* add an IMSI (International Mobile Subscriber Identity) module
7+
* implement a conversion function from ISBN13 to ISBN10
8+
* implement an ismn.ismn_type() function
9+
* implement an imei.split() function that splits the number into a TAC, serial
10+
number and checksum or software version
11+
* source code layout changes to better follow PEP8
12+
13+
114
changes from 0.4 to 0.5
215
-----------------------
316

stdnum/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"""A Python module to parse, validate and reformat standard numbers
2222
and codes in different formats.
2323
24-
Currently this module 6BD3 supports the following formats:
24+
Currently this package supports the following formats:
2525
2626
* ISBN (International Standard Book Number)
2727
* ISSN (International Standard Serial Number)
@@ -49,4 +49,4 @@
4949
"""
5050

5151
# the version number of the library
52-
__version__ = '0.5'
52+
__version__ = '0.6'

0 commit comments

Comments
 (0)
0