]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Sets the version to 2.5.2 v2.5.2
authorTrenton H <797416+stumpylog@users.noreply.github.com>
Thu, 15 Feb 2024 01:10:37 +0000 (17:10 -0800)
committerTrenton H <797416+stumpylog@users.noreply.github.com>
Thu, 15 Feb 2024 01:10:37 +0000 (17:10 -0800)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

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