From 1a372980bcad621f040e4e6853dad39db6a6bf24 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Mon, 26 Mar 2012 17:23:48 -0400 Subject: [PATCH] updating docs, release notes for 1.16 release --- info.rkt | 4 ++-- make-planet-archive.sh | 2 +- scribblings/manual.scrbl | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/info.rkt b/info.rkt index 1c5844a..217c40d 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 "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")) diff --git a/make-planet-archive.sh b/make-planet-archive.sh index 1b77efa..678c658 100755 --- a/make-planet-archive.sh +++ b/make-planet-archive.sh @@ -1,6 +1,6 @@ #!/bin/bash MAJOR=1 -MINOR=15 +MINOR=16 PROJNAME=whalesong diff --git a/scribblings/manual.scrbl b/scribblings/manual.scrbl index 15808da..9e832c7 100644 --- a/scribblings/manual.scrbl +++ b/scribblings/manual.scrbl @@ -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,