]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bump version to 2.12.0 v2.12.0
authorshamoon <4887959+shamoon@users.noreply.github.com>
Mon, 9 Sep 2024 00:47:20 +0000 (17:47 -0700)
committershamoon <4887959+shamoon@users.noreply.github.com>
Mon, 9 Sep 2024 00:47:20 +0000 (17:47 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index bf7b303eae0e2854616b399c005599b847cb9f5d..e358d29936aaf2164e2bf6bbc9d43fd5024a1932 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '5',
   appTitle: 'Paperless-ngx',
-  version: '2.11.6',
+  version: '2.12.0',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index eefe0ca18a3b28236b89246cba1d4ef7239487c2..e2a299c9153a5390c63876dceb4d3499e87f9e7e 100644 (file)
@@ -1,6 +1,6 @@
 from typing import Final
 
-__version__: Final[tuple[int, int, int]] = (2, 11, 6)
+__version__: Final[tuple[int, int, int]] = (2, 12, 0)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y