Update version strings to 9.2.
authorChris Hanson <org/chris-hanson/cph>
Sat, 17 May 2014 05:43:56 +0000 (22:43 -0700)
committerChris Hanson <org/chris-hanson/cph>
Sat, 17 May 2014 05:43:56 +0000 (22:43 -0700)
dist/scheme-inst.nsi
doc/configure.ac
doc/ref-manual/scheme.texinfo
doc/scheme.1
doc/user-manual/user.texinfo
src/configure.ac
src/etc/macosx/make-app.sh
src/runtime/version.scm

index 8c27f7d80ff93a977cfae93938d06be19900ac8d..4df0519411046c28302bf7c826a5841895512cd3 100755 (executable)
@@ -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"
index 358edff731c538c23fcae8ca62db57e5519a9290..0f10aeb155ca9b9b71f5d24b8c5808fb01ab17c6 100644 (file)
@@ -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])
index ccb5d8f0048f17a37f4d95ec348003deaca8fc4d..6eef55ab79f0e7a17aa52d7db114caa371eb3ff3 100644 (file)
@@ -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
index 164af97421d469aa5a840a04f1da8d81f001ee15..81e9464d171d7941e3ccb004e594467e14681412 100644 (file)
@@ -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
index 99cd40da41f8675eed3cf65cbe6085ee3edc30fe..5766ef033120fddc510e55636d4df619317f0082 100644 (file)
@@ -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
 
index 3d275b728bfa5ace6fa3aa68e37e64aa3577083e..27dc4d42c28e8df3b733c6d96023075ba90ac916 100644 (file)
@@ -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
index b9659f89862f4bfc34fab35295a1ff5eb805c722..165da410ec0945b2585c1c4b45b9cd6e19644d10 100755 (executable)
@@ -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}
index b45a9f752f787c3df739b83770c37898b2cb19e3..3048290a9ec261777d68542277573956905e5f3e 100644 (file)
@@ -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))))