v1.0.3 release
authorDaniel Drake <dsd@gentoo.org>
Thu, 27 Aug 2009 15:29:54 +0000 (21:14 +0545)
committerDaniel Drake <dsd@gentoo.org>
Thu, 27 Aug 2009 15:55:57 +0000 (21:40 +0545)
Makefile.am
NEWS
configure.ac

index 284cdbb1c6eac045e3961138d0824a663b887129..1b65a92eb73c007103c81b82f3a3fb565a29de4f 100644 (file)
@@ -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 19614c8d5fe7918f93f7b6ac4d14e9ef09d8a75d..4a6a39d509a0fb6493c16398dbc83ec5f40e7967 100644 (file)
--- 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
 
index 6a65a0d2549ae53a18b253745e2ec966852343a9..b43c77cf7e84326773ba8b5969a0c6c8b3526fc1 100644 (file)
@@ -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])