]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bumps the version to 2.15.1 v2.15.1
authorTrenton Holmes <797416+stumpylog@users.noreply.github.com>
Wed, 9 Apr 2025 21:55:02 +0000 (14:55 -0700)
committerTrenton Holmes <797416+stumpylog@users.noreply.github.com>
Wed, 9 Apr 2025 21:55:02 +0000 (14:55 -0700)
pyproject.toml
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index 884782826f2e0f7721ea78fc1ce060f8d6a8298e..07d3cf806a06e8f78a230bf1da3762a42e9b660d 100644 (file)
@@ -1,6 +1,6 @@
 [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"
index 1e2e7a1f7d3d51b3e4f0b46d7a10b0629d2f3d88..578dfd3416a4e8c5ede04350bd453fc392a262a2 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   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/',
index afac3393c738d915bf7c2c18bec0f24bb043036e..45339903f1ccfa0b43298dd28615e42ffc96f039 100644 (file)
@@ -1,6 +1,6 @@
 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