diff --git a/NEWS b/NEWS
index f2f43c9158707eac620426ad5fa4eb46b37af082..115f2827c44b35b56941926e92d7960a54d96284 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,16 @@
 This file lists notable changes in each release. For the full history of all
 changes, see ChangeLog.
 
+Version 1.90.7:
+
+While 1.90.6 fixed a number of issues, we did have a bad regression due
+causing pam_fprintd to crash when there are no fingerprint devices
+installed.
+
+Highlights:
+ - pam: Guard strdup calls against NULL pointers
+
+
 Version 1.90.6:
 
 The 1.90.5 release was unusable due to a number of inter-related issues
diff --git a/meson.build b/meson.build
index c1f40f3be3c974c46ee22a877ee31f63fcc5a007..66aa2f744de769260c91dabcc8a188a752d30978 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
 project('fprintd', 'c',
-    version: '1.90.6',
+    version: '1.90.7',
     license: 'GPLv2+',
     default_options: [
         'buildtype=debugoptimized',