From: Nick Bowler Date: Sun, 14 Feb 2021 19:21:18 +0000 (-0500) Subject: Release 1. X-Git-Tag: v1^0 X-Git-Url: https://git.draconx.ca/gitweb/slotifier.git/commitdiff_plain/d30a4f5730dc9358523db5129a85b1f62c82981a Release 1. --- diff --git a/Makefile.am b/Makefile.am index 9cda506..9515723 100644 --- a/Makefile.am +++ b/Makefile.am @@ -68,6 +68,14 @@ distcheck-hook: echo ' *** be the stub from a git checkout. The "git" and "perl"'; \ echo ' *** programs are required for ChangeLog generation to work.'; \ $(TEST_DISTRIBUTION_OR_ERROR); } >&2 + $(GENERIC_V) : 'CHECK ' NEWS; \ + $(AWK) 'NR == 1 && $$NF != "$(PACKAGE_VERSION):" \ + { print FILENAME ":" NR ":", $$0; exit 1}' \ + $(distdir)/NEWS || { \ + echo 'ERROR: *** First line of NEWS should match the package version'; \ + echo ' *** $(PACKAGE_VERSION), but that does not appear to be the case.'; \ + echo ' *** Remember to update NEWS before preparing a release.'; \ + $(TEST_DISTRIBUTION_OR_ERROR); } >&2 # Supporting rules for gettext. include $(top_srcdir)/common/snippet/gettext.mk diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..64e572a --- /dev/null +++ b/NEWS @@ -0,0 +1,2 @@ +Release 1: + * Initial release. diff --git a/configure.ac b/configure.ac index f5c7c70..cda4e69 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ dnl License WTFPL2: Do What The Fuck You Want To Public License, version 2. dnl This is free software: you are free to do what the fuck you want to. dnl There is NO WARRANTY, to the extent permitted by law. -AC_INIT([slotifier], [0], [nbowler@draconx.ca]) +AC_INIT([slotifier], [1], [nbowler@draconx.ca]) AC_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects])