Skip to content

Commit 7d14097

Browse files
committed
prepare release 4.2.1
1 parent cfd631e commit 7d14097

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ project(nominatim)
2020

2121
set(NOMINATIM_VERSION_MAJOR 4)
2222
set(NOMINATIM_VERSION_MINOR 2)
23-
set(NOMINATIM_VERSION_PATCH 0)
23+
set(NOMINATIM_VERSION_PATCH 1)
2424

2525
set(NOMINATIM_VERSION "${NOMINATIM_VERSION_MAJOR}.${NOMINATIM_VERSION_MINOR}.${NOMINATIM_VERSION_PATCH}")
2626

ChangeLog

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
4.2.1
2+
3+
* fix XSS vulnerability in debug view
4+
15
4.2.0
26

37
* add experimental support for osm2pgsql flex style
@@ -21,6 +25,10 @@
2125
* typing fixes to work with latest type annotations from typeshed
2226
* smaller improvements to documentation (thanks to @mausch)
2327

28+
4.1.1
29+
30+
* fix XSS vulnerability in debug view
31+
2432
4.1.0
2533

2634
* switch to ICU tokenizer as default
@@ -57,6 +65,10 @@
5765
* add setup instructions for updates and systemd
5866
* drop support for PostgreSQL 9.5
5967

68+
4.0.2
69+
70+
* fix XSS vulnerability in debug view
71+
6072
4.0.1
6173

6274
* fix initialisation error in replication script
@@ -95,6 +107,10 @@
95107
* add testing of installation scripts via CI
96108
* drop support for Python < 3.6 and Postgresql < 9.5
97109

110+
3.7.3
111+
112+
* fix XSS vulnerability in debug view
113+
98114
3.7.2
99115

100116
* fix database check for reverse-only imports

nominatim/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# patch level when cherry-picking the commit with the migration.
2626
#
2727
# Released versions always have a database patch level of 0.
28-
NOMINATIM_VERSION = (4, 2, 0, 0)
28+
NOMINATIM_VERSION = (4, 2, 1, 0)
2929

3030
POSTGRESQL_REQUIRED_VERSION = (9, 6)
3131
POSTGIS_REQUIRED_VERSION = (2, 2)

0 commit comments

Comments
 (0)