From 515a12e4968b487c52234521dca23c5c376b43c8 Mon Sep 17 00:00:00 2001 From: Dean Malmgren Date: Mon, 25 Aug 2014 16:34:54 -0500 Subject: [PATCH] bump version to 1.0.0 --- docs/changelog.rst | 8 ++++++++ docs/index.rst | 8 ++++---- textract/__init__.py | 2 +- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 2cce17b0..62a3e358 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -9,6 +9,11 @@ track version numbers, where backwards incompatible changes latest changes in development for next release ---------------------------------------------- +.. THANKS FOR CONTRIBUTING; MENTION WHAT YOU DID IN THIS SECTION HERE! + +1.0.0 +----- + * **standardized encoding of output with ``-e/--encoding`` option** (`#39`_) @@ -35,6 +40,8 @@ latest changes in development for next release standardized text tests to make sure output is consistent across file types (`#49`_) + * including support for Docker-based testing (`#46`_ by `@ShawnMilo`_) + 0.5.1 ----- @@ -143,6 +150,7 @@ latest changes in development for next release .. _#41: https://github.com/deanmalmgren/textract/issues/41 .. _#42: https://github.com/deanmalmgren/textract/issues/42 .. _#44: https://github.com/deanmalmgren/textract/issues/44 +.. _#46: https://github.com/deanmalmgren/textract/issues/46 .. _#48: https://github.com/deanmalmgren/textract/issues/48 .. _#49: https://github.com/deanmalmgren/textract/issues/49 .. _#53: https://github.com/deanmalmgren/textract/issues/53 diff --git a/docs/index.rst b/docs/index.rst index e4c214ea..caedf42b 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -53,20 +53,20 @@ Currently supporting * ``.odt`` via python builtins -* ``.pptx`` via `python-pptx`_ - * ``.pdf`` via `pdftotext`_ (default) or `pdfminer`_ * ``.png`` via `tesseract-ocr`_ +* ``.pptx`` via `python-pptx`_ + * ``.ps`` via `ps2text`_ * ``.txt`` via python builtins -* ``.xlsx`` via `xlrd `_ - * ``.xls`` via `xlrd `_ +* ``.xlsx`` via `xlrd `_ + Please recommend other file types by either mentioning them on the `issue tracker `_ or by :ref:`contributing ` diff --git a/textract/__init__.py b/textract/__init__.py index a9206cbc..c9438803 100644 --- a/textract/__init__.py +++ b/textract/__init__.py @@ -1,3 +1,3 @@ -VERSION = "0.5.1" +VERSION = "1.0.0" from .parsers import process