diff --git a/NEWS b/NEWS index 0868279..8875145 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.94.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: + - Implement suspend/resume handling. + This requires writing "power/persist" and "power/wakeup" in sysfs. + - Support libfprint overheat protections + - Delete host prints when device prints disappeared + - pam: Immediately return success information + - Plenty of updated translations thanks to move to Fedora Weblate + - Fix possible race when retrieving session information + - Fix possible race when a client disconnects + - GLib 2.56 compatibility fixes + + Version 1.92.0: API users, please adjust now to planned API changes in 2.0: diff --git a/meson.build b/meson.build index 1d5d9ba..08f2cc9 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('fprintd', 'c', - version: '1.92.0', + version: '1.94.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.92.0' +libfprint_min_version = '1.94.0' glib_version_def = 'GLIB_VERSION_@0@_@1@'.format( glib_min_version.split('.')[0], glib_min_version.split('.')[1])