mirror of
https://github.com/c-cube/tiny_httpd.git
synced 2025-12-06 11:15:35 -05:00
prepare for 0.16
This commit is contained in:
parent
bf1d6e5d43
commit
2576a63138
5 changed files with 10 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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. *)
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue