]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bumps version to 1.17.1 v1.17.1
authorTrenton H <797416+stumpylog@users.noreply.github.com>
Tue, 15 Aug 2023 15:38:52 +0000 (08:38 -0700)
committerTrenton H <797416+stumpylog@users.noreply.github.com>
Tue, 15 Aug 2023 15:38:52 +0000 (08:38 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index d64ea5e24690512622e9696a28fa2b2f99ea6533..a36d733c3c6a2769da2afbd693329433fe0c9c89 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '3',
   appTitle: 'Paperless-ngx',
-  version: '1.17.0-dev',
+  version: '1.17.1',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index 798ffb5a26e331a6d86e230b2cb028be6ab38689..fa5e2b9879d030e01e740268e1d4a5024352318c 100644 (file)
@@ -1,7 +1,7 @@
 from typing import Final
 from typing import Tuple
 
-__version__: Final[Tuple[int, int, int]] = (1, 17, 0)
+__version__: Final[Tuple[int, int, int]] = (1, 17, 1)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y