Skip to content

Commit

Permalink
v1.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shamoon committed Jun 3, 2023
1 parent 7073cb6 commit c62aa3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src-ui/src/environments/environment.prod.ts
Expand Up @@ -5,7 +5,7 @@ export const environment = {
apiBaseUrl: document.baseURI + 'api/',
apiVersion: '3',
appTitle: 'Paperless-ngx',
version: '1.14.5-dev',
version: '1.15.0',
webSocketHost: window.location.host,
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
webSocketBaseUrl: base_url.pathname + 'ws/',
Expand Down
2 changes: 1 addition & 1 deletion src/paperless/version.py
@@ -1,7 +1,7 @@
from typing import Final
from typing import Tuple

__version__: Final[Tuple[int, int, int]] = (1, 14, 5)
__version__: Final[Tuple[int, int, int]] = (1, 15, 0)
# Version string like X.Y.Z
__full_version_str__: Final[str] = ".".join(map(str, __version__))
# Version string like X.Y
Expand Down

0 comments on commit c62aa3c

Please sign in to comment.