diff --git a/README b/README index dd7a24c..f6ac955 100644 --- a/README +++ b/README @@ -14,6 +14,11 @@ Andy Beverley RELEASE NOTES ============= +v0.15 +===== +- Add more detailed information to status page when wiping +- Add ability to send SIGUSR1 to print wiping current status to log + v0.14 ===== - Added explicit check for ncurses (required for Fedora). See bug 3604008. diff --git a/configure.ac b/configure.ac index d24c7af..29586bf 100644 --- a/configure.ac +++ b/configure.ac @@ -2,8 +2,8 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.64]) -AC_INIT(nwipe, 0.14, andy@andybev.com) -AM_INIT_AUTOMAKE(nwipe, 0.14) +AC_INIT(nwipe, 0.15, andy@andybev.com) +AM_INIT_AUTOMAKE(nwipe, 0.15) AC_OUTPUT(Makefile src/Makefile man/Makefile) AC_CONFIG_SRCDIR([src/nwipe.c]) AC_CONFIG_HEADERS([config.h]) diff --git a/src/version.c b/src/version.c index 0be3915..2d9bdfa 100644 --- a/src/version.c +++ b/src/version.c @@ -4,7 +4,7 @@ * used by configure to dynamically assign those values * to documentation files. */ -const char *version_string = "0.14"; +const char *version_string = "0.15"; const char *program_name = "nwipe"; const char *author_name = "Andy Beverley"; const char *email_address = "andy@andybev.com";