bump version to sync with Chez Scheme change

A more compact representation for return points tends to reduce code
by about 10%. For DrRacket, that translates to a 5% decrease in
overall footprint.
This commit is contained in:
Matthew Flatt 2020-01-24 17:26:13 -07:00
parent dc2aa03e4e
commit 7c06d6d4ab
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@
(define collection 'multi)
(define version "7.6.0.5")
(define version "7.6.0.6")
(define deps `("racket-lib"
["racket" #:version ,version]))

View File

@ -2,7 +2,7 @@
;; Check to make we're using a build of Chez Scheme
;; that has all the features we need.
(define-values (need-maj need-min need-sub need-dev)
(values 9 5 3 14))
(values 9 5 3 15))
(unless (guard (x [else #f]) (eval 'scheme-fork-version-number))
(error 'compile-file

View File

@ -16,7 +16,7 @@
#define MZSCHEME_VERSION_X 7
#define MZSCHEME_VERSION_Y 6
#define MZSCHEME_VERSION_Z 0
#define MZSCHEME_VERSION_W 5
#define MZSCHEME_VERSION_W 6
/* A level of indirection makes `#` work as needed: */
#define AS_a_STR_HELPER(x) #x