Skip to content

Commit

Permalink
Bumps version to 1.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stumpylog committed Apr 27, 2023
1 parent 8f18bae commit 864e242
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
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const environment = {
apiBaseUrl: document.baseURI + 'api/',
apiVersion: '2',
appTitle: 'Paperless-ngx',
version: '1.14.0-dev',
version: '1.14.1',
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import Final
from typing import Tuple

__version__: Final[Tuple[int, int, int]] = (1, 14, 0)
__version__: Final[Tuple[int, int, int]] = (1, 14, 1)
# 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 864e242

Please sign in to comment.