Skip to content

Commit 49e991b

Browse files
committed
administrativia
1 parent 341f840 commit 49e991b

6 files changed

+32
-16
lines changed

.travis.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: c
2+
sudo: required
3+
install: test -e .travis.opam.sh || wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-opam.sh
4+
script:
5+
- bash -ex .travis-opam.sh
6+
env:
7+
matrix:
8+
- OCAML_VERSION="4.09" PACKAGE="websocket"
9+
- OCAML_VERSION="4.09" PACKAGE="websocket-lwt-unix"
10+
- OCAML_VERSION="4.09" PACKAGE="websocket-async"
11+
os:
12+
- linux

CHANGES

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2.14 (2020-03-5) Paris
2+
----------------------
3+
4+
- bugfix: cohttp_lwt: call conn_closed on fd close (@NightBlues)
5+
- fix compilation with newer async (@copy)
6+
- fix compilation with newer conduit (@tizoc)
7+
18
2.13 (2019-03-17)
29
-----------------
310

dune-project

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
(lang dune 1.1)
2+
(name websocket)

websocket-async.opam

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
opam-version: "2.0"
2-
name: "websocket-async"
3-
version: "2.13"
42
authors: "Vincent Bernardoff <[email protected]>"
53
maintainer: "Vincent Bernardoff <[email protected]>"
64
homepage: "https://github.com/vbmithr/ocaml-websocket"
@@ -14,10 +12,12 @@ tags: [
1412
build: [ "dune" "build" "-j" jobs "-p" name ]
1513
depends: [
1614
"ocaml" {>= "4.06.0"}
17-
"dune" {build & >= "1.1.1"}
15+
"dune" {>= "1.3.0"}
1816
"websocket" {= version}
19-
"cohttp-async" {>= "1.1.1"}
20-
"logs-async" {>= "1.0"}
17+
"core" {>= "v0.13.0"}
18+
"async" {>= "v0.13.0"}
19+
"cohttp-async" {>= "2.5.1"}
20+
"logs-async" {>= "1.1"}
2121
"logs-async-reporter" {>= "1.0"}
2222
]
2323
synopsis: "Websocket library (Async)"

websocket-lwt-unix.opam

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
opam-version: "2.0"
2-
name: "websocket-lwt-unix"
3-
version: "2.13"
42
authors: "Vincent Bernardoff <[email protected]>"
53
maintainer: "Vincent Bernardoff <[email protected]>"
64
homepage: "https://github.com/vbmithr/ocaml-websocket"
@@ -14,10 +12,10 @@ tags: [
1412
build: [ "dune" "build" "-j" jobs "-p" name ]
1513
depends: [
1614
"ocaml" {>= "4.06.0"}
17-
"dune" {build & >= "1.1.1"}
15+
"dune" {>= "1.3.0"}
1816
"websocket" {= version}
19-
"lwt_log" {>= "1.1.0"}
20-
"cohttp-lwt-unix" {>= "1.0.2"}
17+
"lwt_log" {>= "1.1.1"}
18+
"cohttp-lwt-unix" {>= "2.5.1"}
2119
]
2220
synopsis: "Websocket library (Lwt)"
2321
description: """

websocket.opam

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
opam-version: "2.0"
2-
name: "websocket"
3-
version: "2.13"
42
authors: "Vincent Bernardoff <[email protected]>"
53
maintainer: "Vincent Bernardoff <[email protected]>"
64
homepage: "https://github.com/vbmithr/ocaml-websocket"
@@ -14,10 +12,10 @@ tags: [
1412
build: [ "dune" "build" "-j" jobs "-p" name ]
1513
depends: [
1614
"ocaml" {>= "4.06.0"}
17-
"dune" {build & >= "1.3.0"}
18-
"base64" {>= "3.1.0"}
19-
"conduit" {>= "1.1.0"}
20-
"cohttp" {>= "1.1.0"}
15+
"dune" {>= "1.3.0"}
16+
"base64" {>= "3.3.0"}
17+
"conduit" {>= "2.0.2"}
18+
"cohttp" {>= "2.5.1"}
2119
"ocplib-endian" {>= "1.0"}
2220
"astring" {>= "0.8.3"}
2321
]

0 commit comments

Comments
 (0)