Skip to content

Commit 31799bf

Browse files
committed
Release 2.9.1, fixing yojson package constraint
1 parent ec877e4 commit 31799bf

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
2.9.0 (2022-06-10)
1+
2.9.1 (2022-06-10)
22
------------------
33

44
* atdgen: update `abstract` type validation to accept all input by default (#301)

atdgen-runtime.opam

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
opam-version: "2.0"
33
synopsis: "Runtime library for code generated by atdgen"
44
description: """
5-
This package should be used only in conjunction with the stdgen code
5+
This package should be used only in conjunction with the atdgen code
66
generator"""
77
maintainer: [
88
"Louis Roché <[email protected]>"
@@ -65,7 +65,7 @@ bug-reports: "https://github.com/ahrefs/atd/issues"
6565
depends: [
6666
"dune" {>= "2.8"}
6767
"ocaml" {>= "4.08"}
68-
"yojson" {>= "1.7.0"}
68+
"yojson" {>= "1.7.0" & < "2.0.0"}
6969
"biniou" {>= "1.0.6"}
7070
"camlp-streams"
7171
"odoc" {with-doc}

atdgen.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ depends: [
7777
"atdgen-runtime" {>= "2.1.0"}
7878
"atdgen-codec-runtime" {with-test}
7979
"biniou" {>= "1.0.6"}
80-
"yojson" {>= "1.7.0"}
80+
"yojson" {>= "1.7.0" & < "2.0.0"}
8181
"odoc" {with-doc}
8282
"re"
8383
]

dune-project

+3-3
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ formats. "))
9999
(atdgen-runtime (>= 2.1.0))
100100
(atdgen-codec-runtime :with-test)
101101
(biniou (>= 1.0.6))
102-
(yojson (>= 1.7.0))
102+
(yojson (and (>= 1.7.0) (< 2.0.0)))
103103
(odoc :with-doc)
104104
re
105105
)
@@ -119,11 +119,11 @@ Atdgen’s source code."))
119119
(name atdgen-runtime)
120120
(synopsis "Runtime library for code generated by atdgen")
121121
(description "\
122-
This package should be used only in conjunction with the stdgen code
122+
This package should be used only in conjunction with the atdgen code
123123
generator")
124124
(depends
125125
(ocaml (>= 4.08))
126-
(yojson (>= 1.7.0))
126+
(yojson (and (>= 1.7.0) (< 2.0.0)))
127127
(biniou (>= 1.0.6))
128128
camlp-streams
129129
(odoc :with-doc)))

0 commit comments

Comments
 (0)