diff --git a/README b/README index ee9f85f..57de369 100644 --- a/README +++ b/README @@ -10,14 +10,22 @@ make install The ncurses, pthreads and parted libraries are required for compiling. For any problems, please use the Github page: -https://github.com/abeverley/nwipe +https://github.com/martijnvanbrummelen/nwipe -Andy Beverley +Martijn van Brummelen RELEASE NOTES ============= +v0.18 +===== +- Fixed grammar. +- Move from loff_t to off64_t for musl libc support. +- Add "--nosignals" option. +- Automake needs the dist_ prefix to include man pages in 'make dist'. +- Remove more compiler warnings. +- Add libintl, libuuid dependencies to allow parted static link v0.17 ===== diff --git a/configure.ac b/configure.ac index 78f6624..a7d54e3 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.17, andy@andybev.com) -AM_INIT_AUTOMAKE(nwipe, 0.17) +AC_INIT(nwipe, 0.18, git@brumit.nl) +AM_INIT_AUTOMAKE(nwipe, 0.18) 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 5bc1fad..8f29aba 100644 --- a/src/version.c +++ b/src/version.c @@ -4,11 +4,11 @@ * used by configure to dynamically assign those values * to documentation files. */ -const char *version_string = "0.17"; +const char *version_string = "0.18"; const char *program_name = "nwipe"; -const char *author_name = "Andy Beverley"; -const char *email_address = "andy@andybev.com"; -const char *years = "2012"; +const char *author_name = "Martijn van Brummelen"; +const char *email_address = "git@brumit.nl"; +const char *years = "2016"; const char *copyright = "Copyright Darik Horn \n\ Modifications to original dwipe Copyright Andy Beverley \n\ This is free software; see the source for copying conditions.\n\