Skip to content

Commit 04e7060

Browse files
committed
prepare for 0.19
1 parent 12c9892 commit 04e7060

File tree

5 files changed

+23
-4
lines changed

5 files changed

+23
-4
lines changed

CHANGES.md

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

2+
## 0.19
3+
4+
- feat(headers): `set` will not reallocate whole list if not needed
5+
- feat(headers): use case insensitive comparison
6+
- fix(response): do not override "content-length" in raw response
7+
- feat pool: expose `acquire/release` for advanced uses
8+
9+
## 0.18
10+
11+
- feat: add ?head_middlewares to `create`
12+
- add content-type header for prometheus endpoint
13+
- new flag ?enable_logging to disable regular logs (not debug)
14+
- new sublibrary to deal with multipart-form-data
15+
- feat response: add `pp_with`; have `pp` hide set-cookie headers
16+
17+
- fix percent encoding for < 0x10 chars
18+
- Processing to fix incompatible -O and gcc flags
19+
- fix: make check for 'Connection: Upgrade' header case-insensitive
20+
221
## 0.17
322

423
- add optional middlewares to tiny_httpd_ws

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.18)
7+
(version 0.19)
88
(source (github c-cube/tiny_httpd))
99
(homepage https://github.com/c-cube/tiny_httpd/)
1010
(license MIT)

src/core/pool.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ val with_resource : 'a t -> ('a -> 'b) -> 'b
2727
(** Low level control over the pool.
2828
This is easier to get wrong (e.g. releasing the same resource twice)
2929
so use with caution.
30-
@since NEXT_RELEASE *)
30+
@since 0.18 *)
3131
module Raw : sig
3232
val acquire : 'a t -> 'a
3333
val release : 'a t -> 'a -> unit

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.18"
3+
version: "0.19"
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.18"
3+
version: "0.19"
44
synopsis: "Interface to camlzip for tiny_httpd"
55
maintainer: ["c-cube"]
66
authors: ["c-cube"]

0 commit comments

Comments
 (0)