diff --git a/docs/administration.rst b/docs/administration.rst index c91f501bd..19ab1e73f 100644 --- a/docs/administration.rst +++ b/docs/administration.rst @@ -184,17 +184,17 @@ Downgrades are possible. However, some updates also contain database migrations In order to move back from a version that applied database migrations, you'll have to revert the database migration *before* downgrading, and then downgrade paperless. -This table lists the most recent database migrations for each versions: +This table lists the compatible versions for each database migration number. -+---------+-------------------------+ -| Version | Latest migration number | -+---------+-------------------------+ -| 1.0.0 | 1011 | -+---------+-------------------------+ -| 1.1.0 | 1011 | -+---------+-------------------------+ -| 1.1.1 | 1012 | -+---------+-------------------------+ ++------------------+-----------------+ +| Migration number | Version range | ++------------------+-----------------+ +| 1011 | 1.0.0 | ++------------------+-----------------+ +| 1012 | 1.1.0 - 1.2.1 | ++------------------+-----------------+ +| 1013 | 1.3.0 - current | ++------------------+-----------------+ Execute the following management command to migrate your database: diff --git a/docs/api.rst b/docs/api.rst index d34558b36..c2120b20f 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -286,6 +286,8 @@ was started successfully. No additional status information about the consumption process itself is available, since that happens in a different process. +.. _api-versioning: + API Versioning ############## diff --git a/docs/changelog.rst b/docs/changelog.rst index 73e457176..543d9435d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,22 @@ Changelog ********* +paperless-ng 1.3.0 +################## + +This release contains new database migrations. + +* Added a color picker for tag colors. + +* Added translations into Italian and Romanian. Thank you! + +* Close individual documents from the sidebar. + +* `BolkoSchreiber `_ added an option to disable/enable thumbnail inversion in dark mode. + +* The REST API is versioned from this point onwards. See the documentation about :ref:`api-versioning` for details. + + paperless-ng 1.2.1 ################## diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 2d07ac31c..d48b0bebe 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -3,7 +3,7 @@ export const environment = { apiBaseUrl: "/api/", apiVersion: "2", appTitle: "Paperless-ng", - version: "1.2.1", + version: "1.3.0", webSocketHost: window.location.host, webSocketProtocol: (window.location.protocol == "https:" ? "wss:" : "ws:") }; diff --git a/src/paperless/version.py b/src/paperless/version.py index d93cd02b0..3be2947f7 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1 +1 @@ -__version__ = (1, 2, 1) +__version__ = (1, 3, 0)