]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bump version to 2.13.5 v2.13.5
authorshamoon <4887959+shamoon@users.noreply.github.com>
Sun, 10 Nov 2024 16:25:10 +0000 (08:25 -0800)
committershamoon <4887959+shamoon@users.noreply.github.com>
Sun, 10 Nov 2024 16:25:10 +0000 (08:25 -0800)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index 9d9f22cb57c115cf1e9fbab26b79fbfe59396beb..76ba37891090d3f27dbd498d35c64e7d3a183a10 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '5',
   appTitle: 'Paperless-ngx',
-  version: '2.13.4',
+  version: '2.13.5',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index b37573570d8fdfe59034c98b26c8551c9a3f05e2..8aafc810e294abb206196d23a84c72e4376809b3 100644 (file)
@@ -1,6 +1,6 @@
 from typing import Final
 
-__version__: Final[tuple[int, int, int]] = (2, 13, 4)
+__version__: Final[tuple[int, int, int]] = (2, 13, 5)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y