From: Lars Op den Kamp Date: Sat, 12 Nov 2011 12:38:34 +0000 (+0100) Subject: cec: bump version numbers and added changelog for bugfix release 1.2 X-Git-Tag: upstream/2.2.0~1^2~45^2 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=94d98b71b8afae933eef5c97101da7b3ef905aa3;p=deb_libcec.git cec: bump version numbers and added changelog for bugfix release 1.2 --- diff --git a/ChangeLog b/ChangeLog index 78040e0..57b6228 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +libcec (1.2-1) unstable; urgency=low + + * bugfixes: + * pass the deck_control command to libcec listeners + * check whether the initiator is valid in CCECProcessor::ParseCommand(). + fixes possible segfault when parsing invalid data + + -- Pulse-Eight Packaging Sat, 12 Nov 2011 13:36:00 +0100 + libcec (1.1-3) unstable; urgency=low * fixed return value in CCECProcessor::SetStreamPath(), which prevented diff --git a/configure.ac b/configure.ac index f8cc05b..e961c1b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libcec], 1:1:0) +AC_INIT([libcec], 1:2:0) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) AC_PROG_CXX diff --git a/debian/changelog b/debian/changelog index 78040e0..57b6228 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +libcec (1.2-1) unstable; urgency=low + + * bugfixes: + * pass the deck_control command to libcec listeners + * check whether the initiator is valid in CCECProcessor::ParseCommand(). + fixes possible segfault when parsing invalid data + + -- Pulse-Eight Packaging Sat, 12 Nov 2011 13:36:00 +0100 + libcec (1.1-3) unstable; urgency=low * fixed return value in CCECProcessor::SetStreamPath(), which prevented diff --git a/include/cectypes.h b/include/cectypes.h index da3e2dc..3f2fb98 100644 --- a/include/cectypes.h +++ b/include/cectypes.h @@ -827,7 +827,7 @@ typedef enum cec_vendor_id #define CEC_MIN_LIB_VERSION 1 #define CEC_LIB_VERSION_MAJOR 1 -#define CEC_LIB_VERSION_MINOR 1 +#define CEC_LIB_VERSION_MINOR 2 #ifdef __cplusplus }; diff --git a/project/libcec.rc b/project/libcec.rc index a0ec29f..ee83cc9 100644 Binary files a/project/libcec.rc and b/project/libcec.rc differ diff --git a/project/testclient.rc b/project/testclient.rc index b6cd2d5..8d44ff2 100644 Binary files a/project/testclient.rc and b/project/testclient.rc differ