diff options
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | server/spice.h | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,10 @@ +Major changes in 0.7.1: +======================= +* Brown paper bag release +* Update SPICE_SERVER_VERSION +* Include server/tests/test_util.h in the make dist generated tarbals, so + that they actually compile + Major changes in 0.7.0: ======================= * Many small bugfixes to the spice client diff --git a/configure.ac b/configure.ac index a1deae6..a9e9d2d 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ([2.57]) m4_define([SPICE_MAJOR], 0) m4_define([SPICE_MINOR], 7) -m4_define([SPICE_MICRO], 0) +m4_define([SPICE_MICRO], 1) AC_INIT(spice, [SPICE_MAJOR.SPICE_MINOR.SPICE_MICRO], [], spice) diff --git a/server/spice.h b/server/spice.h index 68162cc..6fb22a4 100644 --- a/server/spice.h +++ b/server/spice.h @@ -21,7 +21,7 @@ #include <stdint.h> #include <sys/socket.h> -#define SPICE_SERVER_VERSION 0x000700 /* release 0.7.0 */ +#define SPICE_SERVER_VERSION 0x000701 /* release 0.7.1 */ /* interface base type */ |