diff --git a/README b/README index 4a939c2..2f8f674 100644 --- a/README +++ b/README @@ -18,6 +18,10 @@ Andy Beverley RELEASE NOTES ============= +v0.16 +===== +- Fix problems building with clang compiler (thanks Martijn van Brummelen) + v0.15 ===== - Add more detailed information to status page when wiping diff --git a/configure.ac b/configure.ac index 29586bf..6244c6d 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.15, andy@andybev.com) -AM_INIT_AUTOMAKE(nwipe, 0.15) +AC_INIT(nwipe, 0.16, andy@andybev.com) +AM_INIT_AUTOMAKE(nwipe, 0.16) AC_OUTPUT(Makefile src/Makefile man/Makefile) AC_CONFIG_SRCDIR([src/nwipe.c]) AC_CONFIG_HEADERS([config.h]) diff --git a/man/nwipe.1 b/man/nwipe.1 index 15005dc..2079bc2 100644 --- a/man/nwipe.1 +++ b/man/nwipe.1 @@ -1,4 +1,4 @@ -.TH NWIPE "1" "March 2014" "nwipe version 0.15" "User Commands" +.TH NWIPE "1" "March 2014" "nwipe version 0.16" "User Commands" .SH NAME nwipe \- securely erase disks .SH SYNOPSIS diff --git a/src/version.c b/src/version.c index 2d9bdfa..a852c7d 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.15"; +const char *version_string = "0.16"; const char *program_name = "nwipe"; const char *author_name = "Andy Beverley"; const char *email_address = "andy@andybev.com";