diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2011-07-09 17:15:15 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2011-07-09 17:15:15 +0200 |
commit | 8dbcedd38baa7b04ae66fd4c1908b8eb2dddc613 (patch) | |
tree | 18d75c65985e6a6a507565dbd70f03ae734e2457 | |
parent | 596c7a112d4a73f8c705a15f49f2c1b3238377ec (diff) |
get files ready for 0.5 release0.5
git-svn-id: http://arthurdejong.org/svn/python-stdnum/python-stdnum@74 9dea7c4f-944c-4273-ac1a-574ede026edc
-rw-r--r-- | ChangeLog | 38 | ||||
-rw-r--r-- | NEWS | 11 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 50 insertions, 1 deletions
@@ -1,3 +1,41 @@ +2011-07-09 15:12 arthur + + * [r73] stdnum/iban.dat, stdnum/isbn.dat, stdnum/isil.dat: update + data files + +2011-06-20 20:56 arthur + + * [r72] stdnum/issn.py: implement a conversion function from ISSN + to EAN + +2011-06-20 20:55 arthur + + * [r71] stdnum/isbn.py, stdnum/ismn.py: use the ean module for + calculating the check digit + +2011-06-20 20:53 arthur + + * [r70] README, stdnum/__init__.py, stdnum/ean.py, + tests/test_robustness.doctest: add an EAN (International Article + Number) module + +2011-03-06 21:56 arthur + + * [r69] setup.py, stdnum/numdb.py: also support Python3 with the + same codebase (see #3) + +2011-03-06 19:54 arthur + + * [r68] setup.py: ensure that data files are always included + +2011-03-02 19:30 arthur + + * [r67] stdnum/verhoeff.py: Python 2.5 compatibility improvement + +2011-02-06 15:23 arthur + + * [r65] ChangeLog, NEWS, setup.py: get files ready for 0.4 release + 2011-02-06 15:21 arthur * [r64] stdnum/isbn.dat: include an updated version @@ -1,3 +1,14 @@ +changes from 0.4 to 0.5 +----------------------- + +* add modules for the following number formats: + - EAN (International Article Number) +* refactoring to use the EAN check digit code for ISBN and ISMN checks +* implement a conversion function from ISSN to EAN +* support Python3 with the same codebase +* Python 2.5 compatibility improvement + + changes from 0.3 to 0.4 ----------------------- @@ -32,7 +32,7 @@ if 'sdist' in sys.argv: os.umask(int('022', 8)) setup(name='python-stdnum', - version='0.4', + version='0.5', packages=find_packages(), package_data={ 'stdnum': ['*.dat'] }, author='Arthur de Jong', |