summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS10
-rw-r--r--configure.ac4
2 files changed, 12 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index a2ca72c1..91a6f0e6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,14 @@
+Major changes in 0.9.1:
+=======================
+* !Development Release!
+* Multi-client support, disabled by default (experimental!) set the
+ environment variable PICE_DEBUG_ALLOW_MC before starting qemu to enable
+* Add support for adding generic spicevmc chardev passthrough channels
+* Add USB redirection channel (using generic spicevmc chardev passthrough)
+* Various bugfixes / cleanups
+
Major changes in 0.9.0:
+=======================
* !Development Release!
* volume synchronization between client and guest (client->guest only)
* turbo-jpeg used to avoid expensive color conversion in mjpeg encoder.
diff --git a/configure.ac b/configure.ac
index 486e3237..2afc5597 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ AC_PREREQ([2.57])
m4_define([SPICE_MAJOR], 0)
m4_define([SPICE_MINOR], 9)
-m4_define([SPICE_MICRO], 0)
+m4_define([SPICE_MICRO], 1)
AC_INIT(spice, [SPICE_MAJOR.SPICE_MINOR.SPICE_MICRO], [], spice)
@@ -132,7 +132,7 @@ AM_CONDITIONAL(SUPPORT_CLIENT, test "x$enable_client" = "xyes")
dnl =========================================================================
dnl Check deps
-PKG_CHECK_MODULES(PROTOCOL, spice-protocol >= 0.8.1)
+PKG_CHECK_MODULES(PROTOCOL, spice-protocol >= 0.9.0)
AC_SUBST(PROTOCOL_CFLAGS)
AC_CHECK_LIBM