]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bumps version to 2.5.1 v2.5.1
authorTrenton H <797416+stumpylog@users.noreply.github.com>
Mon, 12 Feb 2024 23:56:41 +0000 (15:56 -0800)
committerTrenton H <797416+stumpylog@users.noreply.github.com>
Mon, 12 Feb 2024 23:56:41 +0000 (15:56 -0800)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index 7b0a1362dffe25a1108592cb2795077050553a49..857ef30003ca51f9259a97989144ddb490888268 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '5',
   appTitle: 'Paperless-ngx',
-  version: '2.5.0-dev',
+  version: '2.5.1',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index 367d5a0ef7c137e67fdb59a9ba9d31f9f9d21ea2..2ba4cb874d9721cd7a9bdce770c6aedd94419026 100644 (file)
@@ -1,6 +1,6 @@
 from typing import Final
 
-__version__: Final[tuple[int, int, int]] = (2, 5, 0)
+__version__: Final[tuple[int, int, int]] = (2, 5, 1)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y