From 08fd7a7721ba7864f52c2096ae369cb1073973a6 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Fri, 16 May 2014 22:43:56 -0700 Subject: [PATCH] Update version strings to 9.2. --- dist/scheme-inst.nsi | 2 +- doc/configure.ac | 2 +- doc/ref-manual/scheme.texinfo | 4 ++-- doc/scheme.1 | 2 +- doc/user-manual/user.texinfo | 10 +++++----- src/configure.ac | 2 +- src/etc/macosx/make-app.sh | 2 +- src/runtime/version.scm | 4 ++-- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/dist/scheme-inst.nsi b/dist/scheme-inst.nsi index 8c27f7d80..4df051941 100755 --- a/dist/scheme-inst.nsi +++ b/dist/scheme-inst.nsi @@ -2,7 +2,7 @@ ; HM NIS Edit Wizard helper defines !define PRODUCT_NAME "MIT-GNU Scheme" -!define PRODUCT_VERSION "9.1" +!define PRODUCT_VERSION "9.2" !define PRODUCT_PUBLISHER "GNU Project" !define PRODUCT_WEB_SITE "http://www.gnu.org/software/mit-scheme/" !define PRODUCT_DIR_ROOT_KEY "HKLM" diff --git a/doc/configure.ac b/doc/configure.ac index 358edff73..0f10aeb15 100644 --- a/doc/configure.ac +++ b/doc/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT([MIT/GNU Scheme documentation], - [9.1], + [9.2], [bug-mit-scheme@gnu.org], [mit-scheme-doc]) AC_CONFIG_SRCDIR([ref-manual/scheme.texinfo]) diff --git a/doc/ref-manual/scheme.texinfo b/doc/ref-manual/scheme.texinfo index ccb5d8f00..6eef55ab7 100644 --- a/doc/ref-manual/scheme.texinfo +++ b/doc/ref-manual/scheme.texinfo @@ -2,8 +2,8 @@ @comment %**start of header @setfilename mit-scheme-ref @set EDITION 1.105 -@set VERSION 9.1 -@set UPDATED 2011-10-14 +@set VERSION 9.2 +@set UPDATED 2014-05-05 @settitle MIT/GNU Scheme @value{VERSION} @comment %**end of header @setchapternewpage odd diff --git a/doc/scheme.1 b/doc/scheme.1 index 164af9742..81e9464d1 100644 --- a/doc/scheme.1 +++ b/doc/scheme.1 @@ -1,4 +1,4 @@ -.TH "scheme" "1" "9.1" "MIT/GNU Scheme Team" "" +.TH "scheme" "1" "9.2" "MIT/GNU Scheme Team" "" .SH "NAME" .LP MIT/GNU Scheme \- Scheme development environment diff --git a/doc/user-manual/user.texinfo b/doc/user-manual/user.texinfo index 99cd40da4..5766ef033 100644 --- a/doc/user-manual/user.texinfo +++ b/doc/user-manual/user.texinfo @@ -2,8 +2,8 @@ @comment %**start of header @setfilename mit-scheme-user @set EDITION 1.94 -@set VERSION 9.1 -@set UPDATED 2011-10-14 +@set VERSION 9.4 +@set UPDATED 2014-05-05 @settitle MIT/GNU Scheme @value{VERSION} @comment %**end of header @setchapternewpage odd @@ -389,12 +389,12 @@ MIT/GNU Scheme is invoked by double-clicking on a shortcut. In either case, Scheme will load itself and print something like this: @example -Copyright (C) 2011 Massachusetts Institute of Technology +Copyright (C) 2014 Massachusetts Institute of Technology This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -Image saved on Sunday May 1, 2011 at 4:38:16 PM - Release 9.1 || Microcode 15.3 || Runtime 15.7 || SF 4.41 || LIAR/x86-64 4.118 +Image saved on Friday May 16, 2014 at 10:35:55 PM + Release 9.2 || Microcode 15.3 || Runtime 15.7 || SF 4.41 || LIAR/x86-64 4.118 Edwin 3.116 @end example diff --git a/src/configure.ac b/src/configure.ac index 3d275b728..27dc4d42c 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([MIT/GNU Scheme], [9.1.1], [bug-mit-scheme@gnu.org], [mit-scheme]) +AC_INIT([MIT/GNU Scheme], [9.2], [bug-mit-scheme@gnu.org], [mit-scheme]) AC_CONFIG_SRCDIR([microcode/boot.c]) AC_CONFIG_AUX_DIR([microcode]) AC_PROG_MAKE_SET diff --git a/src/etc/macosx/make-app.sh b/src/etc/macosx/make-app.sh index b9659f898..165da410e 100755 --- a/src/etc/macosx/make-app.sh +++ b/src/etc/macosx/make-app.sh @@ -27,7 +27,7 @@ set -e # These values are placeholders; we need to get the right ones. -: ${VERSION_STRING=9.1} +: ${VERSION_STRING=9.2} : ${LONG_VERSION_STRING="release ${VERSION_STRING}"} : ${YEAR=$(date +%Y)} : ${bindir=/usr/local/bin} diff --git a/src/runtime/version.scm b/src/runtime/version.scm index b45a9f752..3048290a9 100644 --- a/src/runtime/version.scm +++ b/src/runtime/version.scm @@ -34,10 +34,10 @@ USA. (add-boot-init! (lambda () (set! copyright-years - (let ((now 2012) + (let ((now 2014) (then 1986)) (iota (+ (- now then) 1) then))) - (add-subsystem-identification! "Release" '(9 1 99)) + (add-subsystem-identification! "Release" '(9 2)) (snarf-microcode-version!) (add-event-receiver! event:after-restore snarf-microcode-version!) (add-subsystem-identification! "Runtime" '(15 7)))) -- 2.25.1