]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bumps version numbers to 1.9.2 1666/head
authorTrenton H <holmes.trenton@gmail.com>
Tue, 27 Sep 2022 15:06:35 +0000 (08:06 -0700)
committerTrenton H <holmes.trenton@gmail.com>
Tue, 27 Sep 2022 15:06:35 +0000 (08:06 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index 92f388ec8727d334b7feaa3d3a935a2cf7192c61..48ea3f988222bec21e55f32805aa5c8a1bdc793b 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '2',
   appTitle: 'Paperless-ngx',
-  version: '1.9.0',
+  version: '1.9.2',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index 1642e3f8932f841be2c9e07e058b55d462eaf0a1..d196c358db2fa07d5fe56807100ce467497a2ea9 100644 (file)
@@ -1,7 +1,7 @@
 from typing import Final
 from typing import Tuple
 
-__version__: Final[Tuple[int, int, int]] = (1, 9, 0)
+__version__: Final[Tuple[int, int, int]] = (1, 9, 2)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y