Skip to content

Commit

Permalink
Release 2.9.1, fixing yojson package constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
mjambon committed Jun 11, 2022
1 parent ec877e4 commit 31799bf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2.9.0 (2022-06-10)
2.9.1 (2022-06-10)
------------------

* atdgen: update `abstract` type validation to accept all input by default (#301)
Expand Down
4 changes: 2 additions & 2 deletions atdgen-runtime.opam
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
opam-version: "2.0"
synopsis: "Runtime library for code generated by atdgen"
description: """
This package should be used only in conjunction with the stdgen code
This package should be used only in conjunction with the atdgen code
generator"""
maintainer: [
"Louis Roché <louis@louisroche.net>"
Expand Down Expand Up @@ -65,7 +65,7 @@ bug-reports: "https://github.com/ahrefs/atd/issues"
depends: [
"dune" {>= "2.8"}
"ocaml" {>= "4.08"}
"yojson" {>= "1.7.0"}
"yojson" {>= "1.7.0" & < "2.0.0"}
"biniou" {>= "1.0.6"}
"camlp-streams"
"odoc" {with-doc}
Expand Down
2 changes: 1 addition & 1 deletion atdgen.opam
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ depends: [
"atdgen-runtime" {>= "2.1.0"}
"atdgen-codec-runtime" {with-test}
"biniou" {>= "1.0.6"}
"yojson" {>= "1.7.0"}
"yojson" {>= "1.7.0" & < "2.0.0"}
"odoc" {with-doc}
"re"
]
Expand Down
6 changes: 3 additions & 3 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ formats. "))
(atdgen-runtime (>= 2.1.0))
(atdgen-codec-runtime :with-test)
(biniou (>= 1.0.6))
(yojson (>= 1.7.0))
(yojson (and (>= 1.7.0) (< 2.0.0)))
(odoc :with-doc)
re
)
Expand All @@ -119,11 +119,11 @@ Atdgen’s source code."))
(name atdgen-runtime)
(synopsis "Runtime library for code generated by atdgen")
(description "\
This package should be used only in conjunction with the stdgen code
This package should be used only in conjunction with the atdgen code
generator")
(depends
(ocaml (>= 4.08))
(yojson (>= 1.7.0))
(yojson (and (>= 1.7.0) (< 2.0.0)))
(biniou (>= 1.0.6))
camlp-streams
(odoc :with-doc)))
Expand Down

0 comments on commit 31799bf

Please sign in to comment.