diff --git a/docs/changelog.rst b/docs/changelog.rst index bef2ebff..9c8e722c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -11,6 +11,10 @@ latest changes in development for next release .. THANKS FOR CONTRIBUTING; MENTION WHAT YOU DID IN THIS SECTION HERE! + +1.1.0 +----- + * support for ``.wav``, ``.mp3``, and ``.ogg`` files (`#56`_ and `#62`_ by `@arvindch`_) * support for ``.csv`` files (`#64`_) diff --git a/tests/test_pdf.py b/tests/test_pdf.py index 121f516c..bb704295 100644 --- a/tests/test_pdf.py +++ b/tests/test_pdf.py @@ -18,10 +18,6 @@ def test_pdfminer_cli(self): def test_tesseract_cli(self): """confirm pdf extraction with tesseract""" d = self.get_extension_directory() - - import subprocess - subprocess.call('tesseract --version', shell=True) - self.compare_cli_output( os.path.join(d, "ocr_text.pdf"), expected_filename=os.path.join(d, "ocr_text.txt"), diff --git a/textract/__init__.py b/textract/__init__.py index c9438803..7f9617c6 100644 --- a/textract/__init__.py +++ b/textract/__init__.py @@ -1,3 +1,3 @@ -VERSION = "1.0.0" +VERSION = "1.1.0" from .parsers import process