Update version number, stage 0.28.0 release notes

This commit is contained in:
Justin Ethier 2021-03-18 14:03:50 -04:00
parent 8f9698b1fc
commit 9500879977
2 changed files with 7 additions and 3 deletions

View file

@ -1,10 +1,14 @@
# Changelog # Changelog
## 0.28 - TBD ## 0.28.0 - TBD
Features Features
- (allow an unlimited number of function arguments) - Updated the compiler and runtime to allow a (practically) unlimited number of function arguments. This involved changing the calling conventions of our generated C code and runtime functions, but is transparent to application developers. Program should continue to work without requiring modifications, though it may be necessary to update `define-c` definitions if there are unused parameters.
TODO: example of the above fix
- Modifying version numbers going forward to use explicit three digit semantic versioning `major.minor.bugfix`.
Bug Fixes Bug Fixes

View file

@ -18,7 +18,7 @@
memloc memloc
) )
(begin (begin
(define *version-number* "0.28") (define *version-number* "0.28.0")
(define *version-name* "") (define *version-name* "")
(define *version* (string-append *version-number* " " *version-name* "")) (define *version* (string-append *version-number* " " *version-name* ""))