This commit is contained in:
Matthew Flatt 2010-10-27 23:39:54 -06:00
parent 38ead42fca
commit 89e8801a26
3 changed files with 876 additions and 877 deletions

View File

@ -1,7 +1,7 @@
GRacket, Racket, Drawing, and GUIs
----------------------------------
Version 5.5 includes two major changes to the Racket drawing and GUI
Version X.Y includes two major changes to the Racket drawing and GUI
API:
* The drawing portion of the GUI toolbox is now available as a

File diff suppressed because it is too large Load Diff

View File

@ -13,12 +13,12 @@
consistently.)
*/
#define MZSCHEME_VERSION "5.4.99.1"
#define MZSCHEME_VERSION "5.0.2.2"
#define MZSCHEME_VERSION_X 5
#define MZSCHEME_VERSION_Y 4
#define MZSCHEME_VERSION_Z 99
#define MZSCHEME_VERSION_W 1
#define MZSCHEME_VERSION_Y 0
#define MZSCHEME_VERSION_Z 2
#define MZSCHEME_VERSION_W 2
#define MZSCHEME_VERSION_MAJOR ((MZSCHEME_VERSION_X * 100) + MZSCHEME_VERSION_Y)
#define MZSCHEME_VERSION_MINOR ((MZSCHEME_VERSION_Z * 1000) + MZSCHEME_VERSION_W)