From a60aa9bfb12f154e1f84cc9abe968c4adb6ed102 Mon Sep 17 00:00:00 2001 From: Al Date: Sat, 29 Dec 2018 20:16:14 -0500 Subject: [PATCH] [fix] seem to not be able to use a non-numeric version number in the Windows configure script, hopefully that fixes the Appveyor build --- windows/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/configure.ac b/windows/configure.ac index c45564d2..6e920ce3 100644 --- a/windows/configure.ac +++ b/windows/configure.ac @@ -3,7 +3,7 @@ m4_define(LIBPOSTAL_MAJOR_VERSION, [1]) m4_define(LIBPOSTAL_MINOR_VERSION, [1]) -m4_define(LIBPOSTAL_PATCH_VERSION, [alpha]) +m4_define(LIBPOSTAL_PATCH_VERSION, [0]) AC_INIT([libpostal], LIBPOSTAL_MAJOR_VERSION.LIBPOSTAL_MINOR_VERSION.LIBPOSTAL_PATCH_VERSION)