From d8d9bed3c62996cecb75f1f596c4055e85eaa6bb Mon Sep 17 00:00:00 2001 From: Dean Malmgren Date: Fri, 3 Oct 2014 06:17:38 -0500 Subject: [PATCH] bump to version 1.1.0 --- docs/changelog.rst | 4 ++++ tests/test_pdf.py | 4 ---- textract/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) 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