chiark / gitweb /
release 105
authorKay Sievers <kay.sievers@vrfy.org>
Sat, 3 Feb 2007 00:24:48 +0000 (01:24 +0100)
committerKay Sievers <kay.sievers@vrfy.org>
Sat, 3 Feb 2007 00:24:48 +0000 (01:24 +0100)
ChangeLog
Makefile
RELEASE-NOTES

index e9e50655ba30064b79936b2456877a3d22d07738..c4b97662d505c4a78cbf453cdd488af574a11770 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,30 @@
+Summary of changes from v104 to v105
+============================================
+
+A. Costa (1):
+      man: fix typos in scsi_id and udevd
+
+Andrey Borzenkov (2):
+      vol_id: add -L to print raw partition label
+      vol_id: document -L
+
+Kay Sievers (2):
+      exclude parent devices from DRIVER== match
+      volume_id: really fix endianess bug in linux_raid detection
+
+Matthias Schwarzott (2):
+      correct typo in extras/scsi_id/scsi_id.conf
+      fix retry-loop in netif-rename code
+
+Peter Breitenlohner (1):
+      fix INSTALL_PROGRAM vs. INSTALL_SCRIPT
+
+Sergey Vlasov (3):
+      udevd: init signal pipe before daemonizing
+      unlink old database file before creating a new one
+      fix %c $string substitution
+
+
 Summary of changes from v103 to v104
 ============================================
 
index 536467edf3d784be80edb8e156ff447a1a770959..29c2044906666531d9954c2504164d510b3bf066 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@
 # 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 #
 
-VERSION = 104
+VERSION = 105
 
 # set this to make use of syslog
 USE_LOG = true
@@ -226,8 +226,8 @@ clean:
 .PHONY: clean
 
 release:
-       git-archive --format=tar --prefix=udev-104/ HEAD | gzip -9v > udev-$(VERSION).tar.gz
-       git-archive --format=tar --prefix=udev-104/ HEAD | bzip2 -9v > udev-$(VERSION).tar.bz2
+       git-archive --format=tar --prefix=udev-$(VERSION)/ HEAD | gzip -9v > udev-$(VERSION).tar.gz
+       git-archive --format=tar --prefix=udev-$(VERSION)/ HEAD | bzip2 -9v > udev-$(VERSION).tar.bz2
 .PHONY: release
 
 install-config:
index 39abb7262c69f318b71e803c717ca14436c83795..f4966ac98a9c61527c08cef25d5c02344216e40e 100644 (file)
@@ -1,8 +1,12 @@
 udev 105
 ========
-Bugfixes. DRIVER== will match only for devices that actually have
-a driver. DRIVERS== must be used, to include the parent devices
-in the match.
+Bugfixes.
+
+DRIVER== will match only for devices that actually have a real
+driver. DRIVERS== must be used, if parent devices should be
+included in the match.
+
+Libvolume_id's "linux_raid" detection needed another fix.
 
 udev 104
 ========