]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bumps the version to v1.16.2 v1.16.2
authorTrenton H <797416+stumpylog@users.noreply.github.com>
Mon, 19 Jun 2023 16:07:11 +0000 (09:07 -0700)
committerTrenton H <797416+stumpylog@users.noreply.github.com>
Mon, 19 Jun 2023 16:07:11 +0000 (09:07 -0700)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

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