adding notes

This commit is contained in:
Danny Yoo 2012-02-16 23:04:29 -05:00
parent 28523b51d0
commit faf04792a2
3 changed files with 5 additions and 5 deletions

View File

@ -2,8 +2,8 @@
(define name "Whalesong")
(define blurb '("A Racket to JavaScript compiler"))
(define release-notes '((p "Bug fix: corrected issue 73 and 74. (https://github.com/dyoo/whalesong/issues/73). Some micro-optimizations to improve speed of struct construction.")))
(define version "1.14")
(define release-notes '((p "Corrected list? to be amortized constant time. Implemented bug fixes for issues 79 (view-bind-many), 80 (docs for view-bind-many*), 81 (with-cont-mark). Optimized to reduce some superfluous object allocations.")))
(define version "1.15")
(define primary-file "make-launcher.rkt")
(define categories '(devtools))
(define repositories '("4.x"))

View File

@ -156,8 +156,8 @@ the text content of an element.
@item{@link["http://hashcollision.org/whalesong/examples/phases/phases.html"]{phases.html}
[@link["http://hashcollision.org/whalesong/examples/phases/phases.rkt"]{src}
@link["http://hashcollision.org/whalesong/examples/phases/index1.html"]{index1.html}
@link["http://hashcollision.org/whalesong/examples/phases/index2.html"]{index2.html}]
@link["http://hashcollision.org/whalesong/examples/phases/view1.html"]{view1.html}
@link["http://hashcollision.org/whalesong/examples/phases/view2.html"]{view2.html}]
Switches out one view entirely in place of another. Different views can correspond to phases in a program.
}

View File

@ -7,4 +7,4 @@
(provide version)
(: version String)
(define version "1.146")
(define version "1.147")