updating docs, release notes for 1.16 release

This commit is contained in:
Danny Yoo 2012-03-26 17:23:48 -04:00
parent 28cec5de8e
commit 1a372980bc
3 changed files with 4 additions and 4 deletions

View File

@ -2,8 +2,8 @@
(define name "Whalesong")
(define blurb '("A Racket to JavaScript compiler"))
(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 release-notes '((p "The JavaScript FFI includes js-function->procedure and js-async-function->procedure to lift JavaScript functions to Racket. New world event types can be introduced with make-world-event-handler.")))
(define version "1.16")
(define primary-file "make-launcher.rkt")
(define categories '(devtools))
(define repositories '("4.x"))

View File

@ -1,6 +1,6 @@
#!/bin/bash
MAJOR=1
MINOR=15
MINOR=16
PROJNAME=whalesong

View File

@ -240,7 +240,7 @@ If you want to use Whalesong, run the following to create
the @filepath{whalesong} launcher:
@codeblock|{
#lang racket/base
(require (planet dyoo/whalesong:1:15/make-launcher))
(require (planet dyoo/whalesong:1:16/make-launcher))
}|
This may take a few minutes, as Racket is compiling Whalesong, its
dependencies, and its documentation. When it finally finishes,