diff --git a/CHANGELOG.md b/CHANGELOG.md index ae988390..d0fd39ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ RELEASE NOTES ============= +v0.34 +----------------------- +- Fix a compiler warning -Wformat-zero-length string + + v0.33 ----------------------- - Fixes a slight screen corruption on 80 column display. When highlighting the verify ones option the first two digits of DoD 5220.20-M disappear. This patch fixes that issue.@PartialVolume #348 diff --git a/configure.ac b/configure.ac index 7c3f0bcf..3e870406 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.64]) -AC_INIT([nwipe], [0.33], [git@brumit.nl]) +AC_INIT([nwipe], [0.34], [git@brumit.nl]) AM_INIT_AUTOMAKE(foreign subdir-objects) AC_OUTPUT(Makefile src/Makefile man/Makefile) AC_CONFIG_SRCDIR([src/nwipe.c]) diff --git a/man/nwipe.1 b/man/nwipe.1 index 01a1a70b..7f37a025 100644 --- a/man/nwipe.1 +++ b/man/nwipe.1 @@ -1,4 +1,4 @@ -.TH NWIPE "1" "March 2022" "nwipe version 0.33" "User Commands" +.TH NWIPE "1" "March 2022" "nwipe version 0.34" "User Commands" .SH NAME nwipe \- securely erase disks .SH SYNOPSIS diff --git a/src/version.c b/src/version.c index 8abd0af6..cb54c1bb 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.33"; +const char* version_string = "0.34"; const char* program_name = "nwipe"; const char* author_name = "Martijn van Brummelen"; const char* email_address = "git@brumit.nl"; @@ -14,4 +14,4 @@ Modifications to original dwipe Copyright Andy Beverley \n\ This is free software; see the source for copying conditions.\n\ There is NO warranty; not even for MERCHANTABILITY or FITNESS\n\ FOR A PARTICULAR PURPOSE.\n"; -const char* banner = "nwipe 0.33"; +const char* banner = "nwipe 0.34";