diff --git a/info.rkt b/info.rkt index 634028e..1176610 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 "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") diff --git a/make-planet-archive.sh b/make-planet-archive.sh index 7d7e5d1..acbaa78 100755 --- a/make-planet-archive.sh +++ b/make-planet-archive.sh @@ -1,6 +1,6 @@ #!/bin/bash MAJOR=1 -MINOR=9 +MINOR=10 PROJNAME=whalesong diff --git a/scribblings/manual.scrbl b/scribblings/manual.scrbl index 20c8c67..834b229 100644 --- a/scribblings/manual.scrbl +++ b/scribblings/manual.scrbl @@ -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, diff --git a/version.rkt b/version.rkt index b279385..865b3e0 100644 --- a/version.rkt +++ b/version.rkt @@ -7,4 +7,4 @@ (provide version) (: version String) -(define version "1.94") +(define version "1.96")