bumping up to version 1.10

This commit is contained in:
Danny Yoo 2011-12-01 00:12:12 -05:00
parent 850a621260
commit f7774abf4e
4 changed files with 5 additions and 5 deletions

View File

@ -2,8 +2,8 @@
(define name "Whalesong")
(define blurb '("A Racket to JavaScript compiler"))
(define release-notes '((p "Added view-has-attr? and remove-view-attr. Added example with checkboxes. Improved compatibility with web-world and the Android web browser: external css style sheets should now work. Miscellaneous bug fixes.")))
(define version "1.9")
(define release-notes '((p "Identified an issue with the inliner that causes generated code to be much larger than expected. Inlining is now off until I identify ths issue.")))
(define version "1.10")
(define categories '(devtools))
(define repositories '("4.x"))
(define required-core-version "5.1.1")

View File

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

View File

@ -214,7 +214,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:9/make-launcher))
(require (planet dyoo/whalesong:1:10/make-launcher))
}|
This may take a few minutes, as Racket is compiling Whalesong, its
dependencies, and its documentation. When it finally finishes,

View File

@ -7,4 +7,4 @@
(provide version)
(: version String)
(define version "1.94")
(define version "1.96")