prepare for 0.4

This commit is contained in:
Simon Cruanes 2020-02-08 09:38:15 -06:00
parent b3f254446d
commit 995aee8489
4 changed files with 10 additions and 3 deletions

View file

@ -1,4 +1,11 @@
## 0.4
- easy accessor to the query parameters in path
- fix: header field names are case insensitive
- doc: add note on jemalloc in the readme
- log error when closing client socket
## 0.3
- feat(http_of_dir): use `file` to guess mime type of file

View file

@ -235,7 +235,7 @@ module Request : sig
val query : _ t -> (string*string) list
(** Decode the query part of the {!path} field
@since NEXT_RELEASE *)
@since 0.4 *)
val body : 'b t -> 'b
(** Request body, possibly empty. *)

View file

@ -15,7 +15,7 @@ val percent_decode : string -> string option
val get_query : string -> string
(** Obtain the query part of a path
@since NEXT_RELEASE *)
@since 0.4 *)
val parse_query : string -> ((string*string) list, string) result
(** Parse a query as a list of ['&'] or [';'] separated [key=value] pairs.

View file

@ -1,5 +1,5 @@
opam-version: "2.0"
version: "0.3"
version: "0.4"
authors: ["Simon Cruanes"]
maintainer: "simon.cruanes.2007@m4x.org"
license: "MIT"