prepare for 0.16

This commit is contained in:
Simon Cruanes 2024-01-21 21:24:34 -05:00
parent bf1d6e5d43
commit 2576a63138
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
5 changed files with 10 additions and 4 deletions

View file

@ -1,4 +1,10 @@
## 0.16
- feat: add `Request.client_addr` accessor
- feat: add `tiny_httpd.prometheus`, a simple sub-library
to expose [prometheus](https://prometheus.io) metrics over HTTP.
## 0.15
- fix: do not block in `accept`, enabling more graceful shutdown

View file

@ -4,7 +4,7 @@
(authors c-cube)
(maintainers c-cube)
(version 0.15)
(version 0.16)
(source (github c-cube/tiny_httpd))
(homepage https://github.com/c-cube/tiny_httpd/)
(license MIT)

View file

@ -129,7 +129,7 @@ module Request : sig
val client_addr : _ t -> Unix.sockaddr
(** Client address of the request.
@since NEXT_RELEASE *)
@since 0.16 *)
val meth : _ t -> Meth.t
(** Method for the request. *)

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.15"
version: "0.16"
synopsis: "Minimal HTTP server using threads"
maintainer: ["c-cube"]
authors: ["c-cube"]

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.15"
version: "0.16"
synopsis: "Interface to camlzip for tiny_httpd"
maintainer: ["c-cube"]
authors: ["c-cube"]