Skip to content

Commit 1c4ec72

Browse files
committed
Add upperbound reason < 3.16.0
1 parent 599056e commit 1c4ec72

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## 0.61.0
44

55
- [BREAKING] Update to ppxlib.0.36
6-
- [FIX] Stack overflow on makeProps generation
6+
- [FIX] Stack overflow by adding upper bound on reason
77

88
## 0.60.0
99

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"styled-ppx is a ppx and a library that brings styled components to ReScript, Melange and OCaml. Create React Components or simply `className` with type-safe style definitions with only CSS.")
2828
(depends
2929
(ocaml (>= 4.14))
30-
(reason (>= 3.11.0))
30+
(reason (and (>= 3.11.0) (< 3.16.0)))
3131
(menhir (>= 20220210))
3232
(ppx_deriving (>= 5.0))
3333
(ppx_deriving_yojson (>= 3.7.0))

styled-ppx.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ bug-reports: "https://github.com/davesnx/styled-ppx/issues"
1111
depends: [
1212
"dune" {>= "3.16"}
1313
"ocaml" {>= "4.14"}
14-
"reason" {>= "3.11.0"}
14+
"reason" {>= "3.11.0" & < "3.16.0"}
1515
"menhir" {>= "20220210"}
1616
"ppx_deriving" {>= "5.0"}
1717
"ppx_deriving_yojson" {>= "3.7.0"}

0 commit comments

Comments
 (0)