]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bump version to 2.15.0 v2.15.0-beta.rc1
authorshamoon <4887959+shamoon@users.noreply.github.com>
Fri, 14 Mar 2025 18:04:33 +0000 (11:04 -0700)
committershamoon <4887959+shamoon@users.noreply.github.com>
Fri, 14 Mar 2025 18:04:33 +0000 (11:04 -0700)
pyproject.toml
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index 8a2cb194f2d91434fd6eccd64cc5d772bf361778..43808a9c3d4059636dc42b25e9f25f3a503cdb87 100644 (file)
@@ -1,6 +1,6 @@
 [project]
 name = "paperless-ngx"
-version = "2.14.7"
+version = "2.15.0"
 description = "A community-supported supercharged version of paperless: scan, index and archive all your physical documents"
 readme = "README.md"
 requires-python = ">=3.10"
index 9db14f6c3614913bc5a84b5c686f22d0d36ad1d2..1e2e7a1f7d3d51b3e4f0b46d7a10b0629d2f3d88 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '7',
   appTitle: 'Paperless-ngx',
-  version: '2.14.7',
+  version: '2.15.0',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index b09a20ef46da49ed4b29bc6e820c72655e18f16d..afac3393c738d915bf7c2c18bec0f24bb043036e 100644 (file)
@@ -1,6 +1,6 @@
 from typing import Final
 
-__version__: Final[tuple[int, int, int]] = (2, 14, 7)
+__version__: Final[tuple[int, int, int]] = (2, 15, 0)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y