Added patoolib.__version__

This commit is contained in:
Bastian Kleineidam 2013-07-05 06:58:25 +02:00
parent 2d1a8042e6
commit 8b2b63995e
2 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,10 @@
1.2 "" (released 27.6.2013)
1.3 (released xx.xx.2013)
* Add patoolib.__version__ (see PEP 396).
Closes: GH bug #3
1.2 (released 27.6.2013)
* Fix detection of *.gz with newer libmagic versions.
Closes: GH bug #2

View File

@ -22,6 +22,8 @@ import shutil
import stat
import importlib
from . import util
# PEP 396
from .configuration import Version as __version__
__all__ = ['list_formats', 'list_archive', 'extract_archive', 'test_archive',
'create_archive', 'diff_archives', 'search_archive', 'repack_archive']