]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bumps version to 1.12.2 v1.12.2
authorTrenton Holmes <797416+stumpylog@users.noreply.github.com>
Sun, 29 Jan 2023 16:42:23 +0000 (08:42 -0800)
committerTrenton Holmes <797416+stumpylog@users.noreply.github.com>
Sun, 29 Jan 2023 16:42:23 +0000 (08:42 -0800)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index 16cbe7df62adb4b4f9f62fc006024e941e3c522e..e91b67d645382bb22db8a9b4f32bc83502510b91 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '2',
   appTitle: 'Paperless-ngx',
-  version: '1.12.1-dev',
+  version: '1.12.2',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index 36569e2e533118f886929e1eb21839943a7e5ba3..843ae7616ad329634f35f12154e18362033139df 100644 (file)
@@ -1,7 +1,7 @@
 from typing import Final
 from typing import Tuple
 
-__version__: Final[Tuple[int, int, int]] = (1, 12, 1)
+__version__: Final[Tuple[int, int, int]] = (1, 12, 2)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y