Skip to content

Commit 995aee8

Browse files
committed
prepare for 0.4
1 parent b3f2544 commit 995aee8

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11

2+
## 0.4
3+
4+
- easy accessor to the query parameters in path
5+
- fix: header field names are case insensitive
6+
- doc: add note on jemalloc in the readme
7+
- log error when closing client socket
8+
29
## 0.3
310

411
- feat(http_of_dir): use `file` to guess mime type of file

src/Tiny_httpd.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ module Request : sig
235235

236236
val query : _ t -> (string*string) list
237237
(** Decode the query part of the {!path} field
238-
@since NEXT_RELEASE *)
238+
@since 0.4 *)
239239

240240
val body : 'b t -> 'b
241241
(** Request body, possibly empty. *)

src/Tiny_httpd_util.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ val percent_decode : string -> string option
1515

1616
val get_query : string -> string
1717
(** Obtain the query part of a path
18-
@since NEXT_RELEASE *)
18+
@since 0.4 *)
1919

2020
val parse_query : string -> ((string*string) list, string) result
2121
(** Parse a query as a list of ['&'] or [';'] separated [key=value] pairs.

tiny_httpd.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
opam-version: "2.0"
2-
version: "0.3"
2+
version: "0.4"
33
authors: ["Simon Cruanes"]
44
maintainer: "[email protected]"
55
license: "MIT"

0 commit comments

Comments
 (0)