File tree Expand file tree Collapse file tree 5 files changed +22
-6
lines changed Expand file tree Collapse file tree 5 files changed +22
-6
lines changed Original file line number Diff line number Diff line change 11
2+ ## 0.15
3+
4+ - fix: do not block in ` accept ` , enabling more graceful shutdown
5+ - improve help message for tiny-httpd-vfs-pack
6+ - security: zero out buffers from pool before reusing them
7+
28## 0.14
39
410- breaking: ` set_top_handler ` takes a stream request, for more generality
Original file line number Diff line number Diff line change 22(name tiny_httpd)
33( generate_opam_files true )
44
5- ( version 0 .14)
5+ ( authors c-cube)
6+ ( maintainers c-cube)
7+ ( version 0 .15)
68( source ( github c-cube/tiny_httpd) )
79( homepage https://github.com/c-cube/tiny_httpd/)
810( license MIT)
1315 ( tags ( http thread server tiny_httpd http_of_dir simplehttpserver) )
1416 ( depends
1517 seq
18+ base-threads
19+ result
1620 ( ocaml ( >= 4 .05) )
1721 ( odoc :with -doc)
1822 ( conf-libcurl :with -test)
2327 (name tiny_httpd_camlzip)
2428 (synopsis " Interface to camlzip for tiny_httpd" )
2529 ( depends
26- ( tiny_httpd_camlzip ( = :version ) )
30+ ( tiny_httpd ( = :version ) )
2731 ( camlzip ( >= 1 .06) )
2832 ( odoc :with -doc) ) )
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ val contents : t -> string
1515
1616val clear_and_zero : t -> unit
1717(* * Clear the buffer and zero out its storage.
18- @since NEXT_RELEASE *)
18+ @since 0.15 *)
1919
2020val bytes_slice : t -> bytes
2121(* * Access underlying slice of bytes.
Original file line number Diff line number Diff line change 11# This file is generated by dune, edit dune-project instead
22opam-version: "2.0"
3- version: "0.14 "
3+ version: "0.15 "
44synopsis: "Minimal HTTP server using threads"
5+ maintainer: ["c-cube"]
6+ authors: ["c-cube"]
57license: "MIT"
68tags: [
79 "http" "thread" "server" "tiny_httpd" "http_of_dir" "simplehttpserver"
@@ -11,6 +13,8 @@ bug-reports: "https://github.com/c-cube/tiny_httpd/issues"
1113depends: [
1214 "dune" {>= "2.9"}
1315 "seq"
16+ "base-threads"
17+ "result"
1418 "ocaml" {>= "4.05"}
1519 "odoc" {with-doc}
1620 "conf-libcurl" {with-test}
Original file line number Diff line number Diff line change 11# This file is generated by dune, edit dune-project instead
22opam-version: "2.0"
3- version: "0.14 "
3+ version: "0.15 "
44synopsis: "Interface to camlzip for tiny_httpd"
5+ maintainer: ["c-cube"]
6+ authors: ["c-cube"]
57license: "MIT"
68homepage: "https://github.com/c-cube/tiny_httpd/"
79bug-reports: "https://github.com/c-cube/tiny_httpd/issues"
810depends: [
911 "dune" {>= "2.9"}
10- "tiny_httpd_camlzip " {= version}
12+ "tiny_httpd " {= version}
1113 "camlzip" {>= "1.06"}
1214 "odoc" {with-doc}
1315]
You can’t perform that action at this time.
0 commit comments