]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bump version to 2.5.4
authorshamoon <4887959+shamoon@users.noreply.github.com>
Mon, 26 Feb 2024 02:38:12 +0000 (18:38 -0800)
committershamoon <4887959+shamoon@users.noreply.github.com>
Mon, 26 Feb 2024 02:38:12 +0000 (18:38 -0800)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index 705f36921fd8d1ae8b0973b7838d56cf29df96cd..8e3a9ab0151289663d238146afe5221e04032e09 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '5',
   appTitle: 'Paperless-ngx',
-  version: '2.5.3',
+  version: '2.5.4',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index da40420800d690fffae24d1e17572e73d55d10e4..112af59c6b768c9ad4dd118b8f3e8c161e55e892 100644 (file)
@@ -1,6 +1,6 @@
 from typing import Final
 
-__version__: Final[tuple[int, int, int]] = (2, 5, 3)
+__version__: Final[tuple[int, int, int]] = (2, 5, 4)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y