bump version

This commit is contained in:
Ryan Culpepper 2018-04-06 22:40:57 +02:00
parent 84ca256029
commit 7f12dc567c
3 changed files with 5 additions and 5 deletions

View File

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

View File

@ -447,7 +447,7 @@ abbreviated as @racket[#'template]; see also
variables, then @racket[#'template] is equivalent to variables, then @racket[#'template] is equivalent to
@racket[(quote-syntax template)]. @racket[(quote-syntax template)].
@history[#:changed "6.90.0.24" @elem{Added @racket[~@] and @racket[~?].}] @history[#:changed "6.90.0.25" @elem{Added @racket[~@] and @racket[~?].}]
} }
@ -577,7 +577,7 @@ The @racket[~?] and @racket[~@] transformer bindings prohibit these forms from
being used as an expression. The bindings are useful only in syntax templates. being used as an expression. The bindings are useful only in syntax templates.
See @racket[syntax]. See @racket[syntax].
@history[#:added "6.90.0.24"]} @history[#:added "6.90.0.25"]}
@defproc[(syntax-pattern-variable? [v any/c]) boolean?]{ @defproc[(syntax-pattern-variable? [v any/c]) boolean?]{

View File

@ -13,12 +13,12 @@
consistently.) consistently.)
*/ */
#define MZSCHEME_VERSION "6.90.0.24" #define MZSCHEME_VERSION "6.90.0.25"
#define MZSCHEME_VERSION_X 6 #define MZSCHEME_VERSION_X 6
#define MZSCHEME_VERSION_Y 90 #define MZSCHEME_VERSION_Y 90
#define MZSCHEME_VERSION_Z 0 #define MZSCHEME_VERSION_Z 0
#define MZSCHEME_VERSION_W 24 #define MZSCHEME_VERSION_W 25
#define MZSCHEME_VERSION_MAJOR ((MZSCHEME_VERSION_X * 100) + MZSCHEME_VERSION_Y) #define MZSCHEME_VERSION_MAJOR ((MZSCHEME_VERSION_X * 100) + MZSCHEME_VERSION_Y)
#define MZSCHEME_VERSION_MINOR ((MZSCHEME_VERSION_Z * 1000) + MZSCHEME_VERSION_W) #define MZSCHEME_VERSION_MINOR ((MZSCHEME_VERSION_Z * 1000) + MZSCHEME_VERSION_W)