]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bumps version to 1.10.2 v1.10.2
authorTrenton Holmes <797416+stumpylog@users.noreply.github.com>
Sun, 4 Dec 2022 20:58:03 +0000 (12:58 -0800)
committerTrenton Holmes <797416+stumpylog@users.noreply.github.com>
Sun, 4 Dec 2022 20:58:03 +0000 (12:58 -0800)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index 93ac02518386d995fbc63039f97129ae478e575e..67a236090ba4855263750f8e60ad4e4683494669 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '2',
   appTitle: 'Paperless-ngx',
-  version: '1.10.1-dev',
+  version: '1.10.2',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index 0b22aab46b4f1ccc753849df5a9af1fad2ccd7e8..4778e14a68ef275eb484e2c744816826e73a877d 100644 (file)
@@ -1,7 +1,7 @@
 from typing import Final
 from typing import Tuple
 
-__version__: Final[Tuple[int, int, int]] = (1, 10, 1)
+__version__: Final[Tuple[int, int, int]] = (1, 10, 2)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y