summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrediano Ziglio <fziglio@redhat.com>2020-02-03 15:20:33 +0000
committerFrediano Ziglio <fziglio@redhat.com>2020-02-27 11:22:44 +0000
commit7f7af5d4265fc760df78822b31a3f2c80675bf14 (patch)
treefa424c55de283e480555989749b65e9e728f6268
parentc989769211c646f9260914e20044fbc9a812058e (diff)
build: Prepare for 0.14.3 releasev0.14.3
Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Victor Toso <victortoso@redhat.com>
-rw-r--r--CHANGELOG.md27
-rw-r--r--configure.ac4
-rw-r--r--meson.build4
3 files changed, 31 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 168e20d0..6d538567 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,30 @@
+Major Changes in 0.14.3:
+========================
+
+Main changes are WebSocket and support for Windows.
+
+* Add support for WebSocket, this will allow to use spice-html5 without proxy
+* Support Windows, now Qemu Windows can be build enabling Spice
+* Fix some alignment problem
+* Converted some documentation to Asciidoc format to make easier to update,
+ updated some
+* Minor compatibility fix for PPC64EL and ARMHF
+* Minor fixes for big endian machines like MIPS
+* Avoid some crashes with some buggy guest drivers, simply ignore the invalid
+ request
+* Fix for old OpenSSL versions
+* Minor fix for Windows clients and brushes, fixed an issue with Photoshop
+ under Windows 7
+* Add ability to query video-codecs
+* Small use-after-free fix
+* Fix for debugging recording/replaying using QUIC images
+* Fix a regression where spice reported no monitors to the client
+* Fix DoS in spicevmc if WebDAV used
+* Updated and improved test migration script
+* Some minor fixes to smartcard support
+* Avoid possible disconnection using proxies using a in-flow keepalive
+ mechanism
+
Major Changes in 0.14.2:
========================
diff --git a/configure.ac b/configure.ac
index 6fb0d22c..17edbbb9 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], [14])
+m4_define([SPICE_CURRENT], [15])
m4_define([SPICE_REVISION], [0])
-m4_define([SPICE_AGE], [13])
+m4_define([SPICE_AGE], [14])
AC_INIT(spice, [m4_esyscmd(build-aux/git-version-gen .tarball-version)],
[spice-devel@lists.freedesktop.org], spice)
diff --git a/meson.build b/meson.build
index 35ebf383..f8f89798 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 = 14
+spice_server_current = 15
spice_server_revision = 0
-spice_server_age = 13
+spice_server_age = 14
spice_server_so_version = '@0@.@1@.@2@'.format(spice_server_current - spice_server_age,
spice_server_age,
spice_server_revision)