From 8dbcedd38baa7b04ae66fd4c1908b8eb2dddc613 Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Sat, 9 Jul 2011 15:15:15 +0000 Subject: get files ready for 0.5 release git-svn-id: http://arthurdejong.org/svn/python-stdnum/python-stdnum@74 9dea7c4f-944c-4273-ac1a-574ede026edc --- ChangeLog | 38 ++++++++++++++++++++++++++++++++++++++ NEWS | 11 +++++++++++ setup.py | 2 +- 3 files changed, 50 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ea1ddf7..e1a9020 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/NEWS b/NEWS index 31694cb..3d93f6b 100644 --- a/NEWS +++ b/NEWS @@ -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 ----------------------- diff --git a/setup.py b/setup.py index 801030a..b9d7da0 100644 --- a/setup.py +++ b/setup.py @@ -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', -- cgit v1.2.3