]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bumps version to 1.16.3
authorTrenton H <797416+stumpylog@users.noreply.github.com>
Wed, 21 Jun 2023 16:49:36 +0000 (09:49 -0700)
committerTrenton H <797416+stumpylog@users.noreply.github.com>
Wed, 21 Jun 2023 16:49:36 +0000 (09:49 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index 27f88a4aa7bd1405ce795c6449b445e6612baf59..dad919b61c7a4c779c91fb34937a541989e48e8c 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '3',
   appTitle: 'Paperless-ngx',
-  version: '1.16.2-dev',
+  version: '1.16.3',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index 6b0f1ae3cc7498f686524943c45dad00d442f2c3..592b990467558c05b9a33d4abc13a5673d558151 100644 (file)
@@ -1,7 +1,7 @@
 from typing import Final
 from typing import Tuple
 
-__version__: Final[Tuple[int, int, int]] = (1, 16, 2)
+__version__: Final[Tuple[int, int, int]] = (1, 16, 3)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y