~ chicken-core (chicken-5) 3f9fd398b5314a0d1e8b6e90383134d758f7e95d
commit 3f9fd398b5314a0d1e8b6e90383134d758f7e95d Author: felix <felix@call-with-current-continuation.org> AuthorDate: Mon Nov 23 18:01:33 2009 +0100 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Mon Nov 23 18:01:33 2009 +0100 bumped version to 4.2.10 diff --git a/NEWS b/NEWS index 3cba48b9..76b97326 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,22 @@ +4.2.10 + +- fixed bug in `cond-expand' that incorrectly renamed feature-identifiers + if the form was the product of a syntax expansion (reported by Thomas + Bushnell) +- import-libraries are only generated by the compiler if they don't exist + yet and if the content has actually changed (this simplifies makefile- + rules in some cases) +- it is now possible to pass a config-file to `make(1)' instead of specifying + all build-options as variables on the command-line (see README) +- removed compiler options for "benchmark-mode" and replaced them with a + new optimization level (5) (note that `-O5' does not imply fixnum mode + anymore) +- `hen.el' and `scheme-complete.el' are not bundled with the core system + anymore - `hen.el' is currently not maintained, and `scheme-complete.el' + has its own release cycle; both files are available, see + http://chicken.wiki.br/emacs +- removed meaningless benchmark suite and cleaned up + 4.2.9 - added optional argument to `grep' that allows applying a function diff --git a/README b/README index 78a30889..eb9baf56 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ (c) 2000-2007, Felix L. Winkelmann (c) 2008-2009, The Chicken Team - version 4.2.9 + version 4.2.10 1. Introduction: diff --git a/buildversion b/buildversion index 88ea5ace..a54ef4b4 100644 --- a/buildversion +++ b/buildversion @@ -1 +1 @@ -4.2.9 \ No newline at end of file +4.2.10 \ No newline at end of file diff --git a/manual/The User's Manual b/manual/The User's Manual index 5d8b9670..c683d6cf 100644 --- a/manual/The User's Manual +++ b/manual/The User's Manual @@ -6,7 +6,7 @@ <img style="float:right; border-left:1px solid #ccc;border-bottom:1px solid #ccc;margin-left:1em;" src="http://www.call-with-current-continuation.org/chicken4.png" alt="Stylized picture of a chicken"/> </nowiki> -This is the manual for Chicken Scheme, version 4.2.9 +This is the manual for Chicken Scheme, version 4.2.10 ; [[Getting started]] : What is CHICKEN and how do I use it? diff --git a/version.scm b/version.scm index 52af638e..cbbd6230 100644 --- a/version.scm +++ b/version.scm @@ -1 +1 @@ -(define-constant +build-version+ "4.2.9") +(define-constant +build-version+ "4.2.10")Trap