Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.18.1

* Add an upper bound for Cohttp. Opium is only compatible with Cohttp < 3.0.

# 0.18.0

* Make examples easier to find and add documentation related to features used in them. (#125, @shonfeder)
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Opium
=====

**Warning:** This branch is for the Cohttp version of Opium. It is in maintenance mode and every new feature will be added in the Httpaf-based version of Opium (version 0.19.0 and above).

## Executive Summary

Sinatra like web toolkit for OCaml based on [cohttp](https://github.com/mirage/ocaml-cohttp/) & [lwt](https://github.com/ocsigen/lwt)
Expand Down
6 changes: 3 additions & 3 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
(dune
(>= 1.11))
hmap
cohttp
cohttp-lwt
(cohttp (< 3.0))
(cohttp-lwt (< 3.0))
lwt
fieldslib
sexplib
Expand All @@ -49,7 +49,7 @@
(dune
(>= 1.11))
opium_kernel
cohttp-lwt-unix
(cohttp-lwt-unix (< 3.0))
ezjsonm
lwt
logs
Expand Down
2 changes: 1 addition & 1 deletion opium.opam
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ depends: [
"ocaml" {>= "4.04.1"}
"dune" {>= "1.11"}
"opium_kernel"
"cohttp-lwt-unix"
"cohttp-lwt-unix" {< "3.0"}
"ezjsonm"
"lwt"
"logs"
Expand Down
4 changes: 2 additions & 2 deletions opium_kernel.opam
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ depends: [
"ocaml" {>= "4.04.1"}
"dune" {>= "1.11"}
"hmap"
"cohttp"
"cohttp-lwt"
"cohttp" {< "3.0"}
"cohttp-lwt" {< "3.0"}
"lwt"
"fieldslib"
"sexplib"
Expand Down