]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bump version to 2.7.2 v2.7.2
authorshamoon <4887959+shamoon@users.noreply.github.com>
Mon, 8 Apr 2024 01:44:14 +0000 (18:44 -0700)
committershamoon <4887959+shamoon@users.noreply.github.com>
Mon, 8 Apr 2024 01:44:14 +0000 (18:44 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index d646513886791161d3e7f55ca41fadd360c489c7..4cbca2b06d24a6c40cefa5b32e905bd636ede485 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '5',
   appTitle: 'Paperless-ngx',
-  version: '2.7.1-dev',
+  version: '2.7.2',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index a8ac34e046edfec4e17e6300112f5cd9bac0fc95..89191ef119ad16a4c2dd8312123166fe00151fa8 100644 (file)
@@ -1,6 +1,6 @@
 from typing import Final
 
-__version__: Final[tuple[int, int, int]] = (2, 7, 1)
+__version__: Final[tuple[int, int, int]] = (2, 7, 2)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y