diff --git a/docs/changelog.rst b/docs/changelog.rst index 8b87e642e..ad45becab 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,15 +5,12 @@ Changelog ********* -paperless-ng 1.1.3 +paperless-ng 1.1.4 ################## -* Added a docker-specific configuration option to adjust the number of - worker processes of the web server. See :ref:`configuration-docker`. +* Added English (GB) locale. -* Some more memory usage optimizations. - -* Don't show inbox statistics if no inbox tag is defined. +* Added ISO-8601 date display option. .. note:: @@ -26,6 +23,16 @@ paperless-ng 1.1.3 If using docker, this does not affect you. +paperless-ng 1.1.3 +################## + +* Added a docker-specific configuration option to adjust the number of + worker processes of the web server. See :ref:`configuration-docker`. + +* Some more memory usage optimizations. + +* Don't show inbox statistics if no inbox tag is defined. + paperless-ng 1.1.2 ################## diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index b2ffebc09..6df8ec565 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -2,7 +2,7 @@ export const environment = { production: true, apiBaseUrl: "/api/", appTitle: "Paperless-ng", - version: "1.1.3", + version: "1.1.4", webSocketHost: window.location.host, webSocketProtocol: (window.location.protocol == "https:" ? "wss:" : "ws:") }; diff --git a/src/paperless/version.py b/src/paperless/version.py index 08f427169..f336d581e 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1 +1 @@ -__version__ = (1, 1, 3) +__version__ = (1, 1, 4)