]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bump version to 2.11.4 v2.11.4
authorshamoon <4887959+shamoon@users.noreply.github.com>
Sat, 10 Aug 2024 15:48:26 +0000 (08:48 -0700)
committershamoon <4887959+shamoon@users.noreply.github.com>
Sat, 10 Aug 2024 15:48:26 +0000 (08:48 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index 1904b5c72dd7642b901db6de6dcd6b659789ea75..f6fa6d8522beeb54bdd5978c7c3c2b62f211a278 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '5',
   appTitle: 'Paperless-ngx',
-  version: '2.11.3',
+  version: '2.11.4',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index 202a1b90d7257f321ed74a73cf00af3426fd3a4c..bc54117d36ea89ddd941c351056a1631a7efea66 100644 (file)
@@ -1,6 +1,6 @@
 from typing import Final
 
-__version__: Final[tuple[int, int, int]] = (2, 11, 3)
+__version__: Final[tuple[int, int, int]] = (2, 11, 4)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y