From 7c287a97a24d0944e391893b1a711fae6ba3c42b Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Sat, 1 Apr 2017 01:05:19 -0400 Subject: [PATCH] Fixes for SRFI 60 --- CHANGELOG.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eba9f935..db110147 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,6 @@ Features -IN PROGRESS - bignum support for SRFI 60 - - Cyclone now has support in the interpreter for loading libraries via `import`. This is probably the most important change in this release and allows `icyc` to be used to its full potential. - Store parameter objects in such a way that changes to a parameter object do not affect other threads that use the same parameter object. @@ -13,6 +11,7 @@ IN PROGRESS - bignum support for SRFI 60 > `parameterize` must not change the associated values of any parameters in any thread other than the current thread and threads created inside the `parameterize` body. +- Added bignum support to SRFI 60 - integers as bits. - Normalize the result of `string->number` such that bignums are only returned if the result truly is a bignum. - Allow Cyclone to find `(cyclone)` prefixed libraries installed in Cyclone's system folder. - Allow a library to export identifiers that are exported by another library. Previously a library could only export identifiers that it defined directly.