]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bumps version to 1.17.3 v1.17.3
authorTrenton Holmes <797416+stumpylog@users.noreply.github.com>
Tue, 29 Aug 2023 01:28:40 +0000 (18:28 -0700)
committerTrenton Holmes <797416+stumpylog@users.noreply.github.com>
Tue, 29 Aug 2023 01:28:40 +0000 (18:28 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index 1a731bee458e49a1ec673498f5422d0396d7201e..877fcc4171bafc5f7a995e4efabf3af46a8fdb41 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '3',
   appTitle: 'Paperless-ngx',
-  version: '1.17.2-dev',
+  version: '1.17.3',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index 1280b1204ab458d915335947b2c6c71211f5377b..a36d116b7dfab31e5bcc364f11d4109047dc33af 100644 (file)
@@ -1,7 +1,7 @@
 from typing import Final
 from typing import Tuple
 
-__version__: Final[Tuple[int, int, int]] = (1, 17, 2)
+__version__: Final[Tuple[int, int, int]] = (1, 17, 3)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y