diff --git a/pkgs/racket-doc/scribblings/reference/networking.scrbl b/pkgs/racket-doc/scribblings/reference/networking.scrbl index 2fb05d19b2..b1d80c43cd 100644 --- a/pkgs/racket-doc/scribblings/reference/networking.scrbl +++ b/pkgs/racket-doc/scribblings/reference/networking.scrbl @@ -257,10 +257,14 @@ port returned by @racket[tcp-accept], @racket[tcp-connect], @defthing[port-number? contract?]{ Equivalent to @racket[(between/c 1 65535)]. + +@history[#:added "6.3"]{} } @defthing[listen-port-number? contract?]{ Equivalent to @racket[(between/c 0 65535)]. + +@history[#:added "6.3"]{} } @;------------------------------------------------------------------------ diff --git a/pkgs/racket-doc/scribblings/reference/pairs.scrbl b/pkgs/racket-doc/scribblings/reference/pairs.scrbl index c91662540e..88b87c44f2 100644 --- a/pkgs/racket-doc/scribblings/reference/pairs.scrbl +++ b/pkgs/racket-doc/scribblings/reference/pairs.scrbl @@ -875,7 +875,9 @@ Returns a list that is the same as @racket[lst] except at the specified index. The element at the specified index is @racket[(updater (list-ref lst pos))]. @examples[#:eval list-eval -(list-update '(zero one two) 1 symbol->string)]} +(list-update '(zero one two) 1 symbol->string)] +@history[#:added "6.3"]{} +} @defproc[(list-set [lst list?] [pos (and/c (>=/c 0) (list [v any/c] @@ -671,6 +673,8 @@ the inaccessible fields are omitted from the list. (struct->list 'not-a-struct #:on-opaque 'return-false) (struct->list 'not-a-struct #:on-opaque 'skip) ] + +@history[#:added "6.3"]{} } @;------------------------------------------------------------------------ diff --git a/pkgs/racket-doc/syntax/scribblings/macro-testing.scrbl b/pkgs/racket-doc/syntax/scribblings/macro-testing.scrbl index 3665dcc6d6..4630c68ac2 100644 --- a/pkgs/racket-doc/syntax/scribblings/macro-testing.scrbl +++ b/pkgs/racket-doc/syntax/scribblings/macro-testing.scrbl @@ -33,6 +33,8 @@ converted to a run-time exception. (phase1-eval (extract-struct-info (syntax-local-value #'point)) #:quote quote-syntax) ] + +@history[#:added "6.3"]{} } @defform[(convert-compile-time-error expr)]{ @@ -54,6 +56,8 @@ compile-time error checking like syntax errors: Without the use of @racket[convert-compile-time-error], the checks above would not be executed because the test program would not compile. + +@history[#:added "6.3"]{} } @defform[(convert-syntax-error expr)]{ diff --git a/pkgs/racket-doc/syntax/scribblings/srcloc.scrbl b/pkgs/racket-doc/syntax/scribblings/srcloc.scrbl index ae46c1f68b..97b0c5e229 100644 --- a/pkgs/racket-doc/syntax/scribblings/srcloc.scrbl +++ b/pkgs/racket-doc/syntax/scribblings/srcloc.scrbl @@ -244,6 +244,8 @@ with a path. (syntax-source-directory stx2) (syntax-source-directory stx2) ] + +@history[#:added "6.3"]{} } @subsection{Quoting} diff --git a/pkgs/racket-doc/syntax/scribblings/transformer.scrbl b/pkgs/racket-doc/syntax/scribblings/transformer.scrbl index b673c605aa..9ef434e937 100644 --- a/pkgs/racket-doc/syntax/scribblings/transformer.scrbl +++ b/pkgs/racket-doc/syntax/scribblings/transformer.scrbl @@ -34,6 +34,7 @@ considered immutable and a syntax error is raised. op ] +@history[#:added "6.3"]{} } @close-eval[the-eval]