~ chicken-core (chicken-5) c75d2c94506fd377d32410722721d8b322c811c3
commit c75d2c94506fd377d32410722721d8b322c811c3 Author: felix <felix@z.(none)> AuthorDate: Fri Apr 8 07:57:02 2011 +0200 Commit: felix <felix@z.(none)> CommitDate: Fri Apr 8 07:57:02 2011 +0200 bumped version to 4.6.7 diff --git a/NEWS b/NEWS index c09e6797..f0c5ec8c 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +4.6.7 + +- Core libraries + - Fixed pretty-printer output of certain escaped character sequences + inside strings (thanks to Mario Domenech Goulart, thanks to Kon Lovett + for pointing out a missing test-file) +- Runtime system + - Fixed typo in "runtime.c" (thanks to Sven Hartrumpf) + 4.6.6 - Build system diff --git a/README b/README index ebe94e89..c342264d 100644 --- a/README +++ b/README @@ -6,7 +6,7 @@ (c) 2008-2011, The Chicken Team (c) 2000-2007, Felix L. Winkelmann - version 4.6.6 + version 4.6.7 1. Introduction diff --git a/buildversion b/buildversion index b3a44c11..16f8758a 100644 --- a/buildversion +++ b/buildversion @@ -1 +1 @@ -4.6.6 \ No newline at end of file +4.6.7 \ No newline at end of file diff --git a/manual/The User's Manual b/manual/The User's Manual index 86833a93..4279caab 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.6.6 +This is the manual for Chicken Scheme, version 4.6.7 ; [[Getting started]] : What is CHICKEN and how do I use it? diff --git a/version.scm b/version.scm index 2b8e66ab..feb3d4ad 100644 --- a/version.scm +++ b/version.scm @@ -1 +1 @@ -(define-constant +build-version+ "4.6.6") +(define-constant +build-version+ "4.6.7")Trap