diff --git a/docs/changelog.rst b/docs/changelog.rst index 0e5502501..9acfed57e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,11 @@ Changelog ********* +paperless-ng 1.4.2 +################## + +* Fixed an issue with ``sudo`` that caused paperless to not start on many Raspberry Pi devices. Thank you `WhiteHatTux`_! + paperless-ng 1.4.1 ################## @@ -1361,6 +1366,7 @@ bulk of the work on this big change. * Initial release +.. _WhiteHatTux: https://github.com/WhiteHatTux .. _Chris Nagy: https://github.com/what-name .. _sbrl: https://github.com/sbrl .. _slorenz: https://github.com/sisao diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 851cf9e71..b60824248 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -3,7 +3,7 @@ export const environment = { apiBaseUrl: "/api/", apiVersion: "2", appTitle: "Paperless-ng", - version: "1.4.1", + version: "1.4.2", webSocketHost: window.location.host, webSocketProtocol: (window.location.protocol == "https:" ? "wss:" : "ws:") }; diff --git a/src/paperless/version.py b/src/paperless/version.py index 71bf75b3d..ffb22f305 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1 +1 @@ -__version__ = (1, 4, 1) +__version__ = (1, 4, 2)