From 5f964830aa56419fce448f251739f54c683b7891 Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Sat, 11 Mar 2017 16:38:07 +0000 Subject: [PATCH] version bump --- docs/changelog.rst | 8 ++++++++ src/paperless/version.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index a109cceb0..766d6424c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,14 @@ Changelog * 0.3.6 * Fix for `#200`_ (!!) where the API wasn't configured to allow updating the correspondent or the tags for a document. + * The ``content`` field is now optional, to allow for the edge case of a + purely graphical document. + * You can no longer add documents via the admin. This never worked in the + first place, so all I've done here is remove the link to the broken form. + * The consumer code has been heavily refactored to support a pluggable + interface. Install a paperless consumer via pip and tell paperless about + it with an environment variable, and you're good to go. Proper + documentation is on its way. * 0.3.5 * A serious facelift for the documents listing page wherein we drop the diff --git a/src/paperless/version.py b/src/paperless/version.py index 9e75602fc..deb6dc71f 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1 +1 @@ -__version__ = (0, 3, 5) +__version__ = (0, 3, 6)