]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bump version to 2.12.1 v2.12.1
authorshamoon <4887959+shamoon@users.noreply.github.com>
Mon, 16 Sep 2024 03:08:24 +0000 (20:08 -0700)
committershamoon <4887959+shamoon@users.noreply.github.com>
Mon, 16 Sep 2024 03:08:24 +0000 (20:08 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

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