This commit is contained in:
Danny Yoo 2011-12-08 17:37:22 -05:00
parent d94935b671
commit 3905f31cc7
5 changed files with 7 additions and 7 deletions

View File

@ -45,8 +45,8 @@ cs019-doc:
setup: setup:
raco setup --no-docs -P dyoo whalesong.plt 1 11 raco setup --no-docs -P dyoo whalesong.plt 1 12
planet-link: planet-link:
raco planet link dyoo whalesong.plt 1 11 . raco planet link dyoo whalesong.plt 1 12 .

View File

@ -2,8 +2,8 @@
(define name "Whalesong") (define name "Whalesong")
(define blurb '("A Racket to JavaScript compiler")) (define blurb '("A Racket to JavaScript compiler"))
(define release-notes '((p "Bug patch: under rare situations, the scheduler can incorrectly allow multiple computations to run. For now, Whalesong's will not release control to the browser during long-running computations. Program output may be a little bit more delayed as a result."))) (define release-notes '((p "Improving stack traces for the web-world view functions.")))
(define version "1.11") (define version "1.12")
(define categories '(devtools)) (define categories '(devtools))
(define repositories '("4.x")) (define repositories '("4.x"))
(define required-core-version "5.1.1") (define required-core-version "5.1.1")

View File

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

View File

@ -76,7 +76,7 @@ Run the following to create the @filepath{whalesong} launcher program in
your current directory. your current directory.
@codeblock|{ @codeblock|{
#lang racket/base #lang racket/base
(require (planet dyoo/whalesong:1:11/make-launcher)) (require (planet dyoo/whalesong:1:12/make-launcher))
}| }|
This may take a few minutes, as Racket is compiling Whalesong, its This may take a few minutes, as Racket is compiling Whalesong, its
dependencies, and its documentation. When it finally finishes, dependencies, and its documentation. When it finally finishes,

View File

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