]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bump version to 2.13.1 v2.13.1
authorshamoon <4887959+shamoon@users.noreply.github.com>
Mon, 28 Oct 2024 18:27:57 +0000 (11:27 -0700)
committershamoon <4887959+shamoon@users.noreply.github.com>
Mon, 28 Oct 2024 18:27:57 +0000 (11:27 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

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