1
0
Fork 0
mirror of https://github.com/linux-usb-gadgets/libusbgx.git synced 2025-07-13 00:30:06 +03:00

Merge pull request #99 from mgrzeschik/release/0.3.0

libusbgx: Release libusbgx version 0.3.0
This commit is contained in:
Michael Grzeschik 2024-09-27 16:01:22 +02:00 committed by GitHub
commit dbedf16f80
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 13 additions and 4 deletions

View file

@ -1,3 +1,12 @@
Wed, 09 Sep 2024 Michael Grzeschik <m.grzeschik@pengutronix.de> 0.3.0
- Add meson build support
- Add support for usb9pfs
- Add more controls for USB Audio Class 2 (UAC2)
- Add support for USB Video Class (UVC)
- Add support for Printer8664b79
- Improved support for network gadget
- Many smaller fixes
Fri, 02 Ma 2018 Krzysztof Opasiak <k.opasiak@samsung.com> 0.2.0
- Use prefix for our enums
- Use string names similar to USB spec

View file

@ -1,4 +1,4 @@
AC_INIT([libusbgx], [0.2.0], [k.opasiak@samsung.com])
AC_INIT([libusbgx], [0.3.0], [m.grzeschik@pengutronix.de])
AM_INIT_AUTOMAKE([1.12 -Wall -Werror foreign serial-tests])
AC_PROG_CC
AC_PROG_CXX

View file

@ -1,7 +1,7 @@
project(
'libusbgx',
[ 'c', 'cpp' ],
version: '0.2.0',
version: '0.3.0',
license: 'LGPL2.1',
default_options: [
'warning_level=1',

View file

@ -1,5 +1,5 @@
Name: libusbgx
Version: 0.2.0
Version: 0.3.0
Release: 0
License: LGPL-2.1+ and GPL-2.0+
Summary: USB gadget with ConfigFS Library

View file

@ -7,6 +7,6 @@ else
libusbgx_la_SOURCES += usbg_schemes_none.c
endif
libusbgx_la_LDFLAGS = $(LIBCONFIG_LIBS)
libusbgx_la_LDFLAGS += -version-info 2:0:0
libusbgx_la_LDFLAGS += -version-info 3:0:0
libusbgx_la_CFLAGS = $(LIBCONFIG_CFLAGS)
AM_CPPFLAGS=-I$(top_srcdir)/include/ -I$(top_builddir)/include/usbg