mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-12 23:37:38 +02:00
Update version number, stage 0.28.0 release notes
This commit is contained in:
parent
8f9698b1fc
commit
9500879977
2 changed files with 7 additions and 3 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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* ""))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue