From b0c2f30c2bfe7f22fe1b985e647c6cb61cc66275 Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Fri, 3 Jan 2020 17:29:44 +0100 Subject: [PATCH] Release 1.8.26 Signed-off-by: Ludovic Rousseau --- ChangeLog | 19 +++++++++++++++++++ configure.ac | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7e475fe1..d94daa71 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,22 @@ +1.8.26: Ludovic Rousseau +3 January 2020 +- Use poll() instead of select() to allow file descriptor higher than FD_SETSIZE +- Enable reader filtering by default +- pcsc-spy: + . Do not read output buffer after error + . Adjust code to handle autoallocated buffers + . fix year-2038 issue by using long instead of int +- Android: fix compilation +- if client/server protocol mismatch: + . log an explicit message + . SCardEstablishContext() returns SCARD_E_SERVICE_STOPPED +- polkit: log the error message if polkit_authority_get_sync() fails +- Exit with EXIT_SUCCESS on shutdown to please systemd +- Doxygen: fix minor issues in the documentation +- Add --disable-documentation option +- Fix a minor memory leak + + 1.8.25: Ludovic Rousseau 25 March 2019 - Fix a socket issue when pcscd is used inside LXC container diff --git a/configure.ac b/configure.ac index 7fde0a13..627b1eb4 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.69]) -AC_INIT([pcsc-lite],[1.8.25]) +AC_INIT([pcsc-lite],[1.8.26]) AC_CONFIG_SRCDIR(src/pcscdaemon.c) AM_INIT_AUTOMAKE(1.8 dist-bzip2 no-dist-gzip) AC_CONFIG_HEADERS([config.h])