From 9c63eef56525ba9a49f5274538eec670a6f8c2b6 Mon Sep 17 00:00:00 2001 From: Martijn van Brummelen Date: Wed, 24 Aug 2016 15:21:30 +0200 Subject: [PATCH] Version 0.21 --- README | 2 ++ configure.ac | 4 ++-- src/version.c | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README b/README index a49b105..097d6d5 100644 --- a/README +++ b/README @@ -18,6 +18,8 @@ Martijn van Brummelen RELEASE NOTES ============= +v0.21 +- Fix ETA not updating properly and bad total throughput display. Thanks (Niels Bassler). v0.20 - Fix build when panel header is not in /usr/include (Thanks Vincent Untz). diff --git a/configure.ac b/configure.ac index 7f9a60b..999f8ee 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.18, git@brumit.nl) -AM_INIT_AUTOMAKE(nwipe, 0.18) +AC_INIT(nwipe, 0.21, git@brumit.nl) +AM_INIT_AUTOMAKE(nwipe, 0.21) 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 caa586d..a543478 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.20"; +const char *version_string = "0.21"; const char *program_name = "nwipe"; const char *author_name = "Martijn van Brummelen"; const char *email_address = "git@brumit.nl";