]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bumps version to 2.1.2 v2.1.2
authorTrenton Holmes <797416+stumpylog@users.noreply.github.com>
Wed, 13 Dec 2023 01:41:26 +0000 (17:41 -0800)
committerTrenton Holmes <797416+stumpylog@users.noreply.github.com>
Wed, 13 Dec 2023 01:41:26 +0000 (17:41 -0800)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

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