]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bump version
authorQuinn Casey <quinn@quinncasey.com>
Mon, 9 May 2022 16:48:48 +0000 (09:48 -0700)
committerQuinn Casey <quinn@quinncasey.com>
Mon, 9 May 2022 16:48:48 +0000 (09:48 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index dce6ce8399dd55d69a31320a272f348346972e69..4120f0d29a2f26128f7385ebb21156ce8d34bae2 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '2',
   appTitle: 'Paperless-ngx',
-  version: '1.7.0-dev',
+  version: '1.7.1',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index 44d20435ae8b646edf80be8e14e88dc1534b0212..436c532e843c1c7268fd2f63db7f8401237d5c3e 100644 (file)
@@ -1,7 +1,7 @@
 from typing import Final
 from typing import Tuple
 
-__version__: Final[Tuple[int, int, int]] = (1, 7, 0)
+__version__: Final[Tuple[int, int, int]] = (1, 7, 1)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y