]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bumps version to 1.14.4 v1.14.4
authorTrenton H <797416+stumpylog@users.noreply.github.com>
Thu, 4 May 2023 14:48:55 +0000 (07:48 -0700)
committerTrenton H <797416+stumpylog@users.noreply.github.com>
Thu, 4 May 2023 14:48:55 +0000 (07:48 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index 56fdce31e6975536d990abcd626b498a10dff1b3..74761433c9175a8124b0327de336b1c1251ce02e 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '2',
   appTitle: 'Paperless-ngx',
-  version: '1.14.3-dev',
+  version: '1.14.4',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index ce0b8abe63a01a485df9472cdd781c6551eac606..0003769bfd3965357d0d99bcd6f586f5b8d8a33a 100644 (file)
@@ -1,7 +1,7 @@
 from typing import Final
 from typing import Tuple
 
-__version__: Final[Tuple[int, int, int]] = (1, 14, 3)
+__version__: Final[Tuple[int, int, int]] = (1, 14, 4)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y