From: Peter Verthez <Peter.Verthez@advalvas.be>
Date: Sun, 29 Dec 2002 16:26:48 +0000 (+0000)
Subject: Move to three part version numbers.
X-Git-Url: https://git.dlugolecki.net.pl/?a=commitdiff_plain;h=955d44f66a6f3b45dc520c529ad75c6724658cc1;p=gedcom-parse.git

Move to three part version numbers.
Release number changed to 0.20.0 for upcoming release.
---

diff --git a/configure.in b/configure.in
index 072dd89..fcd0b25 100644
--- a/configure.in
+++ b/configure.in
@@ -8,16 +8,18 @@ dnl Global variables
 NAME=gedcom-parse
 AC_SUBST(NAME)
 
-VERSION=0.17
+VERSION=0.20.0
 VERSION_MAJOR=`echo $VERSION | sed 's/\..*$//'`
 changequote(<<,>>)
-VERSION_MINOR=`echo $VERSION | sed 's/^[^\.]*\.//'`
+VERSION_MINOR=`echo $VERSION | sed 's/^[^\.]*\.//' | sed 's/\..*$//'`
+VERSION_PATCH=`echo $VERSION | sed 's/^[^\.]*\.[^\.]*\.//'`
 changequote([,])
 AC_SUBST(VERSION_MAJOR)
 AC_SUBST(VERSION_MINOR)
+AC_SUBST(VERSION_PATCH)
 AC_SUBST(VERSION)
 
-LIBVERSION=0:7
+LIBVERSION=0:8
 AC_SUBST(LIBVERSION)
 
 SHELL=/bin/sh