Skip to content

Commit ad1eae8

Browse files
Update upgrade notes
1 parent 2496396 commit ad1eae8

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

install/upgrade/9.2.0.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ BEGIN;
33
-- Raise database version
44
UPDATE web.settings SET value = '9.2.0' WHERE name = 'database_version';
55

6+
-- Improved tracking of creators and license holders of files (#2570)
67
CREATE TABLE IF NOT EXISTS model.rights_holder
78
(
89
id integer NOT NULL GENERATED ALWAYS AS IDENTITY ( INCREMENT 1 START 1 MINVALUE 1 MAXVALUE 2147483647 CACHE 1 ),

install/upgrade/upgrade.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ then run the database upgrade script, then restart Apache:
1919

2020
### 9.1.x to 9.2.0
2121
9.2.0.sql is needed but will be taken care of by the database upgrade script.
22+
2223
An additional Python package is needed:
2324

2425
sudo apt install python3-fiona
2526

2627
Changed default `CORS_ALLOWANCE = '\*'` to
27-
`CORS_ALLOWANCE = ''`. So if presentation sites have problems,
28+
`CORS_ALLOWANCE = ''`. So if e.g. presentation sites have problems,
2829
please add `CORS_ALLOWANCE = '\*'` or a specific IP to
2930
the `production.py`.
3031

sphinx/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
from typing import List
44

55
# pylint: disable=invalid-name
6-
version = '9.1.0'
7-
release = '9.1.0'
6+
version = '9.2.0'
7+
release = '9.2.0'
88
templates_path = ['_templates']
99
source_suffix = '.rst'
1010
master_doc = 'index'

0 commit comments

Comments
 (0)