[project]
name = "paperless-ngx"
-version = "2.15.0"
+version = "2.15.1"
description = "A community-supported supercharged version of paperless: scan, index and archive all your physical documents"
readme = "README.md"
requires-python = ">=3.10"
apiBaseUrl: document.baseURI + 'api/',
apiVersion: '7',
appTitle: 'Paperless-ngx',
- version: '2.15.0',
+ version: '2.15.1',
webSocketHost: window.location.host,
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
webSocketBaseUrl: base_url.pathname + 'ws/',
from typing import Final
-__version__: Final[tuple[int, int, int]] = (2, 15, 0)
+__version__: Final[tuple[int, int, int]] = (2, 15, 1)
# Version string like X.Y.Z
__full_version_str__: Final[str] = ".".join(map(str, __version__))
# Version string like X.Y