diff --git a/docs/changelog.rst b/docs/changelog.rst index c56e7a367..5fdd2143b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,10 +1,28 @@ Changelog ######### +* 0.1.0 + + * Docker support! Big thanks to `Wayne Werner`_, `Brian Conn`_, and + `Tikitu de Jager`_ for this one, and especially to `Pit`_ + who spearheadded this effort. + * A simple REST API is in place, but it should be considered unstable. + * Cleaned up the consumer to use temporary directories instead of a single + scratch space. (Thanks `Pit`_) + * Improved the efficiency of the consumer by parsing pages more intelligently + and introducing a threaded OCR process (thanks again `Pit`_). + * `#45`_: Cleaned up the logic for tag matching. Reported by `darkmatter`_. + * `#47`_: Auto-rotate landscape documents. Reported by `Paul`_ and fixed by + `Pit`_. + * `#48`_: Matching algorithms should do so on a word boundary (`darkmatter`_) + * `#54`_: Documented the re-tagger (`zedster`_) + * `#57`_: Make sure file is preserved on import failure (`darkmatter`_) + * Added tox with pep8 checking + * 0.0.6 - * Added support for parallel OCR (significant work from pitkley) - * Sped up the language detection (significant work from pitkley) + * Added support for parallel OCR (significant work from `Pit`_) + * Sped up the language detection (significant work from `Pit`_) * Added simple logging * 0.0.5 @@ -35,3 +53,17 @@ Changelog * 0.0.1 * Initial release + +.. _Wayne Werner: https://github.com/waynew +.. _Brian Conn: https://github.com/TheConnMan +.. _Tikitu de Jager: https://github.com/tikitu +.. _Pit: https://github.com/pitkley +.. _Paul: https://github.com/polo2ro +.. _darkmatter: https://github.com/darkmatter +.. _zedster: https://github.com/zedster + +.. _#45: https://github.com/danielquinn/paperless/issues/45 +.. _#47: https://github.com/danielquinn/paperless/issues/47 +.. _#48: https://github.com/danielquinn/paperless/issues/48 +.. _#54: https://github.com/danielquinn/paperless/issues/54 +.. _#57: https://github.com/danielquinn/paperless/issues/57 diff --git a/src/paperless/version.py b/src/paperless/version.py index 7afad8b77..8e2c2d9ea 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1 +1 @@ -__version__ = (0, 0, 6) +__version__ = (0, 1, 0)