From 4394f24245856b77448720ce054e26be252e888a Mon Sep 17 00:00:00 2001 From: PartialVolume <22084881+PartialVolume@users.noreply.github.com> Date: Wed, 8 May 2024 21:31:53 +0100 Subject: [PATCH] Bump to v0.37 --- CHANGELOG.md | 9 +++++++++ configure.ac | 2 +- man/nwipe.1 | 2 +- src/version.c | 4 ++-- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93037f63..34616374 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ RELEASE NOTES ============= +v0.37 +----------------------- +includes the following changes: + +- Added the XORoshiro-256 pseudo random number generator (PRNG). Thanks to Fabian Druschke @knogle #555 +- Added the Lagged Fibonacci PRNG generator. Thanks again to Fabian Druschke @knogle #556 +- Added missing help for HMG IS5 enhanced. Thanks to @AndCycle #569 +- Fixed an issue in configure.ac which was producing an error while running `./configure`, mentioning libconfig, however the presence of libconfig had already been checked for, earlier in configure.ac. Although this error did not cause `./configure` to abort prematurely and therefore make would build the source correctly, it did cause a issue for inclusion into Debian Sid. Thanks to @Polynomial-C #574 + v0.36 ----------------------- - Added the abbreviation MMC for mmcblk devices such as SD and microSD cards and some low budget laptops. #526 diff --git a/configure.ac b/configure.ac index 28bdd3a9..2720d3e9 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.63]) -AC_INIT([nwipe],[0.36],[git@brumit.nl]) +AC_INIT([nwipe],[0.37],[git@brumit.nl]) AM_INIT_AUTOMAKE(foreign subdir-objects) AC_CONFIG_FILES([Makefile src/Makefile man/Makefile]) AC_OUTPUT diff --git a/man/nwipe.1 b/man/nwipe.1 index 1e645bfd..e7b950a2 100644 --- a/man/nwipe.1 +++ b/man/nwipe.1 @@ -1,4 +1,4 @@ -.TH NWIPE "1" "February 2024" "nwipe version 0.36" "User Commands" +.TH NWIPE "8" "May 2024" "nwipe version 0.37" "User Commands" .SH NAME nwipe \- securely erase disks .SH SYNOPSIS diff --git a/src/version.c b/src/version.c index cbaa1069..bf005739 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.36"; +const char* version_string = "0.37"; 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.36"; +const char* banner = "nwipe 0.37";