summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Berg <bberg@redhat.com>2021-06-29 20:36:34 +0200
committerBenjamin Berg <bberg@redhat.com>2021-07-01 13:06:08 +0200
commitb760a82ac68177516bd0a36656a3d2c040e8fcf7 (patch)
treefa3112c4cfba34cc5cb745d00a9813b2d66876e5
parentf398d09b23496cbd85d4e0b199fba93194cd7d8b (diff)
Update for 1.92.0v1.92.0
-rw-r--r--NEWS18
-rw-r--r--meson.build4
2 files changed, 20 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 6918479..0868279 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,24 @@
This file lists notable changes in each release. For the full history of all
changes, see ChangeLog.
+Version 1.92.0:
+
+API users, please adjust now to planned API changes in 2.0:
+ - EnrollStart will throw an error if the finger was enrolled already
+ - Interactive DBus authentication will only happen when requested
+
+Highlights:
+ - fprintd now prevents the same finger to be enrolled twice
+ - Support clearing storage of match-on-chip devices
+ - pam: Cancel authentication on SIGINT (e.g. ctrl+c with sudo)
+ - pam: Always return PAM_AUTHINFO_UNAVAIL for devices without prints
+ - Expose finger status on DBus
+ - Add method to delete only a specific print of a user
+ - Improved error reporting for deletion
+ - Wait for finger removal before cancelling operations
+ - Prefer older prints when garbage collecting
+ - Major improvements to test coverage
+
Version 1.90.9:
Highlights:
diff --git a/meson.build b/meson.build
index 01c031b..4f40f52 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('fprintd', 'c',
- version: '1.90.9',
+ version: '1.92.0',
license: 'GPLv2+',
default_options: [
'buildtype=debugoptimized',
@@ -64,7 +64,7 @@ add_project_arguments(common_cflags, language: 'c')
host_system = host_machine.system()
# NOTE: Bump gdbus-codegen min version once we can depend on 2.64!
glib_min_version = '2.56'
-libfprint_min_version = '1.90.4'
+libfprint_min_version = '1.92.0'
fprintd_installdir = get_option('prefix') / get_option('libexecdir')
fprintd_plugindir = get_option('prefix') / get_option('libdir') / meson.project_name() / 'modules'