summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Toso <victortoso@redhat.com>2021-03-12 14:19:36 +0100
committerVictor Toso <victortoso@redhat.com>2021-04-02 17:42:05 +0200
commitbca484fc6f206ab9da2f73e8a0118fad45374d4e (patch)
tree95432bf73899ff3bfcebd15331c77548f5961cb0
parent249f42aaaf182cfd4f4b9120b2468ec8721bd890 (diff)
Prepare for 0.9.0 releaseusbredir-0.9.0
Signed-off-by: Victor Toso <victortoso@redhat.com>
-rw-r--r--ChangeLog.md12
-rw-r--r--configure.ac6
-rw-r--r--meson.build2
-rw-r--r--usbredirhost/meson.build2
-rw-r--r--usbredirparser/meson.build2
5 files changed, 18 insertions, 6 deletions
diff --git a/ChangeLog.md b/ChangeLog.md
index 72076f7..d9d1d6d 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,15 @@
+# usbredir-0.9.0 - 02 Apr 2021
+
+- !2 Add usbredirect tool with feature parity with usbredirserver
+- !6 Add fuzzer for usbredirparser
+- !12 Add MSI installer for usbredirect tool
+- !11 Add meson build: autotool will be removed in a future release
+- !5 Limit packet's length to 65 kB
+- !4 Fix wrong up-cast when checking for package's length
+- Require LLVM's compiler-rt (optional: for fuzzer)
+- Require glib2 >= 2.44 (optional: for usbredirect)
+- Deprecate usbredirserver in favor of usbredirect
+
# usbredir-0.8.0 - 03 Aug 2018
- Source code and bug tracker hosted in Freedesktop's instance of Gitlab
diff --git a/configure.ac b/configure.ac
index 9db3c8b..fcad69f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ(2.63)
-AC_INIT([usbredir], [0.8.0])
+AC_INIT([usbredir], [0.9.0])
AC_CONFIG_SRCDIR([configure.ac])
AM_CONFIG_HEADER([config.h])
@@ -10,10 +10,10 @@ dnl libtool versioning
# changes to the signature and the semantic)
# ? :+1 : ? == just internal changes
# CURRENT : REVISION : AGE
-LIBUSBREDIRHOST_SO_VERSION=1:1:0
+LIBUSBREDIRHOST_SO_VERSION=1:2:0
AC_SUBST(LIBUSBREDIRHOST_SO_VERSION)
-LIBUSBREDIRPARSER_SO_VERSION=1:1:0
+LIBUSBREDIRPARSER_SO_VERSION=1:2:0
AC_SUBST(LIBUSBREDIRPARSER_SO_VERSION)
AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
diff --git a/meson.build b/meson.build
index 55e4dea..8b2ccca 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('usbredir', 'c', 'cpp',
- version: '0.8.0',
+ version: '0.9.0',
license: 'LGPLv2.1+',
meson_version : '>= 0.53',
default_options : [
diff --git a/usbredirhost/meson.build b/usbredirhost/meson.build
index 0d3c44c..28dc688 100644
--- a/usbredirhost/meson.build
+++ b/usbredirhost/meson.build
@@ -1,7 +1,7 @@
# so verison, see:
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
usbredir_host_current = 1
-usbredir_host_revision = 1
+usbredir_host_revision = 2
usbredir_host_age = 0
usbredir_host_so_version = '@0@.@1@.@2@'.format(
usbredir_host_current - usbredir_host_age,
diff --git a/usbredirparser/meson.build b/usbredirparser/meson.build
index 9bda28e..b3deb25 100644
--- a/usbredirparser/meson.build
+++ b/usbredirparser/meson.build
@@ -1,7 +1,7 @@
# so verison, see:
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
usbredir_parser_current = 1
-usbredir_parser_revision = 1
+usbredir_parser_revision = 2
usbredir_parser_age = 0
usbredir_parser_so_version = '@0@.@1@.@2@'.format(
usbredir_parser_current - usbredir_parser_age,