]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Bumps version to 2.0.1 v2.0.1
authorTrenton Holmes <797416+stumpylog@users.noreply.github.com>
Thu, 30 Nov 2023 15:11:00 +0000 (07:11 -0800)
committerTrenton Holmes <797416+stumpylog@users.noreply.github.com>
Thu, 30 Nov 2023 15:11:00 +0000 (07:11 -0800)
src-ui/src/environments/environment.prod.ts
src/paperless/version.py

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