summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Toso <victortoso@redhat.com>2022-02-07 12:55:07 +0100
committerVictor Toso <victortoso@redhat.com>2022-02-07 14:43:23 +0100
commit9f3b720e2f7fa793b263f12bb50f19f60b863760 (patch)
tree308be0cdbb6610060c90c1b440fedf53af9caeeb
parent9a0cec4b2f818d30eb2aa1dca8f635ece7650fa2 (diff)
Release v0.40v0.40
Signed-off-by: Victor Toso <victortoso@redhat.com>
-rw-r--r--CHANGELOG.md18
-rw-r--r--src/meson.build8
2 files changed, 22 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 110f3a0..d0f3337 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,21 @@
+v0.40
+=====
+
+- Fix usbid parsing regression introduced in !78 (v0.39)
+- !91 - Fix crash with division by 0 [rhbz#1941627]
+- !97 - #157 - Fix detecting pyparsing module
+- Add API to allocate SpiceUsbDevice (for Android)
+ spice_usb_device_manager_allocate_device_for_file_descriptor()
+- !93 - #137 - add support for TLS-SNI
+- !92 - Support USB emulation for MacOS
+- !96 - Support side mouse buttons
+- !85 - #75 - add spice_display_keyboard_ungrab()
+- !81 - GL fix warning fix and improve scanout logic
+- !84 - Fix leak and warnings in gstaudio and spicy
+- !86, !87, !90 - Several introspection fixes and improvements
+
+[rhbz#1941627]: https://bugzilla.redhat.com/show_bug.cgi?id=1941627
+
v0.39
=====
diff --git a/src/meson.build b/src/meson.build
index 50e27d9..a9dfc57 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -193,9 +193,9 @@ endif
# soversion
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
-spice_client_glib_current = 15
+spice_client_glib_current = 16
spice_client_glib_revision = 0
-spice_client_glib_age = 7
+spice_client_glib_age = 8
spice_client_glib_so_version = '@0@.@1@.@2@'.format(spice_client_glib_current - spice_client_glib_age,
spice_client_glib_age,
spice_client_glib_revision)
@@ -394,9 +394,9 @@ if spice_gtk_has_gtk
# soversion
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
- spice_client_gtk_current = 5
+ spice_client_gtk_current = 6
spice_client_gtk_revision = 0
- spice_client_gtk_age = 0
+ spice_client_gtk_age = 1
spice_client_gtk_so_version = '@0@.@1@.@2@'.format(spice_client_gtk_current - spice_client_gtk_age,
spice_client_gtk_age,
spice_client_gtk_revision)