From 1abe213844b28fd8afc28eb072fd569f0f72d7f1 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Fri, 14 Dec 2018 13:17:49 +0100 Subject: [PATCH] 0.99.0 --- NEWS | 20 ++++++++++++++++++++ meson.build | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 91351ee..34d6cc2 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,26 @@ This file lists notable changes in each release. For the full history of all changes, see ChangeLog. +2018-12-14: v0.99.0 release +* Library: + - All the internal API for device driver writers is now covered by the + documentation and has been enhanced to make it easier to write drivers + - Update internal NBIS fingerprint data processing library to one that's + nearly 10 years newer + - Re-add accessor for minutia coordinates which was used in the very + old fprint_demo program, but also by our new GTK+ test program (see below) + - Fix a crash when too many minutiae were detected in a capture + +* Drivers: + - Support more devices in the Elan driver, stability improvements + +* Tools: + - Add a test GTK+ application that will eventually be used for testing + drivers without modifying the OS installed version. Note that this + application currently requires manually changing permissions of USB + devices, this will be fixed when the infrastructure exists to access + those devices without additional permissions, as a normal user. + 2018-07-15: v0.8.2 release * Drivers: - Add USB ID for TNP Nano USB Fingerprint Reader diff --git a/meson.build b/meson.build index 5629119..db5008f 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libfprint', [ 'c', 'cpp' ], - version: '0.8.2', + version: '0.99.0', license: 'LGPLv2.1+', default_options: [ 'buildtype=debugoptimized',