Skip to content

Commit f6daff2

Browse files
committed
prepare for 0.18
1 parent 3c9e505 commit f6daff2

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
(authors c-cube)
66
(maintainers c-cube)
7-
(version 0.17)
7+
(version 0.18)
88
(source (github c-cube/tiny_httpd))
99
(homepage https://github.com/c-cube/tiny_httpd/)
1010
(license MIT)

src/Tiny_httpd.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ val create :
170170
used instead of the [addr] and [port]. If not passed in, those will be
171171
used. This parameter exists since 0.10.
172172
@param enable_logging if true and [Logs] is installed, log requests. Default true.
173-
This parameter exists since NEXT_RELEASE. Does not affect debug-level logs.
173+
This parameter exists since 0.18. Does not affect debug-level logs.
174174
175175
@param get_time_s obtain the current timestamp in seconds.
176176
This parameter exists since 0.11.

src/core/log.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ val dummy : bool
1414
val fully_disable : unit -> unit
1515
(** Totally silence logs for tiny_httpd. With [Logs] installed this means setting
1616
the level of the tiny_httpd source to [None].
17-
@since NEXT_RELEASE *)
17+
@since 0.18 *)

src/core/response.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ val pp_with :
126126
Default is ["set-cookie"].
127127
@param pp_body body printer
128128
(default fully prints String bodies, but omits stream bodies)
129-
@since NEXT_RELEASE *)
129+
@since 0.18 *)
130130

131131
val pp : Format.formatter -> t -> unit
132132
(** Pretty print the response. The exact format is not specified. *)

src/core/server.mli

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ val create_from :
9595
{!set_top_handler} to specify how to handle incoming requests.
9696
9797
@param buf_size size for buffers (since 0.11)
98-
@param head_middlewares see {!add_head_middleware} for details (since NEXT_RELEASE)
98+
@param head_middlewares see {!add_head_middleware} for details (since 0.18)
9999
@param middlewares see {!add_middleware} for more details.
100100
@param enable_logging if true and [Logs] is installed,
101-
emit logs via Logs (since NEXT_RELEASE).
101+
emit logs via Logs (since 0.18).
102102
Default [true].
103103
104104
@since 0.14
@@ -158,7 +158,7 @@ val add_head_middleware : t -> Head_middleware.t -> unit
158158
(** Add a request-header only {!Head_middleware.t}.
159159
This is called on requests, to modify them, and returns a new request
160160
immediately.
161-
@since NEXT_RELEASE *)
161+
@since 0.18 *)
162162

163163
(** {2 Request handlers} *)
164164

tiny_httpd.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3-
version: "0.17"
3+
version: "0.18"
44
synopsis: "Minimal HTTP server using threads"
55
maintainer: ["c-cube"]
66
authors: ["c-cube"]

tiny_httpd_camlzip.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3-
version: "0.17"
3+
version: "0.18"
44
synopsis: "Interface to camlzip for tiny_httpd"
55
maintainer: ["c-cube"]
66
authors: ["c-cube"]

0 commit comments

Comments
 (0)