diff --git a/Changelog b/Changelog index d0bf2b3..8afb09c 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,7 @@ +v1.15 - 16 October 2015 + - Merging in pull requests from Github by Thomas Ross and Shea Polansky + to fix formatting and various issues in the build process/program. + v1.14 - 18 December 2012 - Stéphane changed the error handling from following stdlib conventions to BSD (sysexits.h) conventions. diff --git a/main.c b/main.c index c964b31..0bfd5de 100644 --- a/main.c +++ b/main.c @@ -52,7 +52,7 @@ static void print_usage(int exitval) { */ static void print_version() { printf("rolldice, v%d.%d\n", MAJOR_VERSION, MINOR_VERSION); - printf("Written by Stevie Strickland (sstrickl@ccs.neu.edu)\n"); + printf("Written by Stevie Strickland (sstrickl@gmail.com)\n"); exit(EX_OK); } diff --git a/rolldice.6.src b/rolldice.6.src index 993143a..8c00f2a 100644 --- a/rolldice.6.src +++ b/rolldice.6.src @@ -1,7 +1,7 @@ -.\" Man file for rolldice(6) - v__VERSION__ - 18 Dec 2012 +.\" Man file for rolldice(6) - v__VERSION__ - 16 Oct 2015 .\" (c) Stevie Strickland, 1999-2012 .\" -.TH ROLLDICE 6 "18 Dec 2012" Linux +.TH ROLLDICE 6 "16 Oct 2015" Linux .SH NAME rolldice \- rolls virtual dice .SH SYNOPSIS diff --git a/version.h b/version.h index de93985..8c5b3c8 100644 --- a/version.h +++ b/version.h @@ -1,5 +1,5 @@ /* - * version.c - 18 December 2012 + * version.c - 16 October 2015 * * This program has been placed under the GPL. Any bugfixes or enhancements * will be greatly appreciated :) @@ -7,4 +7,4 @@ /* The version number :) */ static const int MAJOR_VERSION = 1; -static const int MINOR_VERSION = 14; +static const int MINOR_VERSION = 15;