]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Sets version to v2.1.0 v2.1.0
authorTrenton Holmes <797416+stumpylog@users.noreply.github.com>
Wed, 6 Dec 2023 03:03:53 +0000 (19:03 -0800)
committerTrenton Holmes <797416+stumpylog@users.noreply.github.com>
Wed, 6 Dec 2023 03:03:53 +0000 (19:03 -0800)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

index 93603f0d1bbf6598a7d9eba77414a884e117552c..2bd0663e30f25c09adee9f244fdd247ac094ce27 100644 (file)
@@ -5,7 +5,7 @@ export const environment = {
   apiBaseUrl: document.baseURI + 'api/',
   apiVersion: '3',
   appTitle: 'Paperless-ngx',
-  version: '2.0.1-dev',
+  version: '2.1.0',
   webSocketHost: window.location.host,
   webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
   webSocketBaseUrl: base_url.pathname + 'ws/',
index 209e0d25a7bd9be3cbb1c45849904208d8e50944..217496e50fb82acf4cb14b5f46a415f6f679f570 100644 (file)
@@ -1,6 +1,6 @@
 from typing import Final
 
-__version__: Final[tuple[int, int, int]] = (2, 0, 1)
+__version__: Final[tuple[int, int, int]] = (2, 1, 0)
 # Version string like X.Y.Z
 __full_version_str__: Final[str] = ".".join(map(str, __version__))
 # Version string like X.Y