]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bumps version to 1.16.5 v1.16.5
authorshamoon <4887959+shamoon@users.noreply.github.com>
Tue, 27 Jun 2023 21:51:49 +0000 (14:51 -0700)
committershamoon <4887959+shamoon@users.noreply.github.com>
Tue, 27 Jun 2023 21:51:49 +0000 (14:51 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index 051ce707efe96938b8f8da9bc0376d42c46dde5b..60ee21c8f3eeef7bf8f8528909c9434f602bb406 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '3',
   appTitle: 'Paperless-ngx',
-  version: '1.16.4-dev',
+  version: '1.16.5',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index f8e04a4c2912b2ea192d5bbcda2136fa58f599d4..c735d5fded04c54da114ff11158368a170f69de9 100644 (file)
@@ -1,7 +1,7 @@
 from typing import Final
 from typing import Tuple
 
-__version__: Final[Tuple[int, int, int]] = (1, 16, 4)
+__version__: Final[Tuple[int, int, int]] = (1, 16, 5)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y