bumping version to 21.

This commit is contained in:
Danny Yoo 2013-01-30 15:41:07 -07:00
parent 68f76395e9
commit cb95d79d34
4 changed files with 5 additions and 5 deletions

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 "Preliminary support for Racket 5.3.1"))) (define release-notes '((p "Bug fixes.")))
(define version "1.20") (define version "1.21")
(define primary-file "make-launcher.rkt") (define primary-file "make-launcher.rkt")
(define categories '(devtools)) (define categories '(devtools))
(define repositories '("4.x")) (define repositories '("4.x"))

View File

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

View File

@ -259,7 +259,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:20/make-launcher)) (require (planet dyoo/whalesong:1:21/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

View File

@ -7,4 +7,4 @@
(provide version) (provide version)
(: version String) (: version String)
(define version "1.239") (define version "1.240")