From 3375b4eefc13cbde250ac5213605d06e4afe6662 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Thu, 20 Aug 2009 05:50:48 +0000 Subject: [PATCH] * configure.in (AM_INIT_AUTOMAKE): Change version to 1.1.50 to distinguish from 1.1. * configure: Regenerate. * read.scm (-CGEN-VERSION): Update. * doc/version.texi: Update. --- ChangeLog | 6 ++++++ configure | 2 +- configure.in | 3 ++- doc/version.texi | 4 ++-- read.scm | 3 ++- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 650cdaf..8a47008 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2009-08-19 Doug Evans + * configure.in (AM_INIT_AUTOMAKE): Change version to 1.1.50 to + distinguish from 1.1. + * configure: Regenerate. + * read.scm (-CGEN-VERSION): Update. + * doc/version.texi: Update. + New builtin .pmacro?. * pmacros.scm (-pmacro-builtin-pmacro?): New function. (pmacros-init!): Add .pmacro?. diff --git a/configure b/configure index c71b02e..08ee6d8 100755 --- a/configure +++ b/configure @@ -1620,7 +1620,7 @@ fi # Define the identity of the package. PACKAGE=cgen - VERSION=1.1 + VERSION=1.1.50 cat >>confdefs.h <<_ACEOF diff --git a/configure.in b/configure.in index 6ebc451..35edc21 100644 --- a/configure.in +++ b/configure.in @@ -3,7 +3,8 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) AC_INIT(read.scm) AC_CANONICAL_SYSTEM -AM_INIT_AUTOMAKE(cgen, 1.1) +dnl The "50" is a generic indicator that we're between 1.1 and 1.2. +AM_INIT_AUTOMAKE(cgen, 1.1.50) AC_PROG_INSTALL AC_EXEEXT diff --git a/doc/version.texi b/doc/version.texi index 77f12ea..1be3597 100644 --- a/doc/version.texi +++ b/doc/version.texi @@ -1,4 +1,4 @@ @set UPDATED 14 June 2009 @set UPDATED-MONTH June 2009 -@set EDITION 1.1 -@set VERSION 1.1 +@set EDITION 1.1.50 +@set VERSION 1.1.50 diff --git a/read.scm b/read.scm index b66a1a6..3f0fb26 100644 --- a/read.scm +++ b/read.scm @@ -63,7 +63,8 @@ ; Variables representing misc. global constants. ; A list of three numbers designating the cgen version: major minor fixlevel. -(define -CGEN-VERSION '(1 1 0)) +; The "50" is a generic indicator that we're between 1.1 and 1.2. +(define -CGEN-VERSION '(1 1 50)) (define (cgen-major) (car -CGEN-VERSION)) (define (cgen-minor) (cadr -CGEN-VERSION)) (define (cgen-fixlevel) (caddr -CGEN-VERSION)) -- 2.43.5