mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Bump to v0.3
This commit is contained in:
parent
e719eaeeb3
commit
e29f3c6e65
2 changed files with 5 additions and 3 deletions
|
@ -1,13 +1,15 @@
|
|||
# Next Release (tentatively 0.2.1) - Date TBD
|
||||
# Next Release (tentatively 0.3.1) - Date TBD
|
||||
|
||||
TODO: performance improvements
|
||||
need to improve both runtime speed and compiler optimizations
|
||||
TODO: SRFI 113
|
||||
|
||||
# Upcoming Release (tentatively 0.3) - Date TBD
|
||||
|
||||
Features:
|
||||
|
||||
- Improve performance by inlining numeric arithmetic and comparison operations.
|
||||
- Revert `assq`, `assv`, `memq`, and `memv` back to primitives for improved performance.
|
||||
- Reverted `assq`, `assv`, `memq`, and `memv` back to primitives for improved performance. In addition the compiler was modified to allow for more efficient compilation of `assoc` and `member`.
|
||||
- Added support for SRFI 106: a basic socket interface, and SRFI 128: Comparators.
|
||||
- Improved library support to recognize all of the import set forms: `only`, `except`, `prefix`, and `rename`.
|
||||
- Allow explicit renaming macros to be declared interactively. This is the first limited support for calling `define-syntax` from `eval`.
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
*version-banner*
|
||||
*c-file-header-comment*)
|
||||
(begin
|
||||
(define *version-number* "0.2.1")
|
||||
(define *version-number* "0.3")
|
||||
(define *version-name* "beta")
|
||||
(define *version* (string-append *version-number* " (" *version-name* ")"))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue