bumping up to version 1.10
This commit is contained in:
parent
850a621260
commit
f7774abf4e
4
info.rkt
4
info.rkt
|
@ -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 "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 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.9")
|
(define version "1.10")
|
||||||
(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")
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
MAJOR=1
|
MAJOR=1
|
||||||
MINOR=9
|
MINOR=10
|
||||||
PROJNAME=whalesong
|
PROJNAME=whalesong
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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:9/make-launcher))
|
(require (planet dyoo/whalesong:1:10/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,
|
||||||
|
|
|
@ -7,4 +7,4 @@
|
||||||
(provide version)
|
(provide version)
|
||||||
(: version String)
|
(: version String)
|
||||||
|
|
||||||
(define version "1.94")
|
(define version "1.96")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user