diff --git a/info.rkt b/info.rkt index d376819..1c5844a 100644 --- a/info.rkt +++ b/info.rkt @@ -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")) diff --git a/scribblings/manual.scrbl b/scribblings/manual.scrbl index 601bda9..b90c366 100644 --- a/scribblings/manual.scrbl +++ b/scribblings/manual.scrbl @@ -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. } diff --git a/version.rkt b/version.rkt index e28dfd2..93e3fd4 100644 --- a/version.rkt +++ b/version.rkt @@ -7,4 +7,4 @@ (provide version) (: version String) -(define version "1.146") +(define version "1.147")