[project]
name = "paperless-ngx"
-version = "2.20.0"
+version = "2.20.1"
description = "A community-supported supercharged document management system: scan, index and archive all your physical documents"
readme = "README.md"
requires-python = ">=3.10"
apiVersion: '9', // match src/paperless/settings.py
appTitle: 'Paperless-ngx',
tag: 'prod',
- version: '2.20.0',
+ version: '2.20.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, 20, 0)
+__version__: Final[tuple[int, int, int]] = (2, 20, 1)
# Version string like X.Y.Z
__full_version_str__: Final[str] = ".".join(map(str, __version__))
# Version string like X.Y
[[package]]
name = "paperless-ngx"
-version = "2.20.0"
+version = "2.20.1"
source = { virtual = "." }
dependencies = [
{ name = "babel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },