Skip to content

Commit dbedf16

Browse files
authored
Merge pull request #99 from mgrzeschik/release/0.3.0
libusbgx: Release libusbgx version 0.3.0
2 parents fe39790 + e120b4d commit dbedf16

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

ChangeLog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Wed, 09 Sep 2024 Michael Grzeschik <m.grzeschik@pengutronix.de> 0.3.0
2+
- Add meson build support
3+
- Add support for usb9pfs
4+
- Add more controls for USB Audio Class 2 (UAC2)
5+
- Add support for USB Video Class (UVC)
6+
- Add support for Printer8664b79
7+
- Improved support for network gadget
8+
- Many smaller fixes
9+
110
Fri, 02 Ma 2018 Krzysztof Opasiak <k.opasiak@samsung.com> 0.2.0
211
- Use prefix for our enums
312
- Use string names similar to USB spec

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([libusbgx], [0.2.0], [k.opasiak@samsung.com])
1+
AC_INIT([libusbgx], [0.3.0], [m.grzeschik@pengutronix.de])
22
AM_INIT_AUTOMAKE([1.12 -Wall -Werror foreign serial-tests])
33
AC_PROG_CC
44
AC_PROG_CXX

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'libusbgx',
33
[ 'c', 'cpp' ],
4-
version: '0.2.0',
4+
version: '0.3.0',
55
license: 'LGPL2.1',
66
default_options: [
77
'warning_level=1',

packaging/libusbgx.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: libusbgx
2-
Version: 0.2.0
2+
Version: 0.3.0
33
Release: 0
44
License: LGPL-2.1+ and GPL-2.0+
55
Summary: USB gadget with ConfigFS Library

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ else
77
libusbgx_la_SOURCES += usbg_schemes_none.c
88
endif
99
libusbgx_la_LDFLAGS = $(LIBCONFIG_LIBS)
10-
libusbgx_la_LDFLAGS += -version-info 2:0:0
10+
libusbgx_la_LDFLAGS += -version-info 3:0:0
1111
libusbgx_la_CFLAGS = $(LIBCONFIG_CFLAGS)
1212
AM_CPPFLAGS=-I$(top_srcdir)/include/ -I$(top_builddir)/include/usbg

0 commit comments

Comments
 (0)