home: hub: zuo

Download patch

ref: 0504c9d55828c1c1e4c34ec0867c9a987528f269
parent: 75381c30fbe9f71aebc53efe04b6778704b8285e
author: Matthew Flatt <mflatt@racket-lang.org>
date: Mon Dec 11 10:14:57 CST 2023

bump version to reflect `modulo` change

--- a/zuo-doc/lang-zuo-kernel.scrbl
+++ b/zuo-doc/lang-zuo-kernel.scrbl
@@ -109,3 +109,5 @@
   suspend-signal resume-signal
 
 ]
+
+@history[#:changed "1.9" @elem{Removed @racket[modulo] and added @racket[remainder].}]
--- a/zuo-doc/lang-zuo.scrbl
+++ b/zuo-doc/lang-zuo.scrbl
@@ -338,7 +338,10 @@
 Analogous to @realracket*[+ - * quotient remainder modulo = < <= > >=
 bitwise-ior bitwise-and bitwise-xor bitwise-not] from
 @racketmodname[racket], but on Zuo integers and sometimes constrained
-to two arguments.}
+to two arguments.
+
+@history[#:changed "1.9" @elem{Added @racket[remainder] and changed @racket[modulo]
+                               to match Racket.}]}
 
 
 @section{Pairs and Lists}
--- a/zuo.c
+++ b/zuo.c
@@ -3,7 +3,7 @@
    declarations. */
 
 #define ZUO_VERSION 1
-#define ZUO_MINOR_VERSION 8
+#define ZUO_MINOR_VERSION 9
 
 #if defined(_MSC_VER) || defined(__MINGW32__)
 # define ZUO_WINDOWS