diff options
author | Alon Levy <alevy@redhat.com> | 2012-09-15 00:36:54 +0300 |
---|---|---|
committer | Alon Levy <alevy@redhat.com> | 2012-09-15 00:36:54 +0300 |
commit | dc3cd205dda4d76f4afecd64d4d5abde81545e6d (patch) | |
tree | c4b13e2d1d2f19406998f4f89bce20f4df783ce0 | |
parent | 124984a171bddf0f2e2b727e31f43d19a68122f3 (diff) |
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | server/spice.h | 2 |
3 files changed, 15 insertions, 3 deletions
@@ -1,3 +1,15 @@ +Major changes in 0.12.0: +======================== +* Stable Release +* support setting client monitor configuration via device + QXLInterface::client_monitors_config +* support notifying guest of client capabilities + QXLInterface::set_client_capabilities +* new capability for A8 Surface support +* Enable build on armv6+ +* Option to quit server after first client disconnects + spice_server_set_exit_on_disconnect + Major changes in 0.11.3: ======================== * !Development Release! diff --git a/configure.ac b/configure.ac index 0545af6..047191d 100644 --- a/configure.ac +++ b/configure.ac @@ -11,8 +11,8 @@ AC_PREREQ([2.57]) # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html m4_define([SPICE_MAJOR], 0) -m4_define([SPICE_MINOR], 11) -m4_define([SPICE_MICRO], 5) +m4_define([SPICE_MINOR], 12) +m4_define([SPICE_MICRO], 0) m4_define([SPICE_CURRENT], [6]) m4_define([SPICE_REVISION], [0]) m4_define([SPICE_AGE], [5]) diff --git a/server/spice.h b/server/spice.h index fc10303..c1478e0 100644 --- a/server/spice.h +++ b/server/spice.h @@ -23,7 +23,7 @@ #include <spice/qxl_dev.h> #include <spice/vd_agent.h> -#define SPICE_SERVER_VERSION 0x000b05 /* release 0.11.5 */ +#define SPICE_SERVER_VERSION 0x000c00 /* release 0.12.0 */ /* interface base type */ |