File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- 2.9.0 (2022-06-10)
1
+ 2.9.1 (2022-06-10)
2
2
------------------
3
3
4
4
* atdgen: update ` abstract ` type validation to accept all input by default (#301 )
Original file line number Diff line number Diff line change 2
2
opam-version: "2.0"
3
3
synopsis: "Runtime library for code generated by atdgen"
4
4
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
6
6
generator"""
7
7
maintainer: [
8
8
@@ -65,7 +65,7 @@ bug-reports: "https://github.com/ahrefs/atd/issues"
65
65
depends: [
66
66
"dune" {>= "2.8"}
67
67
"ocaml" {>= "4.08"}
68
- "yojson" {>= "1.7.0"}
68
+ "yojson" {>= "1.7.0" & < "2.0.0" }
69
69
"biniou" {>= "1.0.6"}
70
70
"camlp-streams"
71
71
"odoc" {with-doc}
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ depends: [
77
77
"atdgen-runtime" {>= "2.1.0"}
78
78
"atdgen-codec-runtime" {with-test}
79
79
"biniou" {>= "1.0.6"}
80
- "yojson" {>= "1.7.0"}
80
+ "yojson" {>= "1.7.0" & < "2.0.0" }
81
81
"odoc" {with-doc}
82
82
"re"
83
83
]
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ formats. "))
99
99
( atdgen-runtime ( >= 2 .1.0) )
100
100
( atdgen-codec-runtime :with -test)
101
101
( biniou ( >= 1 .0.6) )
102
- ( yojson ( >= 1 .7.0) )
102
+ ( yojson ( and ( >= 1 .7.0) ( < 2 .0.0 ) ) )
103
103
( odoc :with -doc)
104
104
re
105
105
)
@@ -119,11 +119,11 @@ Atdgen’s source code."))
119
119
(name atdgen-runtime)
120
120
(synopsis " Runtime library for code generated by atdgen" )
121
121
( 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
123
123
generator" )
124
124
( depends
125
125
( ocaml ( >= 4 .08) )
126
- ( yojson ( >= 1 .7.0) )
126
+ ( yojson ( and ( >= 1 .7.0) ( < 2 .0.0 ) ) )
127
127
( biniou ( >= 1 .0.6) )
128
128
camlp-streams
129
129
( odoc :with -doc) ) )
You can’t perform that action at this time.
0 commit comments