[Spice-commits] configure.ac meson.build NEWS

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Apr 30 08:17:50 UTC 2019


 NEWS         |   21 +++++++++++++++++++++
 configure.ac |    6 +++---
 meson.build  |    6 +++---
 3 files changed, 27 insertions(+), 6 deletions(-)

New commits:
commit 7cbd70b931db76c69c89c2d9d5d704f67381a81b
Author: Frediano Ziglio <fziglio at redhat.com>
Date:   Fri Apr 26 11:15:30 2019 +0100

    build: Prepare for 0.14.2 release
    
    Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
    Acked-by: Victor Toso <victortoso at redhat.com>

diff --git a/NEWS b/NEWS
index 403df63c..168e20d0 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,24 @@
+Major Changes in 0.14.2:
+========================
+
+Main changes are support for Meson build and graphic device info
+messages allowing to better support multi-monitor configurations.
+
+* CVE-2019-3813: fix off-by-one error in group/slot boundary check
+* support H265 in stream-channel
+* add support for building with meson/ninja
+* minor tests fixes improving CI
+* set char device state for smartcard, allowing Qemu optimization
+* improve red-parse-qxl.c interface making it more consistent
+* add some instrumentation for streaming device
+* QXL interface: add a function to identify monitors in the guest
+  (spice_qxl_set_device_info)
+* add support for GraphicsDeviceInfo messages
+* video-stream: prevent crash on stream reattach
+* make channel client callbacks virtual functions
+* bumped minimum required glib version to 2.38
+* attempt to have a reliable led state for keyboard modifiers
+
 Major Changes in 0.14.1:
 ========================
 
diff --git a/configure.ac b/configure.ac
index 4a470427..1ce81f91 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,9 +12,9 @@ AC_PREREQ([2.57])
 #   then set age to 0.
 #
 dnl TODO see server/spice-char.h TODO comment for API breakage
-m4_define([SPICE_CURRENT], [13])
-m4_define([SPICE_REVISION], [5])
-m4_define([SPICE_AGE], [12])
+m4_define([SPICE_CURRENT], [14])
+m4_define([SPICE_REVISION], [0])
+m4_define([SPICE_AGE], [13])
 
 AC_INIT(spice, [m4_esyscmd(build-aux/git-version-gen .tarball-version)],
         [spice-devel at lists.freedesktop.org], spice)
diff --git a/meson.build b/meson.build
index 2951561f..a5039882 100644
--- a/meson.build
+++ b/meson.build
@@ -27,9 +27,9 @@ run_command('build-aux/meson/check-spice-common', check : true)
 #   then set age to 0.
 #
 #
-spice_server_current = 13
-spice_server_revision = 5
-spice_server_age = 12
+spice_server_current = 14
+spice_server_revision = 0
+spice_server_age = 13
 spice_server_so_version = '@0 at .@1 at .@2@'.format(spice_server_current - spice_server_age,
                                                spice_server_age,
                                                spice_server_revision)


More information about the Spice-commits mailing list