Skip to content

Commit

Permalink
administrativia
Browse files Browse the repository at this point in the history
  • Loading branch information
vbmithr committed Mar 5, 2020
1 parent 341f840 commit 49e991b
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 16 deletions.
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
language: c
sudo: required
install: test -e .travis.opam.sh || wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-opam.sh
script:
- bash -ex .travis-opam.sh
env:
matrix:
- OCAML_VERSION="4.09" PACKAGE="websocket"
- OCAML_VERSION="4.09" PACKAGE="websocket-lwt-unix"
- OCAML_VERSION="4.09" PACKAGE="websocket-async"
os:
- linux
7 changes: 7 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2.14 (2020-03-5) Paris
----------------------

- bugfix: cohttp_lwt: call conn_closed on fd close (@NightBlues)
- fix compilation with newer async (@copy)
- fix compilation with newer conduit (@tizoc)

2.13 (2019-03-17)
-----------------

Expand Down
1 change: 1 addition & 0 deletions dune-project
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
(lang dune 1.1)
(name websocket)
10 changes: 5 additions & 5 deletions websocket-async.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
opam-version: "2.0"
name: "websocket-async"
version: "2.13"
authors: "Vincent Bernardoff <[email protected]>"
maintainer: "Vincent Bernardoff <[email protected]>"
homepage: "https://github.com/vbmithr/ocaml-websocket"
Expand All @@ -14,10 +12,12 @@ tags: [
build: [ "dune" "build" "-j" jobs "-p" name ]
depends: [
"ocaml" {>= "4.06.0"}
"dune" {build & >= "1.1.1"}
"dune" {>= "1.3.0"}
"websocket" {= version}
"cohttp-async" {>= "1.1.1"}
"logs-async" {>= "1.0"}
"core" {>= "v0.13.0"}
"async" {>= "v0.13.0"}
"cohttp-async" {>= "2.5.1"}
"logs-async" {>= "1.1"}
"logs-async-reporter" {>= "1.0"}
]
synopsis: "Websocket library (Async)"
Expand Down
8 changes: 3 additions & 5 deletions websocket-lwt-unix.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
opam-version: "2.0"
name: "websocket-lwt-unix"
version: "2.13"
authors: "Vincent Bernardoff <[email protected]>"
maintainer: "Vincent Bernardoff <[email protected]>"
homepage: "https://github.com/vbmithr/ocaml-websocket"
Expand All @@ -14,10 +12,10 @@ tags: [
build: [ "dune" "build" "-j" jobs "-p" name ]
depends: [
"ocaml" {>= "4.06.0"}
"dune" {build & >= "1.1.1"}
"dune" {>= "1.3.0"}
"websocket" {= version}
"lwt_log" {>= "1.1.0"}
"cohttp-lwt-unix" {>= "1.0.2"}
"lwt_log" {>= "1.1.1"}
"cohttp-lwt-unix" {>= "2.5.1"}
]
synopsis: "Websocket library (Lwt)"
description: """
Expand Down
10 changes: 4 additions & 6 deletions websocket.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
opam-version: "2.0"
name: "websocket"
version: "2.13"
authors: "Vincent Bernardoff <[email protected]>"
maintainer: "Vincent Bernardoff <[email protected]>"
homepage: "https://github.com/vbmithr/ocaml-websocket"
Expand All @@ -14,10 +12,10 @@ tags: [
build: [ "dune" "build" "-j" jobs "-p" name ]
depends: [
"ocaml" {>= "4.06.0"}
"dune" {build & >= "1.3.0"}
"base64" {>= "3.1.0"}
"conduit" {>= "1.1.0"}
"cohttp" {>= "1.1.0"}
"dune" {>= "1.3.0"}
"base64" {>= "3.3.0"}
"conduit" {>= "2.0.2"}
"cohttp" {>= "2.5.1"}
"ocplib-endian" {>= "1.0"}
"astring" {>= "0.8.3"}
]
Expand Down

0 comments on commit 49e991b

Please sign in to comment.