Skip to content

Commit

Permalink
Set valid dune version for fmt 1.1 (#116)
Browse files Browse the repository at this point in the history
* Set valid dune version for fmt 1.1

# Warning: Version 1.1 of integration with automatic formatters is not
# supported until version 1.7 of the dune language.
# Supported versions of this extension in version 1.5 of the dune language:
# - 1.0

* Set lower bound for dune in opam files
  • Loading branch information
ulrikstrid committed Apr 29, 2020
1 parent 2d59371 commit 2df073d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dune-project
@@ -1,4 +1,4 @@
(lang dune 1.5)
(lang dune 1.7)
(using fmt 1.1)
(name h2)

2 changes: 1 addition & 1 deletion h2-async.opam
Expand Up @@ -11,7 +11,7 @@ build: [
]
depends: [
"ocaml" {>= "4.06"}
"dune" {>= "1.5"}
"dune" {>= "1.7"}
"faraday-async"
"async"
"h2" {= version}
Expand Down
2 changes: 1 addition & 1 deletion h2-lwt-unix.opam
Expand Up @@ -13,7 +13,7 @@ depends: [
"ocaml" {>= "4.06"}
"faraday-lwt-unix"
"h2-lwt" {= version}
"dune" {>= "1.5"}
"dune" {>= "1.7"}
"lwt"
"gluten-lwt-unix" {>= "0.2.0"}
]
Expand Down
2 changes: 1 addition & 1 deletion h2-lwt.opam
Expand Up @@ -12,7 +12,7 @@ build: [
depends: [
"ocaml" {>= "4.06"}
"h2" {= version}
"dune" {>= "1.5"}
"dune" {>= "1.7"}
"lwt"
"gluten-lwt" {>= "0.2.0"}
]
Expand Down
2 changes: 1 addition & 1 deletion h2-mirage.opam
Expand Up @@ -13,7 +13,7 @@ depends: [
"ocaml" {>= "4.06"}
"faraday-lwt"
"h2-lwt" {= version}
"dune" {>= "1.5"}
"dune" {>= "1.7"}
"lwt"
"conduit-mirage" {>= "2.0.2"}
"mirage-flow" {>= "2.0.0"}
Expand Down
2 changes: 1 addition & 1 deletion h2.opam
Expand Up @@ -11,7 +11,7 @@ build: [
]
depends: [
"ocaml" {>= "4.06"}
"dune" {>= "1.5"}
"dune" {>= "1.7"}
"alcotest" {with-test}
"yojson" {with-test}
"hex" {with-test}
Expand Down
2 changes: 1 addition & 1 deletion hpack.opam
Expand Up @@ -9,7 +9,7 @@ dev-repo: "git+https://github.com/anmonteiro/ocaml-h2.git"
doc: "https://anmonteiro.github.io/ocaml-h2/"
depends: [
"ocaml" {>= "4.04"}
"dune"
"dune" {>= "1.7"}
"yojson" {with-test}
"hex" {with-test}
"angstrom"
Expand Down

0 comments on commit 2df073d

Please sign in to comment.