From 53bc19104aa9f11b9ec7be3d6bd29582893a5f5f Mon Sep 17 00:00:00 2001 From: Jeremy Sowden Date: Fri, 1 Nov 2019 15:30:00 +0000 Subject: [PATCH] wmbattery: bump version to 2.54. --- wmbattery/ChangeLog | 16 ++++++++++++++++ wmbattery/configure.ac | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/wmbattery/ChangeLog b/wmbattery/ChangeLog index 425eebc..3ab5c00 100644 --- a/wmbattery/ChangeLog +++ b/wmbattery/ChangeLog @@ -1,3 +1,19 @@ +wmbattery (2.54) + * Fix a couple of potential memory-leaks. + In `cmd_crit`, if there is an allocation failure, we return from the + function immediately and leak any previously allocated memory. Go to + the clean-up code at the end of the function instead. + * add `dist` target. + Running `make dist` creates a gzipped tar-ball. + * AC_INIT changes. + Change package-name to "wmbattery" and add bug-report e-mail address. + * SunOS fixes. + Add includes needed to get the sonypi ioctl code to compile on Solaris. + * `make distclean` fixes. + Remove Makefile instead of obsolete makeinfo. + Remove autom4te.cache. + Don't remove configure or config.h.in. + wmbattery (2.53) * Add --enable-hal and --enable-upower options. By default hal is disabled and upower is enabled. diff --git a/wmbattery/configure.ac b/wmbattery/configure.ac index a7e05f3..2796d2a 100644 --- a/wmbattery/configure.ac +++ b/wmbattery/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([wmbattery], [2.53], [wmaker-dev@googlegroups.com]) +AC_INIT([wmbattery], [2.54], [wmaker-dev@googlegroups.com]) AC_CONFIG_HEADER(config.h) AC_CONFIG_AUX_DIR(autoconf)