From 2ebbdbf2a567c73d75af4f0e04f4f42bfe6d3530 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Wed, 24 Sep 2014 10:33:21 +0000 Subject: Remove dependencies on Subversion. I'm going through all my projects and reworking them to avoid depending on the monotonic integer-valued source control revision identifier provided by Subversion, so I can migrate everything to git without my builds and versioning breaking. Puzzles's version number is now of the form YYYYMMDD.vvvvvv, where vvvvvv is some string of source control information (currently still the SVN-style "rNNNNN", but free to change in future). The date provides monotonicity between my official automated builds, and the second component is the one I'll be most interested in when people send bug reports. [originally from svn r10263] --- version.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'version.c') diff --git a/version.c b/version.c index 590e587..1dde602 100644 --- a/version.c +++ b/version.c @@ -21,9 +21,9 @@ # include "empty.h" #endif -#if defined REVISION +#if defined VER -char ver[] = "Revision: r" STR(REVISION); +char ver[] = "Version: " STR(VER); #else -- cgit v1.1