diff --git a/docker/hub/docker-compose.postgres.yml b/docker/hub/docker-compose.postgres.yml index e89513e5c..5d9e2a7ae 100644 --- a/docker/hub/docker-compose.postgres.yml +++ b/docker/hub/docker-compose.postgres.yml @@ -15,7 +15,7 @@ services: POSTGRES_PASSWORD: paperless webserver: - image: jonaswinkler/paperless-ng:0.9.2 + image: jonaswinkler/paperless-ng:0.9.3 restart: always depends_on: - db diff --git a/docker/hub/docker-compose.sqlite.yml b/docker/hub/docker-compose.sqlite.yml index cdd6206d9..95f024061 100644 --- a/docker/hub/docker-compose.sqlite.yml +++ b/docker/hub/docker-compose.sqlite.yml @@ -5,7 +5,7 @@ services: restart: always webserver: - image: jonaswinkler/paperless-ng:0.9.2 + image: jonaswinkler/paperless-ng:0.9.3 restart: always depends_on: - broker diff --git a/docs/changelog.rst b/docs/changelog.rst index e2df92863..c4443504f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,15 +5,23 @@ Changelog ********* -next -#### - -* Setting ``PAPERLESS_AUTO_LOGIN_USERNAME`` replaces ``PAPERLESS_DISABLE_LOGIN``. - You have to specify your username. -* Added a simple sanity checker that checks your documents for missing or orphaned files, - files with wrong checksums, inaccessible files, and documents with empty content. -* It is no longer possible to encrypt your documents. For the time being, paperless will - continue to operate with already encrypted documents. +paperless-ng 0.9.3 +################## + +* Setting ``PAPERLESS_AUTO_LOGIN_USERNAME`` replaces ``PAPERLESS_DISABLE_LOGIN``. + You have to specify your username. +* Added a simple sanity checker that checks your documents for missing or orphaned files, + files with wrong checksums, inaccessible files, and documents with empty content. +* It is no longer possible to encrypt your documents. For the time being, paperless will + continue to operate with already encrypted documents. +* Fixes: + + * Paperless now uses inotify again, since the watchdog was causing issues which I was not + aware of. + * Issue with the automatic classifier not working with only one tag. + * A couple issues with the search index being opened to eagerly. + +* Added lots of tests for various parts of the application. paperless-ng 0.9.2 ################## diff --git a/src/paperless/version.py b/src/paperless/version.py index a0e084253..90680d4b0 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1 +1 @@ -__version__ = (0, 9, 2) +__version__ = (0, 9, 3)