From 3b07160049e4a0589aee6514a0a7033bc7d7825e Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Thu, 15 Sep 2011 17:49:55 -0400 Subject: [PATCH] releasing new planet package --- info.rkt | 4 ++-- scribblings/manual.scrbl | 28 +++++++++++++++++++--------- 2 files changed, 21 insertions(+), 11 deletions(-) diff --git a/info.rkt b/info.rkt index 3d1dacb..7be54da 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 "A not-even-alpha release; please don't use this unless you expect sharp edges..."))) -(define version "0.03") +(define release-notes '((p "Starting to stabilize. Fixed several browser compatiblity issues, reduced size of .js files, and added more features to the web-world library"))) +(define version "0.04") (define categories '(devtools)) (define repositories '("4.x")) (define required-core-version "5.1.1") diff --git a/scribblings/manual.scrbl b/scribblings/manual.scrbl index 83a3e3f..8ef7f02 100644 --- a/scribblings/manual.scrbl +++ b/scribblings/manual.scrbl @@ -195,13 +195,23 @@ Pacman.} At the time of this writing, although Whalesong has been deployed to @link["http://planet.racket-lang.org"]{PLaneT}, the version on PLaneT -is out of date. I'll be updating the PLaneT package as soon as -Whalesong starts to stabilize, but the system as a whole is still in -some flux. +is probably a little out of date. -You may want to get the latest sources instead of using the version on -PLaneT. Doing so requires doing a little bit of manual work. The -steps are: +If you want to use Whalesong off of PLaneT, run the following to create +the @filepath{whalesong} launcher: +@codeblock|{ +#lang racket/base +(require (planet dyoo/whalesong:1:3/make-launcher)) +}| +This will create a @filepath{whalesong} launcher in the current directory. + + + + +@subsection{Installing Whalesong from github} + +Otherwise, you can download the sources from the github repository. +Doing so requires doing a little bit of manual work. The steps are: @itemlist[ @item{Check Whalesong out of Github.} @@ -220,9 +230,9 @@ Next, let's set up a @link["http://docs.racket-lang.org/planet/Developing_Packag parent directory that contains the @filepath{whalesong} repository, and then run this on your command line: @verbatim|{ -$ planet link dyoo whalesong.plt 1 0 whalesong +$ planet link dyoo whalesong.plt 1 4 whalesong }| -(You may need to adjust the @tt{1} and @tt{0} major/minor numbers a bit to be larger +(You may need to adjust the @tt{1} and @tt{4} major/minor numbers a bit to be larger than the latest version that's on PLaneT at the time.) @@ -238,7 +248,7 @@ Finally, we need to set up Whalesong with @tt{raco setup}. Here's how to do this at the command line: @verbatim|{ -$ raco setup -P dyoo whalesong.plt 1 0 +$ raco setup -P dyoo whalesong.plt 1 4 }| This should compile Whalesong. Any time the source code in @filepath{whalesong} changes, we should repeat this @tt{raco setup}