]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bump version to 2.8.2 v2.8.2
authorshamoon <4887959+shamoon@users.noreply.github.com>
Wed, 8 May 2024 00:13:59 +0000 (17:13 -0700)
committershamoon <4887959+shamoon@users.noreply.github.com>
Wed, 8 May 2024 00:13:59 +0000 (17:13 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

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