From 419580b3be0bbe80cd008a3678826c6a8423d494 Mon Sep 17 00:00:00 2001 From: jonaswinkler <17569239+jonaswinkler@users.noreply.github.com> Date: Sun, 13 Jun 2021 19:17:29 +0200 Subject: [PATCH] changelog, versions --- docs/changelog.rst | 13 +++++++++++++ src-ui/src/environments/environment.prod.ts | 2 +- src/paperless/version.py | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index b98c4c83d..024de78b3 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,19 @@ Changelog ********* +paperless-ng 1.4.5 +################## + +This is primarily a maintenance release. + +* Updated Python and Angular dependencies. +* Changed the algorithm that changes permissions during startup. This is still fast, + and will hopefully cause less issues. +* Fixed an issue that would sometimes cause paperless to write an incomplete + classification model file to disk. +* Fixed an issue with the OCRmyPDF parser that would always try to extract text + with PDFminer even from non-PDF files. + paperless-ng 1.4.4 ################## diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 05eee6dd6..409498958 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -5,7 +5,7 @@ export const environment = { apiBaseUrl: document.baseURI + "api/", apiVersion: "2", appTitle: "Paperless-ng", - version: "1.4.4", + version: "1.4.5", webSocketHost: window.location.host, webSocketProtocol: (window.location.protocol == "https:" ? "wss:" : "ws:"), webSocketBaseUrl: base_url.pathname + "ws/", diff --git a/src/paperless/version.py b/src/paperless/version.py index 00a47af2d..a19fb0d9b 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1 +1 @@ -__version__ = (1, 4, 4) +__version__ = (1, 4, 5)