~ chicken-core (chicken-5) 918d5ccd05af7d7dc26e048d488db01a27e4483f


commit 918d5ccd05af7d7dc26e048d488db01a27e4483f
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Mon Jan 11 13:15:25 2010 +0100
Commit:     felix <felix@call-with-current-continuation.org>
CommitDate: Mon Jan 11 13:15:25 2010 +0100

    bumped version to 4.3.3

diff --git a/NEWS b/NEWS
index a1f244b4..30957a1b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,21 @@
+4.3.3
+
+- various mingw Makefile fixes (Thanks to Jim Ursetto)
+- added new option `-repository' to `chicken-install' (Thanks to Christian
+  Kellermann)
+- removed `chicken-setup' stub program
+- fix to `csc' to use the correct library when fixing dynamic load paths
+  (Thanks to Derrell Piper)
+- removed html documentation from distribution (the wiki manual will
+  now be installed)
+- fixed bug in `reexport' which caused syntax not to be correctly
+  reexported
+- previous assignments to a toplevel variable that are separated by
+  side effect free expressions are removed
+- fixed windows version of `find-files' (thanks to Jim Ursetto)
+- documentation for extensions is not installed automatically by
+  `chicken-install' anymore
+
 4.3.2
 
 - changed binary version from "4" to "5", because the new runtime
@@ -29,7 +47,7 @@
 - fixes in types.db by Jim Ursetto
 - `move-memory!' catches negative offsets now (Thanks to Jim Ursetto)
 - deprecated `define-compiled-syntax'
-- added new floating-point primitives `fpsin`, `fpcos', `fptan',
+- added new floating-point primitives `fpsin', `fpcos', `fptan',
   `fpasin', `fpacos', `fpatan', `fpatan2', `fpexp', `fplog', 
   `fpexpt' and `fpsqrt'
 - heavy cleanup of floating math functions which gives much better performance
diff --git a/README b/README
index 6fe1e559..cb90d8a1 100644
--- a/README
+++ b/README
@@ -3,7 +3,7 @@
   (c) 2008-2009, The Chicken Team
   (c) 2000-2007, Felix L. Winkelmann
 
-  version 4.3.2
+  version 4.3.3
 
 
  1. Introduction:
diff --git a/buildversion b/buildversion
index 7e961f9e..2533cac5 100644
--- a/buildversion
+++ b/buildversion
@@ -1 +1 @@
-4.3.2
\ No newline at end of file
+4.3.3
\ No newline at end of file
diff --git a/manual/The User's Manual b/manual/The User's Manual
index 46f456e8..ebf82bd8 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.3.2
+This is the manual for Chicken Scheme, version 4.3.3
 
 ; [[Getting started]] : What is CHICKEN and how do I use it?
 
diff --git a/version.scm b/version.scm
index 502c28bc..6c6945a4 100644
--- a/version.scm
+++ b/version.scm
@@ -1 +1 @@
-(define-constant +build-version+ "4.3.2")
+(define-constant +build-version+ "4.3.3")
Trap