]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bump version to 2.6.3 v2.6.3
authorshamoon <4887959+shamoon@users.noreply.github.com>
Mon, 18 Mar 2024 03:45:09 +0000 (20:45 -0700)
committershamoon <4887959+shamoon@users.noreply.github.com>
Mon, 18 Mar 2024 03:45:09 +0000 (20:45 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

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