@@ -68,7 +68,7 @@ module Request : sig
6868 host : string ;
6969 (* * Host header, mandatory. It can also be found in {!headers}. *)
7070 client_addr : Unix .sockaddr ;
71- (* * Client address. Available since NEXT_RELEASE . *)
71+ (* * Client address. Available since 0.14 . *)
7272 headers : Headers .t ; (* * List of headers. *)
7373 http_version : int * int ;
7474 (* * HTTP version. This should be either [1, 0] or [1, 1]. *)
@@ -155,7 +155,7 @@ module Request : sig
155155 (* * Read the whole body into a string. Potentially blocking.
156156
157157 @param buf_size initial size of underlying buffer (since 0.11)
158- @param buf the initial buffer (since NEXT_RELEASE )
158+ @param buf the initial buffer (since 0.14 )
159159 *)
160160
161161 (* */**)
@@ -213,7 +213,7 @@ module Response : sig
213213 - [`Void] replies with no body.
214214 - [`Writer w] replies with a body created by the writer [w], using
215215 a chunked encoding.
216- It is available since NEXT_RELEASE .
216+ It is available since 0.14 .
217217 *)
218218
219219 type t = private {
@@ -477,7 +477,7 @@ val create_from :
477477 @param buf_size size for buffers (since 0.11)
478478 @param middlewares see {!add_middleware} for more details.
479479
480- @since NEXT_RELEASE
480+ @since 0.14
481481*)
482482
483483val addr : t -> string
@@ -540,7 +540,7 @@ val set_top_handler : t -> (byte_stream Request.t -> Response.t) -> unit
540540 If no top handler is installed, unhandled paths will return a [404] not found
541541
542542 This used to take a [string Request.t] but it now takes a [byte_stream Request.t]
543- since NEXT_RELEASE . Use {!Request.read_body_full} to read the body into
543+ since 0.14 . Use {!Request.read_body_full} to read the body into
544544 a string if needed.
545545*)
546546
@@ -642,7 +642,7 @@ val add_route_server_sent_handler :
642642
643643val running : t -> bool
644644(* * Is the server running?
645- @since NEXT_RELEASE *)
645+ @since 0.14 *)
646646
647647val stop : t -> unit
648648(* * Ask the server to stop. This might not have an immediate effect
@@ -662,7 +662,7 @@ val run : ?after_init:(unit -> unit) -> t -> (unit, exn) result
662662val run_exn : ?after_init : (unit -> unit ) -> t -> unit
663663(* * [run_exn s] is like [run s] but re-raises an exception if the server exits
664664 with an error.
665- @since NEXT_RELEASE *)
665+ @since 0.14 *)
666666
667667(* */**)
668668
0 commit comments