Skip to content

Commit b514d6a

Browse files
authored
Merge pull request #108 from samoht/dune-warning
Fix dune warning
2 parents 2f1a9ed + e8332d5 commit b514d6a

9 files changed

+12
-7
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
_build
33
.merlin
44
*.swp
5+
_opam

CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### v1.2.1 (2020-05-11)
2+
3+
* Fix minimal dune version (1.4) (#108 @samoht)
4+
15
### v1.2.0 (2019-11-01)
26

37
* adapt to mirage-protocols 4.0.0 and tcpip 4.0.0 changes (#105 @hannesm)

charrua-client-lwt.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ build: [
1414
]
1515

1616
depends: [
17-
"dune" {>= "1.2.0"}
17+
"dune" {>= "1.4.0"}
1818
"ocaml" {>= "4.06.0"}
1919
"alcotest" {with-test}
2020
"cstruct-unix" {with-test}

charrua-client-mirage.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ build: [
1313
]
1414

1515
depends: [
16-
"dune" {>= "1.2.0"}
16+
"dune" {>= "1.4.0"}
1717
"ocaml" {>= "4.06.0"}
1818
"charrua-client-lwt" {= version}
1919
"ipaddr" {>= "4.0.0"}

charrua-client.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ build: [
1414
]
1515

1616
depends: [
17-
"dune" {>= "1.2.0"}
17+
"dune" {>= "1.4.0"}
1818
"ocaml" {>= "4.06.0"}
1919
"alcotest" {with-test}
2020
"cstruct-unix" {with-test}

charrua-server.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ build: [
1515

1616
depends: [
1717
"ocaml" {>= "4.06.0"}
18-
"dune" {>= "1.2.0"}
18+
"dune" {>= "1.4.0"}
1919
"ppx_sexp_conv" {>= "v0.9.0"}
2020
"menhir" {build}
2121
"charrua" {= version}

charrua-unix.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build: [
1010
["dune" "build" "-p" name "-j" jobs]
1111
]
1212
depends: [
13-
"dune" {>= "1.2.0"}
13+
"dune" {>= "1.4.0"}
1414
"ocaml" {>= "4.06.0"}
1515
"lwt" {>="3.0.0"}
1616
"lwt_log"

charrua.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ build: [
1414

1515
depends: [
1616
"ocaml" {>= "4.06.0"}
17-
"dune" {>= "1.2.0"}
17+
"dune" {>= "1.4.0"}
1818
"ppx_sexp_conv" {>="v0.10.0"}
1919
"ppx_cstruct"
2020
"cstruct" {>= "3.0.1"}

dune-project

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
(lang dune 1.2)
1+
(lang dune 1.4)
22
(name charrua)
33
(using menhir 2.0)

0 commit comments

Comments
 (0)