Fix: bump version.py to 3.0.0 also (#12736)

This commit is contained in:
shamoon
2026-05-07 07:39:57 -07:00
committed by GitHub
parent 8b6e8142f1
commit af0df43bac
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# Changelog
## paperless-ngx 3.0.0
## paperless-ngx 2.20.15
### Security
+1 -1
View File
@@ -1,6 +1,6 @@
from typing import Final
__version__: Final[tuple[int, int, int]] = (2, 20, 15)
__version__: Final[tuple[int, int, int]] = (3, 0, 0)
# Version string like X.Y.Z
__full_version_str__: Final[str] = ".".join(map(str, __version__))
# Version string like X.Y