diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | configure.in | 4 | ||||
-rwxr-xr-x | tools/hal-system-storage-eject | 2 |
3 files changed, 12 insertions, 3 deletions
@@ -1,3 +1,12 @@ +2006-01-17 David Zeuthen <davidz@redhat.com> + + * configure.in: Post-release version bump to 0.5.7 + + * tools/hal-system-storage-eject: Ugh, fix speling error UnknowFailure + to UnknownFailure in exception + +====== HAL 0.5.6 released ====== + 2006-01-16 David Zeuthen <davidz@redhat.com> * NEWS: Update for 0.5.6 diff --git a/configure.in b/configure.in index 91f12af0..507e64c6 100644 --- a/configure.in +++ b/configure.in @@ -7,8 +7,8 @@ dnl Process this file with autoconf to produce a configure script. # AC_PREREQ(2.57) -AC_INIT(hal, 0.5.6, david@fubar.dk) -AM_INIT_AUTOMAKE(hal, 0.5.6) +AC_INIT(hal, 0.5.7, david@fubar.dk) +AM_INIT_AUTOMAKE(hal, 0.5.7) AM_CONFIG_HEADER(config.h) AM_MAINTAINER_MODE diff --git a/tools/hal-system-storage-eject b/tools/hal-system-storage-eject index 2746dc35..ca43ef41 100755 --- a/tools/hal-system-storage-eject +++ b/tools/hal-system-storage-eject @@ -29,7 +29,7 @@ if [ $? -ne 0 ]; then echo "Device is busy." >&2 ;; *) - echo "org.freedesktop.Hal.Device.Volume.UnknowFailure" >&2 + echo "org.freedesktop.Hal.Device.Volume.UnknownFailure" >&2 echo "Unknown failure." >&2 esac exit 1 |