Update TODO comment

This commit is contained in:
Justin Ethier 2020-12-28 21:42:09 -05:00
parent fb7f56279d
commit 23481f34c2

View file

@ -1,10 +1,10 @@
# Changelog
## 0.25 - TBD
TODO: consider creating a revised overview of our GC that unifies the original writeup, lazy sweeping, and these latest changes for safely sharing objects between threads.
## 0.24 - TBD
TODO: shared object functions no longe required since 0.14, update docs to reflect that, mark functions in (cyclone concurrent) as deprecated. As part of this, consider creating a revised overview of our GC that unifies the original writeup, lazy sweeping, and these latest changes for safely sharing objects between threads.
Bug Fixes
- Do not attempt to call `eval` from the runtime if `(scheme eval)` has not been imported. Instead we now raise a Scheme error in this case instead of allowing the runtime to raise a C segmentation violation. Thanks to Arthur Maciel for the bug report.