summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Drake <dsd@gentoo.org>2009-08-27 21:14:54 +0545
committerDaniel Drake <dsd@gentoo.org>2009-08-27 21:40:57 +0545
commitf46716f42040986203fa6e873bfdabe1be2900ec (patch)
treee3dc1d64828dbef042756fe09773baa6b170cb2d
parent5b489b8b2a5aba7b8b804e5af6d2628735548238 (diff)
downloadlibusb-f46716f42040986203fa6e873bfdabe1be2900ec.tar.gz
v1.0.3 releasev1.0.3
-rw-r--r--Makefile.am9
-rw-r--r--NEWS4
-rw-r--r--configure.ac2
3 files changed, 12 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 284cdbb..1b65a92 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,4 +1,4 @@
-AUTOMAKE_OPTIONS = dist-bzip2
+AUTOMAKE_OPTIONS = dist-bzip2 no-dist-gzip
ACLOCAL_AMFLAGS = -I m4
DISTCLEANFILES = ChangeLog libusb-1.0.pc
EXTRA_DIST = TODO PORTING
@@ -17,6 +17,11 @@ ChangeLog:
dist-hook: ChangeLog
+reldir = .release/$(distdir)
dist-up: dist
- rsync $(distdir).tar.bz2 frs.sourceforge.net:uploads/
+ rm -rf $(reldir)
+ mkdir -p $(reldir)
+ cp $(distdir).tar.bz2 $(reldir)
+ rsync -rv $(reldir) dsd_,libusb@frs.sourceforge.net:/home/frs/project/l/li/libusb/libusb-1.0/
+ rm -rf $(reldir)
diff --git a/NEWS b/NEWS
index 19614c8..4a6a39d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,10 @@
This file lists notable changes in each release. For the full history of all
changes, see ChangeLog.
+2009-08-27: v1.0.3 release
+ * Bug fixes
+ * Add libusb_get_max_iso_packet_size()
+
2009-06-13: v1.0.2 release
* Bug fixes
diff --git a/configure.ac b/configure.ac
index 6a65a0d..b43c77c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([libusb], [1.0.2])
+AC_INIT([libusb], [1.0.3])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([libusb/core.c])
AC_CONFIG_MACRO_DIR([m4])