]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bumps version to 2.4.3 v2.4.3
authorTrenton H <797416+stumpylog@users.noreply.github.com>
Sun, 28 Jan 2024 20:19:07 +0000 (12:19 -0800)
committerTrenton H <797416+stumpylog@users.noreply.github.com>
Sun, 28 Jan 2024 20:19:07 +0000 (12:19 -0800)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

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