changelog, documentation, version bump

This commit is contained in:
jonaswinkler 2021-02-28 13:20:31 +01:00
parent 6ab884a95c
commit b847e0c65e
5 changed files with 30 additions and 12 deletions

View File

@ -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:

View File

@ -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
##############

View File

@ -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 <https://github.com/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
##################

View File

@ -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:")
};

View File

@ -1 +1 @@
__version__ = (1, 2, 1)
__version__ = (1, 3, 0)