Skip to content

Commit 10ca7aa

Browse files
committed
Update changelog
1 parent 2f733a5 commit 10ca7aa

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.10.0
2+
3+
* Adapt to changes in async_kernel 0.16
4+
* Only support OCaml 4.14 or newer
5+
* Only support HTTP codec in the library
6+
17
# 0.9.4
28

39
* Allow setting an upper bound on buffer size.

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# [Shuttle_http](https://github.com/anuragsoni/shuttle/tree/main/http)
2-
31
Shuttle_http is a HTTP/1.1 implementation for OCaml that uses [async](https://opensource.janestreet.com/async/) to provide asynchronous servers and clients.
42

53
This is a relatively low-level library that attempts to provide building blocks for writing http servers and clients. The goal for this library is to be a building block for other libraries and applications.

dune-project

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@
55
(generate_opam_files true)
66

77
(source
8-
(github anuragsoni/shuttle))
8+
(github anuragsoni/shuttle_http))
99

1010
(maintainers "Anurag Soni <anurag@sonianurag.com>")
1111

1212
(authors "Anurag Soni")
1313

1414
(license MIT)
1515

16-
1716
(package
1817
(name shuttle_http)
1918
(tags

shuttle_http.opam

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ maintainer: ["Anurag Soni <anurag@sonianurag.com>"]
77
authors: ["Anurag Soni"]
88
license: "MIT"
99
tags: ["http-server" "http-client" "http" "http1.1" "async"]
10-
homepage: "https://github.com/anuragsoni/shuttle"
11-
bug-reports: "https://github.com/anuragsoni/shuttle/issues"
10+
homepage: "https://github.com/anuragsoni/shuttle_http"
11+
bug-reports: "https://github.com/anuragsoni/shuttle_http/issues"
1212
depends: [
1313
"dune" {>= "2.8"}
1414
"async" {>= "v0.16.0"}
@@ -21,7 +21,7 @@ depends: [
2121
"core_unix" {with-test}
2222
"odoc" {with-doc}
2323
]
24-
dev-repo: "git+https://github.com/anuragsoni/shuttle.git"
24+
dev-repo: "git+https://github.com/anuragsoni/shuttle_http.git"
2525
build: [
2626
["dune" "subst"] {dev}
2727
[

0 commit comments

Comments
 (0)