Document latest changes for this release

This commit is contained in:
Justin Ethier 2020-12-28 21:20:12 -05:00
parent 50cc213437
commit 3a514ecfff

View file

@ -7,9 +7,10 @@ TODO: shared object functions no longe required since 0.14, update docs to refle
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.
- When allocating large vectors the object used to fill such a vector may not be transported to the heap. This was a nasty bug that could lead to memory corruption.
- Sean Lynch fixed a bug where record type predicates do not check the length of the target before checking if the vector is actually a record.
- 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.
- Fixed `vector?` to no longer return true for instances of record types.
## 0.23 - December 1, 2020